私のプロジェクトには、ビデオギャラリーモジュールがあります。このモジュールには、FLVを直接アップロードする方法と、YouTubeからビデオ埋め込みコードを追加する方法の2つのオプションがあります。
Div要素の埋め込みコードを書いています(実際、埋め込みコードはデータベースから取得しています)。このビデオを自動的に再生させたいです。
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI" frameborder="0" allowfullscreen></iframe>
これは、YouTubeからのサンプル埋め込みコードです。 JavaScriptを使用してこのビデオを自動的に再生したいです。
使用する必要があります
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI?autoplay=1" frameborder="0" allowfullscreen></iframe>
?autoplay=1
ではなく
&autoplay=1
最初のURLパラメーターなので、?
これは私にとって完璧に機能します。リンクの最後に?rel = 0&autoplay = 1を置くだけです。
<iframe width="631" height="466" src="https://www.youtube.com/embed/UUdMixCYeTA?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe>
<iframe title='YouTube video player' class='youtube-player' type='text/html'
width='030' height='030'
src='http://www.youtube.com/embed/ZFo8b9DbcMM?rel=0&border=&autoplay=1'
type='application/x-shockwave-flash'
allowscriptaccess='always' allowfullscreen='true'
frameborder='0'></iframe>
埋め込み後にコードを挿入するだけです/
次のように&autoplay = 1を構文に追加します
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI&autoplay=1" frameborder="0" allowfullscreen></iframe>