W3cubDocs

/Web APIs

AudioDecoder

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

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

Note: This feature is available in Dedicated Web Workers.

The AudioDecoder interface of the WebCodecs API decodes chunks of audio.

EventTarget AudioDecoder

Constructor

AudioDecoder()

Creates a new AudioDecoder object.

Instance properties

Inherits properties from its parent, EventTarget.

AudioDecoder.decodeQueueSize Read only

An integer representing the number of decode queue requests.

AudioDecoder.state Read only

Represents the state of the underlying codec and whether it is configured for decoding.

Events

dequeue

Fires to signal a decrease in AudioDecoder.decodeQueueSize.

Static methods

AudioDecoder.isConfigSupported()

Returns a promise indicating whether the provided AudioDecoderConfig is supported.

Instance methods

Inherits methods from its parent, EventTarget.

AudioDecoder.configure()

Enqueues a control message to configure the audio decoder for decoding chunks.

AudioDecoder.decode()

Enqueues a control message to decode a given chunk of audio.

AudioDecoder.flush()

Returns a promise that resolves once all pending messages in the queue have been completed.

AudioDecoder.reset()

Resets all states including configuration, control messages in the control message queue, and all pending callbacks.

AudioDecoder.close()

Ends all pending work and releases system resources.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android WebView on iOS
AudioDecoder 94 94 130 80 26 94 No 66 26 17.0 94 26
AudioDecoder 94 94 130 80 26 94 No 66 26 17.0 94 26
close 94 94 130 80 26 94 No 66 26 17.0 94 26
configure 94 94 130 80 26 94 No 66 26 17.0 94 26
decode 94 94 130 80 26 94 No 66 26 17.0 94 26
decodeQueueSize 94 94 130 80 26 94 No 66 26 17.0 94 26
dequeue_event 106 106 130 92 26 106 No 72 26 20.0 106 26
flush 94 94 130 80 26 94 No 66 26 17.0 94 26
isConfigSupported_static 94 94 130 80 26 94 No 66 26 17.0 94 26
reset 94 94 130 80 26 94 No 66 26 17.0 94 26
state 94 94 130 80 26 94 No 66 26 17.0 94 26

© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioDecoder