Emitted when current video download quality has changed.

interface VideoDownloadQualityChangedEvent {
    name: string;
    newVideoQuality: VideoQuality;
    oldVideoQuality: VideoQuality;
    timestamp: number;
}

Hierarchy (view full)

  • Event
    • VideoDownloadQualityChangedEvent

Properties

name: string

This event name as it is on the native side.

newVideoQuality: VideoQuality

The new quality

oldVideoQuality: VideoQuality

The previous quality

timestamp: number

The UNIX timestamp in which this event happened.