dom / latest / videoencoder / videoencoder.html /

VideoEncoder.VideoEncoder()

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

The VideoEncoder() constructor creates a new VideoEncoder object with the provided init.output callback assigned as the output callback, the provided init.error callback as the error callback, and the VideoEncoder.state set to "unconfigured".

Syntax

new VideoEncoder(init);

Parameters

init

An object containing two required callbacks.

output

A callback which takes an EncodedVideoChunk object as the first argument, and an optional metadata object as the second. The metadata object has three members:

decoderconfig Optional

An object containing:

codec

A string containing a valid codec string.

description Optional

A BufferSource containing a sequence of codec-specific bytes, commonly known as "extradata".

codedWidth Optional

An integer representing the width of the VideoFrame in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.

codedHeight Optional

An integer representing the height of the VideoFrame in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.

displayAspectWidth Optional

An integer representing the horizontal dimension of the VideoFrame's aspect ratio when displayed.

displayAspectHeight Optional

An integer representing the vertical dimension of the VideoFrame's aspect ratio when displayed.

colorSpace Optional

An object you pass to the VideoColorSpace constructor as the init argument, configuring the VideoFrame.colorSpace for VideoFrames associated with this decoderconfig object. If colorSpace exists, the provided values will override any in-band values from the bitstream.

hardwareAcceleration Optional

A string that configures hardware acceleration for this codec. Defaults to "no-preference". Options are:

  • "no-preference"
  • "prefer-hardware"
  • "prefer-software"
optimizeForLatency Optional

A boolean representing whether the selected decoder should be configured to minimize the number of EncodedVideoChunks that have to be decoded before a VideoFrame is output.

svc Optional

An optional object with only one member: temporalLayerId, which is a number that identifies the temporal layer for the associated EncodedVideoChunk.

alphaSideData Optional

A BufferSource that contains the EncodedVideoChunk's extra alpha channel data.

error

A callback which takes an Error object as its only argument.

Examples

In the following example a VideoEncoder is created with the two required callback functions, one to deal with the encoded frame and the other to handle errors.

const videoEncoder = new VideoEncoder({
  output: processVideo,
  error: onEncoderError,
});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
VideoEncoder
94
94
No
No
80
No
94
94
No
66
No
17.0

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