-
It looks from https://webaudio.github.io/web-audio-api/#instantiation-of-AudioWorkletNode-and-AudioWorkletProcessor as though the `options` passed to the node are not communicated to the processor, al…
-
https://github.com/GoogleChromeLabs/web-audio-samples/pull/128#discussion_r154715989
-
The text of step 9 of the `registerProcessor()` algorithm (see https://webaudio.github.io/web-audio-api/#methods-13) is corrupted. It's not clear how to read this.
-
Related: https://github.com/WebAudio/web-audio-api/issues/836
Without user gesture initiation, the context stays in the `suspended` state. No rendering callback fired, and all fine. The question is…
-
cc: @domenic @annevk
[Related issue from Web Audio API](https://github.com/WebAudio/web-audio-api/issues/1266#issuecomment-311513537)
The proposed change is:
```webidl
[Exposed=(Window,Worker…
-
Hello, first thanks for that amazing library.
I am working on an [experimentation ](https://github.com/dotgreg/XinDaw) to create a live coding environment inside the web browser using Tonejs. I nee…
-
cc: @domenic @annevk
[Related issue from Web Audio API](https://github.com/WebAudio/web-audio-api/issues/1266#issuecomment-311513537)
The proposed change is:
```webidl
[Constructor(DOMString …
-
I think the `Request.destination` table here needs to be updated for modules:
https://fetch.spec.whatwg.org/#concept-request-destination
I assume they have a destination of "script".
-
Consider the following:
```js
// In AudioWorkletProcessor class definition.
process(inputs, outputs, parameters) {
for (let i = 0; i < inputs.length; ++i) {
let inputBuffer = inputs[i];
…
-
Currently `AudioContextInfo` is located at `AudioWorkletProcessor`, but it seems wasteful considering `sampleRate` and `currentTime` are identical to all instances in an `AudioWorkletGlobalScope`.
…