web api instance property
VideoFrame: colorSpace property
Available in 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.
const cnv = document.createElement("canvas");
// draw something on the canvas
// …
const videoFrame = new VideoFrame(cnv, { timestamp: 0 });
console.log(videoFrame.colorSpace);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.