Manage On-Screen Participants - Javascript
When engaging in interactive live streaming, it is essential to have only the necessary participant on the screen during the livestream. To manage this, the pin
and unpin
methods of the Participant
Class are employed.
To ensure only the hosts/speakers are displayed in the grid, utilize the SPOTLIGHT
layout and prioritize the pin
function when initiating the interactive livestream.
Below is an explanation of the methods used to manage on-screen participants.
pin()
This method allows you to pin any participant's camera, screen share, or both. It is particularly useful for identifying specific participants, enabling you to optimize the rendering of the participant grid.
unpin()
This method allows you to unpin any participant's camera, screen share, or both. It is particularly useful for resetting the pin state of the participant.
Managing On-Screen Participants
- If you want to automatically pin all the hosts/speakers, you can achieve this by listening to the
meeting-joined
callback andparticipant-mode-changed
event. In these callbacks, you canpin
andunpin
participants based on their mode.
let meeting;
// Initialize Meeting
meeting = VideoSDK.initMeeting({
// ...
});
meeting.on("meeting-joined", () => {
const localParticipant = meeting?.localParticipant;
//Pin the participant if mode is conference
if (localParticipant.mode == VideoSDK.Constants.modes.CONFERENCE) {
localParticipant.pin();
} else {
localParticipant.unpin();
}
});
meeting.on("participant-joined", (participant) => {
//Pin the participant if mode is conference else unpin them
if (participantId == localParticipant.id) {
if (localParticipant.mode == VideoSDK.Constants.modes.CONFERENCE) {
localParticipant.pin();
} else {
localParticipant.unpin();
}
}
});
- When rendering the participant grid on the Speaker side, ensure that only participants in
CONFERENCE
mode are displayed. You can filter the participants as shown in the example provided below.
const participants = meeting.participants;
const speakers = [...participants.values()].filter((participant) => {
return participant.mode == VideoSDK.Constants.modes.CONFERENCE;
});
API Reference
The API references for all the methods utilized in this guide are provided below.
Got a Question? Ask us on discord