diff --git a/modules/UI/videolayout/SmallVideo.js b/modules/UI/videolayout/SmallVideo.js index 0bce83fc3..2063eca01 100644 --- a/modules/UI/videolayout/SmallVideo.js +++ b/modules/UI/videolayout/SmallVideo.js @@ -109,6 +109,9 @@ SmallVideo.createStreamElement = function (stream) { var element = isVideo ? document.createElement('video') : document.createElement('audio'); + if (isVideo) { + element.setAttribute("muted", "true"); + } if (!RTCBrowserType.isIExplorer()) { element.autoplay = true;