Is It possible to mute all participants audio and video in mediasoup in flutter?

560 Views Asked by At

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

There are 1 best solutions below

2
Ashok Songara On

Yes you can mute all using below properties

mediaStream.getVideoTracks()[0].enabled = !(mediaStream.getVideoTracks()[0].enabled);