Interface VideoConfiguration

interface VideoConfiguration {
    bitrate: number;
    colorGamut?: ColorGamut;
    contentType: string;
    framerate: number;
    hasAlphaChannel?: boolean;
    hdrMetadataType?: HdrMetadataType;
    height: number;
    scalabilityMode?: string;
    transferFunction?: TransferFunction;
    width: number;
}

Properties

bitrate: number
colorGamut?: ColorGamut
contentType: string
framerate: number
hasAlphaChannel?: boolean
hdrMetadataType?: HdrMetadataType
height: number
scalabilityMode?: string
transferFunction?: TransferFunction
width: number