interface QualityMetadata {
    bitrate: number;
    frameRate?: number;
    height: number;
    id: string;
    mimeType: string;
    qualityRanking?: number;
    width: number;
}

Properties

bitrate: number

Bitrate of the quality.

frameRate?: number

Frame rate of the quality. Only applicable for video tracks, otherwise undefined.

height: number

Height of the quality. Only applicable for video tracks, otherwise undefined.

id: string

Unique identifier of the quality.

mimeType: string

Mime type of the quality.

qualityRanking?: number

The quality ranking as given in the manifest. undefined if not present.

width: number

Width of the quality. Only applicable for video tracks, otherwise undefined.