Hard Mute Audio
The objective is to enable/disable the moderator to apply a hard Mute of audio to all/single participant
Set audio disable state for a selected participant in the room with API VidyoConnectorDisableAudioForParticipant
Example to disable audio of a participant :
retValue = GetConnectorInstance.DisableAudioForParticipant(participant, false, "HardUnmuteAudioForParticipant");
return retValue;
Example to Enable audio of a participant:
retValue = GetConnectorInstance.DisableAudioForParticipant(participant, true, "HardUnmuteAudioForParticipant");
return retValue;
Set audio disable state for all participants in the room using API VidyoConnectorDisableAudioForAll
Example:
retValue = GetConnectorInstance.DisableAudioForAll(true, "HardMuteAudioForAllEnable");
Last updated