hi..
I put this code in order to have the voice come out automatically without unmute.
setTimeout(function () {
stream.muteRemoteAudio();
stream.unmuteRemoteAudio();
}, 1500);
However, the video freezes as soon as the mute is released.
Is there a way to watch the audio and video without pressing...