Skip to main content
Version: 0.0.x

Meeting Class Events - Javascript


meeting-joined

  • This event will be emitted when a localParticipant successfully joined the meeting.

Example

meeting.on("meeting-joined", () => {
//
});

meeting-left

Example

meeting.on("meeting-left", () => {
//
});

participant-joined

  • This event will be emitted when a new participant joined the meeting.

Event callback parameters

Example

meeting.on("participant-joined", (participant) => {
//
});

participant-left

  • This event will be emitted when a joined participant left the meeting.

Event callback parameters

Example

meeting.on("participant-left", (participant) => {
//
});

speaker-changed

  • This event will be emitted when a active speaker changed.
  • If you want to know which participant is actively speaking, then this event will be used.
  • If no participant is actively speaking, then this event will pass null as en event callback parameter.

Event callback parameters

  • activeSpeakerId: String?

Example

meeting.on("speaker-changed", (activeSpeakerId) => {
//
});

presenter-changed

  • This event will be emitted when any participant starts or stops screen sharing.
  • It will pass participantId as an event callback parameter.
  • If a participant stops screensharing, then this event will pass null as en event callback parameter.

Event callback parameters

  • activePresenterId: String?

Example

meeting.on("presenter-changed", (activePresenterId) => {
//
});

error

  • This event will be emitted when any error occured.
  • It will pass code and message, as an event callback parameter.
  • To see all available error codes from SDK. Meeting Error Codes

Event callback parameters

  • data: { code: Number; message: String }
    • code: Number
    • message: String

Example

meeting.on("error", (data) => {
const { code, message } = data;
});

entry-requested

  • This event will be emitted when a new participant who is trying to join the meeting, is having permission ask_join in token.
  • This event will only be emitted to the participants in the meeting, who is having the permission allow_join in token.
  • This event will pass following parameters as an event parameters, participantId and name of the new participant who is trying to join the meeting, allow() and deny() to take required actions.

Event callback parameters

  • data: { allow: Function; deny: Function; name: String; participantId: String }
    • allow: Function
    • deny: Function
    • name: String
    • participantId: String

Example

meeting.on("entry-requested", (data) => {
const { participantId, name, allow, deny } = data;

console.log(`${name} requested to join the meeting.`);

// If you want to allow the entry request
allow();

// if you want to deny the entry request
deny();
});

entry-responded

  • This event will be emitted when the join() request is responded.
  • This event will be emitted to the participants in the meeting, who is having the permission allow_join in token.
  • This event will be also emitted to the participant who requested to join the meeting.

Event callback parameters

  • participantId: String
  • decision: "allowed" | "denied"

Example

meeting.on("entry-responded", (participantId, decision) => {
// participantId will be id of participant who requested to join meeting

if (decision === "allowed") {
// entry allowed
} else {
// entry denied
}
});

webcam-requested

  • This event will be emitted to the participant B when any other participant A requests to enable webcam of participant B.
  • On accepting the request, webcam of participant B will be enabled.

Event callback parameters

  • data: { accept: Function; participantId: String; reject: Function }
    • accept: Function
    • participantId: String
    • reject: Function

Example

meeting.on("webcam-requested", (data) => {
const { participantId, accept, reject } = data;

// participantId, will be the id of participant who requested to enable webcam

// if accept request
accept();

// if reject request
reject();
});

mic-requested

  • This event will be emitted to the participant B when any other participant A requests to enable mic of participant B.
  • On accepting the request, mic of participant B will be enabled.

Event callback parameters

  • data: { accept: Function; participantId: String; reject: Function }
    • accept: Function
    • participantId: String
    • reject: Function

Example

meeting.on("mic-requested", (data) => {
const { participantId, accept, reject } = data;

// participantId, will be the id of participant who requested to enable webcam

// if accept request
accept();

// if reject request
reject();
});

recording-state-changed

  • This event will be emitted when the meeting's recording status changed.

Event callback parameters

  • data: { status: String }

    • status: String

status has following values

  • RECORDING_STARTING - Recording is in starting phase and hasn't started yet.
  • RECORDING_STARTED - Recording has started successfully.
  • RECORDING_STOPPING - Recording is in stopping phase and hasn't stopped yet.
  • RECORDING_STOPPED - Recording has stopped successfully.

Example

import { VideoSDK } from "@videosdk.live/js-sdk";

const Constants = VideoSDK.Constants;

meeting.on("recording-state-changed", (data) => {
const { status } = data;

if (status === Constants.recordingEvents.RECORDING_STARTING) {
console.log("Meeting recording is starting");
} else if (status === Constants.recordingEvents.RECORDING_STARTED) {
console.log("Meeting recording is started");
} else if (status === Constants.recordingEvents.RECORDING_STOPPING) {
console.log("Meeting recording is stopping");
} else if (status === Constants.recordingEvents.RECORDING_STOPPED) {
console.log("Meeting recording is stopped");
} else {
//
}
});

recording-started

This event will be deprecated soon

  • This event will be emitted when recording of the meeting is started.

Example

meeting.on("recording-started", () => {
//
});

recording-stopped

This event will be deprecated soon

  • This event will be emitted when recording of the meeting is stopped.

Example

meeting.on("recording-stopped", () => {
//
});

livestream-state-changed

  • This event will be emitted when the meeting's livestream status changed.

Event callback parameters

  • data: { status: String }

    • status: String

status has following values

  • LIVESTREAM_STARTING - Livestream is in starting phase and hasn't started yet.
  • LIVESTREAM_STARTED - Livestream has started successfully.
  • LIVESTREAM_STOPPING - Livestream is in stopping phase and hasn't stopped yet.
  • LIVESTREAM_STOPPED - Livestream has stopped successfully.

Example

import { VideoSDK } from "@videosdk.live/js-sdk";

const Constants = VideoSDK.Constants;

meeting.on("livestream-state-changed", (data) => {
const { status } = data;

if (status === Constants.livestreamEvents.LIVESTREAM_STARTING) {
console.log("Meeting livestream is starting");
} else if (status === Constants.livestreamEvents.LIVESTREAM_STARTED) {
console.log("Meeting livestream is started");
} else if (status === Constants.livestreamEvents.LIVESTREAM_STOPPING) {
console.log("Meeting livestream is stopping");
} else if (status === Constants.livestreamEvents.LIVESTREAM_STOPPED) {
console.log("Meeting livestream is stopped");
} else {
//
}
});

livestream-started

This event will be deprecated soon

  • This event will be emitted when RTMP live stream of the meeting is started.

Example

meeting.on("livestream-started", () => {
//
});

livestream-stopped

This event will be deprecated soon

  • This event will be emitted when RTMP live stream of the meeting is stopped.

Example

meeting.on("livestream-stopped", () => {
//
});

hls-state-changed

  • This event will be emitted when the meeting's HLS(Http Livestreaming) status changed.

Event callback parameters

  • data: { status: String , playbackHlsUrl: String , livestreamUrl: String }
    • status: String
    • playbackHlsUrl: String will receive this property only in HLS_STARTED status
    • livestreamUrl: String will receive this property only in HLS_STARTED status

status has following values

  • HLS_STARTING - Hls is in starting phase and hasn't started yet.
  • HLS_STARTED - Hls has started successfully will return playbackHlsUrl and livestreamUrl.
  • HLS_PLAYABLE - Hls has started and the playbackHlsUrl and livestreamUrl is not playable.
  • HLS_STOPPING - Hls is in stopping phase and hasn't stopped yet.
  • HLS_STOPPED - Hls has stopped successfully.
note

downstreamUrl is now depecated. Use playbackHlsUrl or livestreamUrl in place of downstreamUrl

Example

import { VideoSDK } from "@videosdk.live/js-sdk";

const Constants = VideoSDK.Constants;

meeting.on("hls-state-changed", (data) => {
const { status } = data;

if (status === Constants.hlsEvents.HLS_STARTING) {
console.log("Meeting Hls is starting");
} else if (status === Constants.hlsEvents.HLS_STARTED) {
// when hls is started you will receive playbackHlsUrl
const { playbackHlsUrl } = data;

console.log("Meeting Hls is started");
} else if (status === Constants.hlsEvents.HLS_STOPPING) {
console.log("Meeting Hls is stopping");
} else if (status === Constants.hlsEvents.HLS_STOPPED) {
console.log("Meeting Hls is stopped");
} else {
//
}
});

hls-started

This event will be deprecated soon

  • This event will be emitted when HLS of the meeting is started.

Event callback parameters

  • data: { playbackHlsUrl: String; livestreamUrl: String }
    • playbackHlsUrl: String
    • livestreamUrl: String
note

downstreamUrl is now depecated. Use playbackHlsUrl or livestreamUrl in place of downstreamUrl

Example

meeting.on("hls-started", ({ playbackHlsUrl, livestreamUrl }) => {
//
});

hls-stopped

This event will be deprecated soon

  • This event will be emitted when HLS of the meeting is stopped.

Example

meeting.on("hls-stopped", () => {
//
});

meeting-state-changed

  • This event will be triggered when state of meeting changes.
  • It will pass state as an event callback parameter which will indicate current state of the meeting.
  • All available states are CONNECTING, CONNECTED, FAILED, DISCONNECTED, CLOSING, CLOSED.

Event callback parameters

  • data: { state: String }
    • state: String

Example

meeting.on("meeting-state-changed", (data) => {
const { state } = data;

switch (state) {
case "CONNECTING":
console.log("Meeting is Connecting");
break;
case "CONNECTED":
console.log("Meeting is Connected");
break;
case "FAILED":
console.log("Meeting connection failed");
break;
case "DISCONNECTED":
console.log("Meeting connection disconnected abruptly");
break;
case "CLOSING":
console.log("Meeting is closing");
break;
case "CLOSED":
console.log("Meeting connection closed");
break;
}
//
});

Got a Question? Ask us on discord