Skip to main content
Version: 0.0.x

Meeting Class Properties - Python

id

  • type: str

  • Unique id of the meeting where the participant has joined.


active_speaker_id

  • type: str

  • It will be the id of the participant who is actively speaking in the meeting. If no participant is speaking, at that time value of active_speaker_id will be None.


recording_state

  • type : str
  • recording_state will be the current state of the meeting recording.

transcription_state

  • type : str
  • transcription_state will be the current state of the meeting transcription.

local_participant

  • type: Participant

  • It will be the instance of Participant class for the local participant(You) who joined the meeting.


participants

  • type: dict of Participant

  • dict[str, Participant]

  • It will contain all joined participants in the meeting except the local_participant.

  • This will be the dict what will container all participants attached with the key as id of that participant.

participantId = "abc"
participant = meeting.participants.get(participantId)

pubSub

  • It is used to enable Publisher-Subscriber feature in meeting class.

Learn more about PubSub, here

Got a Question? Ask us on discord