Note: This feature is available in Dedicated Web Workers.
The toJSON() method of the VideoColorSpace interface is a serializer that returns a JSON representation of the VideoColorSpace object.
toJSON()None.
A JSON object.
In the following example, colorSpace is a VideoColorSpace object returned from VideoFrame. This object is then printed to the console as JSON.
let colorSpace = VideoFrame.colorSpace;
console.log(colorSpace.toJSON());