Configuration specifying live latency synchronization (i.e. maintaining latency by catchup/fallback)

interface LowLatencySyncConfig {
    playbackRate?: number;
    playbackRateThreshold?: number;
    seekThreshold?: number;
}

Properties

playbackRate?: number

Playback speed to be used for catchup/fallback.

playbackRateThreshold?: number

Allowed deviation from target latency before catchup/fallback by changing the playback speed is done.

seekThreshold?: number

Allowed deviation from target latency before catchup/fallback by seeking is done.