I\'ve created a simple video block with muted (for mobile autostart) but now i can not change the mute state...
I used that repository , fiddle link would be great.
You should use videoEl.muted
var video = document.getElementById('video');
function toggleMute(){
video.muted = !video.muted;
}
Toggle Mute