Interface VideoChatStream

Describes an available stream in a video chat.

interface VideoChatStream {
    @type: "videoChatStream";
    channel_id: number;
    scale: number;
    time_offset: number;
}

Properties

@type: "videoChatStream"
channel_id: number

Identifier of an audio/video channel.

scale: number

Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds.

time_offset: number

Point in time when the stream currently ends; Unix timestamp in milliseconds.