interface ResolvableSource {
    id: string;
    isLive: boolean;
    preferredAudioTracks?: string[];
    preferredSubtitles?: string[];
    startAt?: number;
    watchContext?: WatchContext;
}

Properties

id: string

Identifier of the VOD or Live stream.

isLive: boolean

Indicates whether the stream is VOD or Live.

preferredAudioTracks?: string[]

List of preferred audio track languages.

preferredSubtitles?: string[]

List of preferred text track languages.

startAt?: number

Resume position for VODs.

watchContext?: WatchContext

Watch context if opening the content in a playlist, season, or watchlist.