Quality definition of a video representation.

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

Properties

bitrate?: number

The bitrate of the media quality.

codec?: string

The codec of the media quality.

frameRate?: number

The frame rate of the video quality. If the frame rate is not known or not applicable a value of -1 will be returned.

height?: number

The height of the video quality.

id: string

The id of the media quality.

label?: string

The label of the media quality that should be exposed to the user.

width?: number

The width of the video quality.