Автоматическое воспроизведение видео на YouTube для встраивания не работает с включенным звуком в Google Chrome, в то время как для Firefox - PullRequest
0 голосов
/ 04 ноября 2018

Я пытаюсь в течение 3 дней автоматически воспроизвести встроенное видео на YouTube в Google Chrome с помощью "Sound Unmuted", но оно не работает. Хотя то же видео с тем же кодом работает в Mozilla Firefox. Я пробовал разные коды, но безуспешно до сих пор.

Вот код.

<head>
    <style>
        body{
            margin-left: 0px;
        }
    </style>
</head> 
<script src="js/jquery-3.1.1.min.js"></script>
<div id="YouTubeVideoPlayer"></div>

<script async src="https://www.youtube.com/iframe_api"></script>
<script>
 function onYouTubeIframeAPIReady() {
  var player;
  player = new YT.Player('YouTubeVideoPlayer', {
    videoId: 'M7lc1UVf-VE', // YouTube Video ID
    width: 560,               // Player width (in px)
    height: 316, 
    start:0,             // Player height (in px)
    playerVars: {
      autoplay: 1,        // Auto-play the video on load
      controls: 1,        // 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.setVolume(40);
      }
    }
  });
 }

$("body").animate({ margin: "400px 0px 0px 0px" }, 18000 );

</script>
...