Skip to main content
Version: 0.0.x

Meeting Class Properties - Javascript

id

  • type: String

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


activeSpeakerId

  • type: String

  • 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 activeSpeakerId will be null.


activePresenterId

  • type: String

  • It will be the id of the participant who started Presenting / Screen sharing in the meeting. If no participant is sharing the screen, at that time value of activePresenterId will be null.


hlsUrls

  • type : Object
    • downstreamUrl: String
    • playbackHlsUrl: String
    • livestreamUrl: String
  • hlsUrls will proide all the URLs for the ongoing meeting HLS.

hlsState

  • type : string
  • hlsState will be the current state of the meeting HLS.

livestreamState

  • type : string
  • livestreamState will be the current state of the meeting Livestream.

recordingState

  • type : string
  • recordingState will be the current state of the meeting recording.

localParticipant

  • type: Participant

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


participants

  • type: Map of Participant

  • Map<String, Participant>

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

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

const remoteParticipantId = "ajf897";

const remoteParticipant = participants.get(remoteParticipantId);

selectedCameraDevice

  • type : InputDeviceInfo
  • selectedCameraDevice will be return InputDeviceInfo object describing the camera device used during the meeting.

selectedMicrophoneDevice

  • type : InputDeviceInfo
  • selectedMicrophoneDevice will be return InputDeviceInfo object describing the microphone device used during the meeting.

pubSub

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

Learn more about PubSub, here

Got a Question? Ask us on discord