GroupCallParticipantVideo

class pyrogram.raw.types.GroupCallParticipantVideo

Info about a video stream

Constructor of GroupCallParticipantVideo.

Details:
  • Layer: 223

  • ID: 67753AC8

Parameters:
  • endpoint (str) – Endpoint

  • source_groups (List of GroupCallParticipantVideoSourceGroup) – Source groups

  • paused (bool, optional) – Whether the stream is currently paused

  • audio_source (int 32-bit, optional) – Audio source ID

TL Schema

groupCallParticipantVideo#67753ac8
flags:#
paused:flags.0?true
endpoint:string
source_groups:Vector<GroupCallParticipantVideoSourceGroup>
audio_source:flags.1?int

= GroupCallParticipantVideo

Parameter Tree

GroupCallParticipantVideo
├── pausedtrue (optional)
├── endpointstring
├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ ├── semanticsstring
│ └── sourcesVector < int >
└── audio_sourceint (optional)

Example

GroupCallParticipantVideo(
    endpoint="text",
    source_groups=[
            GroupCallParticipantVideoSourceGroup(
                semantics="text",
                sources=[0]
            )
        ],
)