2017-02-05 13 views
1

youtube 비디오를 자동으로 재생하고 음을 소거 할 수 있습니까? 아래 코드가 있지만 하나의 비디오에만 적용됩니다. 여러 비디오는 어떻게됩니까?여러 YouTube 동영상을 자동 재생하고 음소거하는 방법은 무엇인가요?

<div id="muteYouTubeVideoPlayer"></div> 

<script async src="https://www.youtube.com/iframe_api"></script> 
<script> 
function onYouTubeIframeAPIReady() { 
    var player; 
    player = new YT.Player('muteYouTubeVideoPlayer', { 
    videoId: 'e3Nl_TCQXuw', // YouTube Video ID 
    width: 560,    // Player width (in px) 
    height: 316,    // Player height (in px) 
    playerVars: { 
     autoplay: 1,  // Auto-play the video on load 
     controls: 0,  // Show pause/play buttons in player 
     showinfo: 0,  // Hide the video title 
     modestbranding: 1, // Hide the Youtube Logo 
     loop: 1,   // Run the video in a loop 
     fs: 0,    // Hide the full screen button 
     cc_load_policy: 0, // Hide closed captions 
     iv_load_policy: 3, // Hide the Video Annotations 
     autohide: 0   // Hide video controls when playing 
    }, 
    events: { 
     onReady: function(e) { 
     e.target.mute(); 
     } 
    } 
    }); 
} 

</script> 

답변