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 decode() method of the VideoDecoder interface enqueues a control message to decode a given chunk of video.
decode(chunk)chunkAn EncodedVideoChunk object representing a chunk of encoded video.
None (undefined).
InvalidStateError DOMExceptionThrown if the state is not configured.
DataError DOMExceptionThrown if the chunk is unable to be decoded due to relying on other frames for decoding.
The following example demonstrates how to use the decode() method to decode EncodedVideoChunk objects created from encoded video data.
const responses = await downloadVideoChunksFromServer(timestamp);
for (const response of responses) {
const chunk = new EncodedVideoChunk({
timestamp: response.timestamp,
type: response.key ? "key" : "delta",
data: new Uint8Array(response.body),
});
decoder.decode(chunk);
}