EncodedAudioChunk: EncodedAudioChunk() constructor
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Note: This feature is available in Dedicated Web Workers.
The EncodedAudioChunk()
constructor creates a new EncodedAudioChunk
object representing a chunk of encoded audio.
Syntax
new EncodedAudioChunk(options)
Parameters
options
-
An object containing the following members:
type
-
Indicates if the chunk is a key chunk that does not rely on other frames for encoding. One of:
timestamp
-
An integer representing the timestamp of the audio in microseconds.
duration
-
An integer representing the length of the audio in microseconds.
data
-
An
ArrayBuffer
, aTypedArray
, or aDataView
containing the audio data. transfer
-
An array of
ArrayBuffer
s thatEncodedAudioChunk
will detach and take ownership of. If the array contains theArrayBuffer
backingdata
,EncodedAudioChunk
will use that buffer directly instead of copying from it.
Examples
In the following example a new EncodedAudioChunk
is created.
const init = {
type: "key",
data: audioBuffer,
timestamp: 23000000,
duration: 2000000,
transfer: [audioBuffer],
};
chunk = new EncodedAudioChunk(init);
Specifications
Specification |
---|
WebCodecs # dom-encodedaudiochunk-encodedaudiochunk |
Browser compatibility
BCD tables only load in the browser