The transfer
read-only property of the VideoColorSpace
interface returns the opto-electronic transfer characteristics of the video.
On this page
VideoColorSpace: transfer property
Value
A string containing one of the following values:
-
"bt709"
-
Transfer characteristics used by BT.709.
-
"smpte170m"
-
Transfer characteristics used by BT.601 NTSC.
-
"iec61966-2-1"
-
Transfer characteristics used by sRGBA.
Examples
In the following example, colorSpace
is a VideoColorSpace
object returned from VideoFrame
. The value of transfer
is printed to the console.
js
let colorSpace = VideoFrame.colorSpace;
console.log(colorSpace.transfer);
Specifications
Specification |
---|
WebCodecs # dom-videocolorspace-transfer |
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 | |
transfer |
94 | 94 | No | No | 80 | 15.4 | 94 | 94 | No | 66 | 15.4 | 17.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/VideoColorSpace/transfer