Enables Webinar features within Clan Meeting API.
How it works #
The host will be able to see all the participants.
Participants will be able to see only the hosts and NOT the other participants in the call.
Only the hosts can see if a participant turns on their camera (video).
However, participants will be able to hear the conversation taking place between hosts and other participants.
Participants will also be able to see the chat messages sent to the hosts by other participants.
Hosts will be able to control whether to allow participants to speak or turn on camera.
How to enable Webinar mode #
Enable this property on both the host and participant side.
https://clanmeeting.com/docs/video-api-customization-and-controls/properties/#enablewebinarmode
Example #
xxxxxxxxxx
1const meeting = new ClanMeeting('your-domain', 'your-consumerId', {
2 roomName: '1234',
3 displayName: 'Host',
4 jwt: 'your-jwt',
5 // enables the webinar mode, false by default
6 enableWebinarMode: true,
7});