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 configure() method of the VideoDecoder interface enqueues a control message to configure the video decoder for decoding chunks.
configure(config)
configAn object containing the following members:
codecA string containing a valid codec string. See "codecs" parameter for details on codec string construction.
description OptionalAn ArrayBuffer, a TypedArray, or a DataView containing a sequence of codec specific bytes, commonly known as extradata.
codedWidth OptionalAn integer representing the width of the VideoFrame in pixels, including any non-visible padding, before any ratio adjustments.
codedHeight OptionalAn integer representing the height of the VideoFrame in pixels, including any non-visible padding, before any ratio adjustments.
displayAspectWidth OptionalAn integer representing the horizontal dimension of the VideoFrame in pixels when displayed.
displayAspectHeight OptionalAn integer representing the vertical dimension of the VideoFrame in pixels when displayed.
colorSpace OptionalAn object representing a VideoColorSpace, containing the following members:
primariesA string representing the color gamut of the video sample. One of:
"bt709""bt470bg""smpte170m"transferA string representing transfer characteristics. One of:
"bt709""smpte170m""iec61966-2-1"matrixA string representing a matrix coefficient. One of:
"rgb""bt709""bt470bg""smpte170m"hardwareAcceleration OptionalA hint as to the hardware acceleration method to use. One of:
"no-preference""prefer-hardware""prefer-software"optimizeForLatency OptionalA boolean. If true this is a hint that the selected decoder should be optimized to minimize the number of EncodedVideoChunk objects that have to be decoded before a VideoFrame is output.
flip OptionalA boolean. If true, horizontal mirroring is applied. Defaults to false.
rotation OptionalAn integer representing the rotation (0, 90, 180, or 270) in degrees clockwise. Defaults to 0. Arbitrary numbers (including negatives) are rounded to the next quarter turn.
Note: The registrations in the WebCodecs Codec Registry link to a specification detailing whether and how to populate the optional description member.
None (undefined).
TypeErrorThrown if the provided config is invalid.
InvalidStateError DOMException
Thrown if the state is "closed".
NotSupportedError DOMException
Thrown if the provided config is valid but the user agent cannot provide a codec that can decode this profile.
The following example creates a new VideoDecoder and configures it with the "vp8" codec, a codedWidth of 640 pixels and a codedHeight of 480 pixels.
const init = {
output: handleFrame,
error(e) {
console.log(e.message);
},
};
const config = {
codec: "vp8",
codedWidth: 640,
codedHeight: 480,
};
let decoder = new VideoDecoder(init);
decoder.configure(config);
| Specification |
|---|
| WebCodecs> # dom-videodecoder-configure> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
configure |
94 | 94 | 130 | 80 | 16.4 | 94 | No | 66 | 16.4 | 17.0 | 94 | 16.4 |
flip_option |
138 | 138 | No | 122 | No | 138 | No | 91 | No | No | 138 | No |
rotation_option |
138 | 138 | No | 122 | No | 138 | No | 91 | No | No | 138 | No |
© 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/VideoDecoder/configure