Enabling the audio
<script>
function handleMute() {
if (document.getElementById("streamingVideoContainer").muted === true) {
document.getElementById("streamingVideoContainer").muted = false;
} else {
document.getElementById("streamingVideoContainer").muted = true;
}
}
</script>
<button class="button" onclick="handleMute();">
Mute/Unmute
</button>Last updated