GroupCallParticipantVideo
- class pyrogram.raw.types.GroupCallParticipantVideo
Info about a video stream
Constructor of
GroupCallParticipantVideo.- Details:
Layer:
223ID:
67753AC8
- Parameters:
endpoint (
str) – Endpointsource_groups (List of
GroupCallParticipantVideoSourceGroup) – Source groupspaused (
bool, optional) – Whether the stream is currently pausedaudio_source (
int32-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
├── paused →
true (optional)├── endpoint →
string├── source_groups →
Vector < GroupCallParticipantVideoSourceGroup >│ ├── semantics →
string│ └── sources →
Vector < int >└── audio_source →
int (optional)Example
GroupCallParticipantVideo(
endpoint="text",
source_groups=[
GroupCallParticipantVideoSourceGroup(
semantics="text",
sources=[0]
)
],
)