1

I am developing a video-conferencing application in flutter using mediasoup WebRTC. I can implement producer and consumer mute and unmute audio/video by themself. I would like to implement mute all participants through a host. So Please provide an answer if you have one.

1 Answers1

0

Yes you can mute all using below properties

mediaStream.getVideoTracks()[0].enabled = !(mediaStream.getVideoTracks()[0].enabled);
Ashok Songara
  • 162
  • 1
  • 10