From c19be25cdfcd3daf7ebd31a177b9c76ec68143db Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 16 Sep 2023 15:32:30 -0600 Subject: [PATCH] Mute player by default --- web/src/components/MsePlayer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/MsePlayer.js b/web/src/components/MsePlayer.js index a95e8de340..ac0062391a 100644 --- a/web/src/components/MsePlayer.js +++ b/web/src/components/MsePlayer.js @@ -217,6 +217,7 @@ class VideoRTC extends HTMLElement { this.video.controls = true; this.video.playsInline = true; this.video.preload = 'auto'; + this.video.muted = true; this.video.style.display = 'block'; // fix bottom margin 4px this.video.style.width = '100%';