InputGroupCallStream
- class pyrogram.raw.types.InputGroupCallStream
Chunk of a livestream
Constructor of
InputFileLocation.- Details:
Layer:
223ID:
598A92A
- Parameters:
call (
InputGroupCall) – Livestream infotime_ms (
int64-bit) – Timestamp in millisecondsscale (
int32-bit) – Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scalevideo_channel (
int32-bit, optional) – Selected video channelvideo_quality (
int32-bit, optional) – Selected video quality (0 = lowest, 1 = medium, 2 = best)
TL Schema
inputGroupCallStream#598a92a
flags:#
call:InputGroupCall
time_ms:long
scale:int
video_channel:flags.0?int
video_quality:flags.0?int
= InputFileLocation
Parameter Tree
InputGroupCallStream
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int├── time_ms →
long├── scale →
int├── video_channel →
int (optional)└── video_quality →
int (optional)Example
InputGroupCallStream(
call=InputGroupCall(
id=0,
access_hash=0
),
time_ms=0,
scale=0,
)