Interface VideoColorSpace

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

Properties

fullRange: null | boolean
primaries: null | VideoColorPrimaries

Methods