AudioDecoder: AudioDecoder() constructor
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.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The AudioDecoder()
constructor creates a new AudioDecoder
object with the provided init.output
callback assigned as the output callback, the provided init.error
callback as the error callback, and the AudioDecoder.state
set to "unconfigured"
.
Syntax
new AudioDecoder(init)
Parameters
Examples
In the following example an AudioDecoder
is created with the two required callback functions, one to deal with the decoded chunk and the other to handle errors.
const audioDecoder = new AudioDecoder({
output: processAudio,
error: onEncoderError,
});
Specifications
Specification |
---|
WebCodecs # audiodecoder |
Browser compatibility
BCD tables only load in the browser