Soft Mute Audio
The objective is to enable the moderator to apply a Soft Mute of audio to all/single participant
Moderator can soft mute the audio of individual participant or all the participants in the call. Owner/Admin/Moderator have the privileges to soft mute audio of participants.
Note : User will have to unmute themselves in order to be heard.
API:
Disable audio silence state for a selected participant in the room with the API VidyoConnectorDisableAudioSilenceForParticipant
Example:
bool retValue = false;
retValue= GetConnectorInstance.DisableAudioForParticipant(participant,"SoftMuteAudioForParticipant");
return retValue;
Disable audio silence state for all participants in the room with the API VidyoConnectorDisableAudioSilenceForAll
Example:
bool retValue = false;
retValue = GetConnectorInstance.DisableAudioSilenceForAll("SoftMuteAudioForAll");
return retValue;
Last updated