VideoFrame: colorSpace property
Baseline 2024Newly available
Since September 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Note: This feature is available in Dedicated Web Workers.
The colorSpace
property of the VideoFrame
interface returns a VideoColorSpace
object representing the color space of the video.
Value
A VideoColorSpace
object.
Examples
The following example prints the colorSpace
to the console.
js
const cnv = document.createElement("canvas");
// draw something on the canvas
// …
const videoFrame = new VideoFrame(cnv, { timestamp: 0 });
console.log(videoFrame.colorSpace);
Specifications
Specification |
---|
WebCodecs # dom-videoframe-colorspace |