Interface GroupCallStream

Describes an available stream in a group call.

interface GroupCallStream {
    @type: "groupCallStream";
    channel_id: number;
    scale: number;
    time_offset: number;
}

Properties

@type: "groupCallStream"
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.