Audio processing with web workers

>From recent discussions it seems that there's general agreement for both
the need to deliver high-performance native audio processing, plus the
ability to have low-level access to the PCM audio stream for direct
processing in JavaScript.  The Web Audio API currently has both, except
that the JavaScriptAudioNode currently runs the JS code in the main thread.
 Robert's proposal includes the ability to run the JS code in a worker
thread, which I agree can be useful.

>From the perspective of how this would work in the Web Audio API, Jussi has
asked about the possibility of extending the JavaScriptAudioNode to accept
a web worker in the constructor.  I've looked in more detail at Robert's
proposal and his simple example which generates a tone, with pitch
controllable by the mouse:
http://people.mozilla.org/~roc/stream-demos/worker-generation.html
http://people.mozilla.org/~roc/stream-demos/tone.js

Aside from our disagreement about larger aspects of the API, my impression
was that Robert's specific approach to workers seems quite reasonable and
could be adopted in an almost identical way in JavaScriptAudioNode.  I've
since discussed some of the technical aspects with Google's web workers
expert Dmitry Lomov.  And he brought up some interesting ideas and
improvements as well, which I hope we can discuss here.

But first, here's my naive translation of Robert's worker's approach to
JavaScriptAudioNode (which should be refined):

partial interface AudioContext {
    JavaScriptAudioNode createJavaScriptNode(in short bufferSize, in short
numberOfInputChannels, in short numberOfOutputChannels,
        in Worker worker);
};

The code would be slightly different with "self.onprocessmedia" ->
"self.onaudioprocess" to match the current JavaScriptAudioNode naming.
 Also, the "event" would be the same as in the current JavaScriptAudioNode,
but could have Roc's "params".

Cheers,
Chris

Received on Friday, 10 February 2012 20:43:18 UTC