I have tried this code
participant.audioEnabled=false
but nothing happens .I want to disable just mic not my speaker any idea ?
I have tried this code
participant.audioEnabled=false
but nothing happens .I want to disable just mic not my speaker any idea ?
audioEnabled
properties there.
participants[name].rtcPeer.audioEnabled = false;
or
participants[name].rtcPeer.peerConnection.getLocalStreams()[0].getAudioTracks()[0].enabled = false;