Chartbreaker
    Preparing search index...

    Interface VideoColorSpace

    The VideoColorSpace interface of the WebCodecs API represents the color space of a video.

    MDN Reference

    interface VideoColorSpace {
        fullRange: null | boolean;
        matrix: null | VideoMatrixCoefficients;
        primaries: null | VideoColorPrimaries;
        transfer: null | VideoTransferCharacteristics;
        toJSON(): VideoColorSpaceInit;
    }
    Index

    Properties

    fullRange: null | boolean

    The fullRange read-only property of the VideoColorSpace interface returns true if full-range color values are used.

    MDN Reference

    The matrix read-only property of the VideoColorSpace interface returns the matrix coefficient of the video.

    MDN Reference

    primaries: null | VideoColorPrimaries

    The primaries read-only property of the VideoColorSpace interface returns the color gamut of the video.

    MDN Reference

    The transfer read-only property of the VideoColorSpace interface returns the opto-electronic transfer characteristics of the video.

    MDN Reference

    Methods