interface VideoAdaptationData {
    isAd: boolean;
    representations: {
        bandwidth: number;
        id: string;
    }[];
    suggested: string;
}

Hierarchy

  • AdaptationData
    • VideoAdaptationData

Properties

isAd: boolean
representations: {
    bandwidth: number;
    id: string;
}[]

Type declaration

  • bandwidth: number
  • id: string
suggested: string

The ID of the representation that the player selected, which is the same ID as returned through the AudioQuality and VideoQuality objects from getAvailableAudioQualities and getAvailableVideoQualities.