VidyoPlatform
  • Getting Started
  • Building custom client web application using Connector SDK
  • Android Integration
  • Resources
  • Use-Cases
    • Closed Captioning
    • Virtual Background - Banuba SDK
    • Calls Recording
    • Automatic Reconnection
    • Call Moderation
      • UnlockRoom API
      • Lock Room API
      • SetRoomPIN API
      • Remove RoomPIN API
      • Request Moderator Role API
      • Remove Moderator Role
      • Soft Mute
        • Soft Mute Audio
        • Soft Mute Video
      • Hard Mute
        • Hard Mute Audio
        • Hard Mute Video
      • Recording
      • Drop Participant
    • Custom noise suppression in web applications
    • Android: Picture-in-picture Mode
    • New Generation Renderer
    • Integrating with Epic
  • Twilio to Vidyo Migration
    • Twilio JavaScript SDK to VidyoClient JavaScript SDK
    • Twilio Android SDK to VidyoClient Android SDK
Powered by GitBook
On this page
  1. Use-Cases
  2. Call Moderation
  3. Soft Mute

Soft Mute Video

The objective is to enable the moderator to apply a Soft Mute of video to all/single participant

Moderator can soft mute the Video of individual participant or all the participants in the call. Owner/Admin/Moderator have the privileges to soft mute Video of participants.

Note : User will have to unmute themselves in order to be seen.

API:

  • Disable Video silence state for a selected participant in the room with the API VidyoConnectorDisableVideoSilenceForParticipant

Example:

retValue= GetConnectorInstance.DisableVideoSilenceForParticipant (participant,"SoftMuteVideoForParticipant");

return retValue;

  • Disable Video silence state for all participants in the room with the API VidyoConnectorDisableVideoSilenceForAll

Example:

retValue = GetConnectorInstance.DisableVideoSilenceForAll("SoftMuteVideoForAll");

return retValue;

PreviousSoft Mute AudioNextHard Mute

Last updated 1 year ago