Jabber Web SDK supports mute video, Cisco DevNet: SDK Web SDK - Voice and Video - API
Tutorial: Conversation Video Control
Conversation Video Control
In this tutorial will be shown how to:
- Mute video
- Unmute video
- Stop video
- Start video
Mute/Unmute Video
Muting video on TelephonyConversation
will cause "onConversationUpdated"
event to be fired. First it needs to be checked if conversation has canMuteVideo capability, and if it does, then call TelephonyConversation.muteVideo
as it is shown in the snippet below:
var conversation;
// ...
// Here we choose on which conversation we want to mute video.
// ...
if(conversation.capabilities.canMuteVideo)
{
// Mute video.
conversation.muteVideo();
}
Comments
0 comments
Please sign in to leave a comment.