phone.GetGroupCallStreamChannels

class pyrogram.raw.functions.phone.GetGroupCallStreamChannels

Get info about RTMP streams in a group call or livestream. This method should be invoked to the same group/channel-related DC used for downloading livestream chunks. As usual, the media DC is preferred, if available.

Details:
  • Layer: 223

  • ID: 1AB21940

Parameters:
call (InputGroupCall):

Group call or livestream

Returns:

phone.GroupCallStreamChannels

TL Schema

phone.getGroupCallStreamChannels#1ab21940
call:InputGroupCall

= phone.GroupCallStreamChannels

Parameter Tree

GetGroupCallStreamChannels
└── callInputGroupCall
├── InputGroupCall
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── msg_idint

Example

await app.invoke(
    GetGroupCallStreamChannels(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
    )
)