AudioWorkletNode
Note: Although the interface is available outside secure contexts, the BaseAudioContext.audioWorklet
property is not, thus custom AudioWorkletProcessor
s cannot be defined outside them.
The AudioWorkletNode
interface of the Web Audio API represents a base class for a user-defined AudioNode
, which can be connected to an audio routing graph along with other nodes. It has an associated AudioWorkletProcessor
, which does the actual audio processing in a Web Audio rendering thread.
Constructor
AudioWorkletNode()
-
Creates a new instance of an
AudioWorkletNode
object.
Properties
Also Inherits properties from its parent, AudioNode
.
-
AudioWorkletNode.port
Read only -
Returns a
MessagePort
used for bidirectional communication between the node and its associatedAudioWorkletProcessor
. The other end is available under theport
property of the processor. -
AudioWorkletNode.parameters
Read only -
Returns an
AudioParamMap
— a collection ofAudioParam
objects. They are instantiated during the creation of the underlyingAudioWorkletProcessor
. If theAudioWorkletProcessor
has a staticparameterDescriptors
getter, theAudioParamDescriptor
array returned from it is used to createAudioParam
objects on theAudioWorkletNode
. With this mechanism it is possible to make your ownAudioParam
objects accessible from yourAudioWorkletNode
. You can then use their values in the associatedAudioWorkletProcessor
.
Event handlers
AudioWorkletNode.onprocessorerror
-
Fired when an error is thrown in associated
AudioWorkletProcessor
. Once fired, the processor and consequently the node will output silence throughout its lifetime.
Methods
Also inherits methods from its parent, AudioNode
.
The AudioWorkletNode
interface does not define any methods of its own.
Examples
In this example we create a custom AudioWorkletNode
that outputs white noise.
First, we need to define a custom AudioWorkletProcessor
, which will output white noise, and register it. Note that this should be done in a separate file.
// white-noise-processor.js class WhiteNoiseProcessor extends AudioWorkletProcessor { process (inputs, outputs, parameters) { const output = outputs[0] output.forEach(channel => { for (let i = 0; i < channel.length; i++) { channel[i] = Math.random() * 2 - 1 } }) return true } } registerProcessor('white-noise-processor', WhiteNoiseProcessor)
Next, in our main script file we'll load the processor, create an instance of AudioWorkletNode
passing it the name of the processor, and connect the node to an audio graph.
const audioContext = new AudioContext() await audioContext.audioWorklet.addModule('white-noise-processor.js') const whiteNoiseNode = new AudioWorkletNode(audioContext, 'white-noise-processor') whiteNoiseNode.connect(audioContext.destination)
Specifications
Specification |
---|
Web Audio API # AudioWorkletNode |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
AudioWorkletNode |
66 |
79 |
76 |
No |
Yes |
14.1 |
66 |
66 |
79 |
Yes |
14.5 |
9.0 |
AudioWorkletNode |
66 |
79 |
76 |
No |
? |
14.1 |
66 |
66 |
79 |
? |
14.5 |
9.0 |
onprocessorerror |
67 |
79 |
76 |
No |
? |
14.1 |
67 |
67 |
79 |
? |
14.5 |
9.0 |
parameters |
67 |
79 |
76 |
No |
Yes |
14.1 |
67 |
67 |
79 |
Yes |
14.5 |
9.0 |
port |
67 |
79 |
76 |
No |
Yes |
14.1 |
67 |
67 |
79 |
Yes |
14.5 |
9.0 |
processorerror_event |
66 |
79 |
76 |
No |
? |
No |
66 |
66 |
79 |
? |
No |
9.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode