web-dev-qa-db-ja.com

YouTubeの自動再生がHTML5プレーヤーが埋め込まれたモバイルデバイスで機能しない

私の問題に、1つのリンク<a href="http://www.youtube.com/embed/YT-ID" class="overlay_video"></a>があります。ファンシーボックスオーバーレイウィンドウのリンクをクリックしてビデオを再生したい。これは問題ではありません。問題は、「自動再生」や「自動非表示」などのパラメーターです。

次のリンクは機能しません:

<a href="http://www.youtube.com/embed/YT-ID?autoplay=1" class="overlay_video"></a>

オーバーレイウィンドウは開きましたが、ビデオは自動的に再生されません。

編集:モバイルデバイスでHTML5プレーヤーを使用したい。デスクトップブラウザーではパラメーターを使用できますが、モバイルデバイスでは使用できません。

54
theowi

結局のところ、自動再生はiOSデバイス(iPhone、iPad、iPod touch)およびAndroidでは実行できません。

https://stackoverflow.com/a/8142187/2054512 および https://stackoverflow.com/a/3056220/2054512 を参照してください

55
orzechow

以下のコードをご覧ください。テスト済みで、モバイルおよびタブレットデバイスで動作していることがわかりました。

<!-- 1. The <iframe> (video player) will replace this <div> tag. -->
<div id="player"></div>

<script>
  // 2. This code loads the IFrame Player API code asynchronously.
  var tag = document.createElement('script');

  tag.src = "https://www.youtube.com/iframe_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // 3. This function creates an <iframe> (and YouTube player)
  //    after the API code downloads.
  var player;
  function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
      height: '390',
      width: '640',
      videoId: 'M7lc1UVf-VE',
      events: {
        'onReady': onPlayerReady,
        'onStateChange': onPlayerStateChange
      }
    });
  }

  // 4. The API will call this function when the video player is ready.
  function onPlayerReady(event) {
    event.target.playVideo();
  }

  // 5. The API calls this function when the player's state changes.
  //    The function indicates that when playing a video (state=1),
  //    the player should play for six seconds and then stop.
  var done = false;
  function onPlayerStateChange(event) {
    if (event.data == YT.PlayerState.PLAYING && !done) {
      setTimeout(stopVideo, 6000);
      done = true;
    }
  }
  function stopVideo() {
    player.stopVideo();
  }
</script>
11
Zubi

Youtubeを自動再生し、完全なプレイリストを再生する方法があります。 Android向けAdblockブラウザーを入手し、youtube Webサイトにアクセスして、デスクトップバージョンのページ用に構成し、Adblockブラウザーを閉じてから再度開くと、自動再生が機能するデスクトップバージョンになります。

デスクトップバージョンを使用すると、AdBlockが機能することにもなります。モバイルバージョンはスタンドアロンのYouTubeプレーヤーを起動します。これが、自動再生が機能し、広告ブロックが機能するように、デスクトップバージョンのページが必要な理由です。

1
Chilly8