iframe 자동재생 음소거 후 소리켜기 가능한가요 ???
본문
iframe 자동재생 하려면 음소거 적용 해야하잖아요 ?! 그 후에 영상 소리 킬 수 있나요 ? 클릭해도 영상이 멈추고 소리는 안 나오네요 ㅠㅠ
답변 1
아래의 코드를 한번 참고를 해보시겠어요..
<iframe id="myVideo" src="https://www.youtube.com/embed/VIDEO_ID?autoplay=1&mute=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<button onclick="unmutevideo()">소리 켜기</button>
<script>
function unmutevideo() {
var iframe = document.getElementById("myVideo");
iframe.contentWindow.postMessage('{"event":"command","func":"unMute","args":""}', '*');
}
</script>
답변을 작성하시기 전에 로그인 해주세요.