Skip to main content
caution

This page has been deprecated.

We've released a new version of pages with some improvements and smoother experience.

Here is the link of each SDK for this page.

Speaker Indication

Speaker indication feature in VideoSDK let you know, which participant in a meeting is active speaker.

Whenever any participant speaks in meeting, speaker-changed event will trigger.

For example, the meeting is running with Alice and Bob. Whenever any of them speaks, speaker-changed event will trigger and return the speaker participantId.

We can access speaker-changed event through meeting object.

speaker-changed Event

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

Got a Question? Ask us on discord


Was this helpful?