From fc9bd6dc10622cc9e4aba27abf08937ea786d214 Mon Sep 17 00:00:00 2001 From: Zahin Afsar <43959210+zahinafsar@users.noreply.github.com> Date: Mon, 2 Aug 2021 17:49:27 +0600 Subject: [PATCH] Muted Audio for First User --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index cc4c066..5262183 100644 --- a/main.js +++ b/main.js @@ -54,6 +54,7 @@ webcamButton.onclick = async () => { }; webcamVideo.srcObject = localStream; + webcamVideo.muted = true; remoteVideo.srcObject = remoteStream; callButton.disabled = false;