YouTube動画のWebサイトへの埋め込み方法

目次

WordPress「YouTubeボタン」に”https://youtu.be/**ID**”を記入

00:00 Summertime (George Gershwin)
03:23 How Insensitive (Antônio Carlos Jobim)
07:00 My Funny Valentine (Richard Rogers, Lorenz Hart)
13:54 Time After Time (Cindy Lauper, Rob Hyman)
17:51 Autumn Leaves (Joseph Kosma)
21:45 Body And Soul (John Green)
26:37 Girl from Ipanema (Antônio Carlos Jobim, Vinícius de Moraes)
31:44 Isn’t She Lovely (Stevie Wonder)
36:53 Killing Me Softly (Norman Gimbel, Charles Fox)
42:16 You Are The Sunshine Of My Love (Stevie Wonder)
47:29 One Note Samba (Antônio Carlos Jobim, Newton Mendonça)
49:55 A Felicidade (Nascimento)



https://youtu.be/KFH046IYwb4

埋め込み youtubeの埋め込みコードそのまま

<iframe width="560" height="315" src="https://www.youtube.com/embed/KFH046IYwb4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

埋め込み 横幅100%で、縦幅比を16:9にする

<div style="margin: 0 auto; max-width: 100%;">
<div style="position: relative; padding-top: 56.25%;">
<iframe style="height: 100%; position: absolute; left: 0; top: 0; width: 100%;"  src="https://www.youtube.com/embed/KFH046IYwb4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></div>
</div>

横幅・縦幅を調整する width=”400” height=”255”

<iframe width="400" height="255" src="https://www.youtube.com/embed/KFH046IYwb4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

width=”400″ height=”255″

チャンネル内のおすすめ動画を表示する 「?rel=0

<iframe width="560" height="315" src="https://www.youtube.com/embed/KFH046IYwb4?rel=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

同じチャンネル内のおすすめ動画を表示できる
?rel=0

動画を自動再生させる 「?autoplay=1

<iframe width="560" height="315" src="https://www.youtube.com/embed/KFH046IYwb4?autoplay=1&mute=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

記事を開くと動画を自動再生するコード  
もし再生されない場合は「&mute=1」を追記すると再生される場合がある

?autoplay=1&mute=1

動画を途中から再生させる 「?start=秒数」

<iframe width="560" height="315" src="https://www.youtube.com/embed/KFH046IYwb4?start=420" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

7分00秒のところから再生したい場合は ?start=420
My Funny Valentine (Richard Rogers, Lorenz Hart)

動画を途中で停止させる 「?end=秒数

<iframe width="560" height="315" src="https://www.youtube.com/embed/KFH046IYwb4?start=2213&end=2536" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

36分53秒(2213秒)〜42分16秒(2536秒)の部分を見てほしい場合 
Killing Me Softly (Norman Gimbel, Charles Fox)

?start=2213&end=2536

動画をループ再生させる 「?loop=1&playlist=動画ID

<iframe width="560" height="315" src="https://www.youtube.com/embed/uVLSe2uhLXo?loop=1&playlist=uVLSe2uhLXo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>

?loop=1&playlist=動画ID

目次