phone.GroupCallStreamChannels

class pyrogram.raw.types.phone.GroupCallStreamChannels

Info about RTMP streams in a group call or livestream

Constructor of GroupCallStreamChannels.

Details:
  • Layer: 223

  • ID: D0E482B2

Parameters:

channels (List of GroupCallStreamChannel) – RTMP streams

Functions:

This object can be returned by 1 function.

phone.GetGroupCallStreamChannels

Get info about RTMP streams in a group call or livestream.

TL Schema

phone.groupCallStreamChannels#d0e482b2
channels:Vector<GroupCallStreamChannel>

= phone.GroupCallStreamChannels

Parameter Tree

GroupCallStreamChannels
└── channelsVector < GroupCallStreamChannel >
├── channelint
├── scaleint
└── last_timestamp_mslong

Example

GroupCallStreamChannels(
    channels=[
            GroupCallStreamChannel(
                channel=0,
                scale=0,
                last_timestamp_ms=0
            )
        ],
)