AudioWorkletNode: processorerror event

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2021.

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The processorerror event fires when the underlying AudioWorkletProcessor behind the node throws an exception in its constructor, the process method, or any user-defined class method.

Once an exception is thrown, the processor (and thus the node) will output silence throughout its lifetime.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

js
addEventListener("processorerror", (event) => { })

onprocessorerror = (event) => { }

Event type

A generic Event.

Examples

To be informed when the processor throws an exception, you can add a handler to your AudioWorkletNode instance using addEventListener(), like this:

js
whiteNoiseNode.addEventListener("processorerror", (event) => {
  console.error("There was an error!");
});

Alternatively, you can use the onprocessorerror event handler property to establish a handler for the processorerror event:

js
whiteNoiseNode.onprocessorerror = (event) => {
  console.error("There was an error!");
};

Specifications

Specification
Web Audio API
# dom-audioworkletnode-onprocessorerror

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
processorerror event

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

See also