GroupCallStreamChannel
- class pyrogram.raw.types.GroupCallStreamChannel
Info about an RTMP stream in a group call or livestream
Constructor of
GroupCallStreamChannel.- Details:
Layer:
223ID:
80EB48AF
- Parameters:
channel (
int32-bit) – Channel IDscale (
int32-bit) – Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale.last_timestamp_ms (
int64-bit) – Last seen timestamp to easily start fetching livestream chunks using inputGroupCallStream
TL Schema
groupCallStreamChannel#80eb48af
channel:int
scale:int
last_timestamp_ms:long
= GroupCallStreamChannel
Parameter Tree
GroupCallStreamChannel
├── channel →
int├── scale →
int└── last_timestamp_ms →
longExample
GroupCallStreamChannel(
channel=0,
scale=0,
last_timestamp_ms=0,
)