Bitmovin Player API 8.268.0
    Preparing search index...

    Interface VideoQuality

    Quality definition of a video representation.

    interface VideoQuality {
        bitrate: number;
        codec?: string;
        frameRate?: number;
        height: number;
        id: string;
        label?: string;
        uid?: string;
        width: number;
    }

    Hierarchy (View Summary)

    Index
    bitrate: number

    The bitrate of the media representation.

    codec?: string

    The codec of the media representation.

    frameRate?: number

    Frame rate of the video representation as stated in the manifest

    height: number

    The heights of the video representation.

    id: string

    The id of the media representation.

    label?: string

    The label of the media representation that should be exposed to the user (e.g. in the UI). Only set when requesting qualities through getAvailableAudioQualities and getAvailableVideoQualities.

    uid?: string

    The unique id of the current segment. Only set when requesting the video quality through getPlaybackVideoData.

    width: number

    The width of the video representation.