Limited availability
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 VideoDecoder()
constructor creates a new VideoDecoder
object with the provided init.output
callback assigned as the output callback, the provided init.error
callback as the error callback, and the VideoDecoder.state
set to "unconfigured"
.
new VideoDecoder(options)
Parameters
options
An object containing two callbacks.
output
A callback which takes a VideoFrame
object as its only argument.
error
A callback which takes an Error
object as its only argument.
In the following example a VideoDecoder
is created with the two required callback functions, one to deal with the decoded frame and the other to handle errors.
const videoDecoder = new VideoDecoder({
output: processVideo,
error: onEncoderError,
});
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4