Data describing a downloaded video segment of a video representation.

interface DownloadedVideoData {
    bitrate: number;
    height: number;
    id: string;
    isAuto: boolean;
    width: number;
}

Hierarchy (view full)

Properties

bitrate: number

The bitrate of the representation.

height: number

The height of the video representation.

id: string

The id of the representation.

isAuto: boolean

True if the player’s logic automatically selects the best representation (default), or false if a fixed representation is currently chosen.

width: number

The width of the video representation.

Generated using TypeDoc