YouTube再生後の関連動画を非表示にする方法

Home » 基本操作 » YouTube再生後の関連動画を非表示にする方法

▼動画掲載の最初のステップについては、下記のページをご覧ください。
https://manual.wevery.jp/?p=417

2025年5月現在、関連動画を完全に非表示にする方法はないようです。
ですが他チャンネルへの離脱を防ぐ方法が2つありますのでご紹介します。

1つ目は自分のチャンネルの動画のみを関連動画として表示させる方法。
2つ目はループ再生にすることで関連動画自体を表示させない方法です。

以下にそれぞれの手順を記載します。

①自分のチャンネルの動画のみを関連動画として表示させる

youtudeの埋め込みコードのURL部分の
si=●●●●●●●●●●●●●●●●を消しパラメータ「rel=0」を追加します。

設定前

<iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/7OtcMCkpdEs?si=Be3fClgZjzIv1K0Q” title=”YouTube video player” frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share” referrerpolicy=”strict-origin-when-cross-origin” allowfullscreen></iframe>

設定後

<iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/7OtcMCkpdEs?rel=0” title=”YouTube video player” frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share” referrerpolicy=”strict-origin-when-cross-origin” allowfullscreen></iframe>

設定後の挙動

②ループ再生にすることで関連動画自体を表示させない

動画をループ再生させるためにはyoutudeの埋め込みコードのURLに
&loop=1と&playlist=VIDEO_IDを設定します。
VIDEO_IDは、埋め込みコードの赤文字部分のことです。

設定前

<iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/7OtcMCkpdEs?si=Be3fClgZjzIv1K0Q” title=”YouTube video player” frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share” referrerpolicy=”strict-origin-when-cross-origin” allowfullscreen></iframe>

設定後

<iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/7OtcMCkpdEs?si=Be3fClgZjzIv1K0Q&loop=1&playlist=7OtcMCkpdEs” title=”YouTube video player” frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share” referrerpolicy=”strict-origin-when-cross-origin” allowfullscreen></iframe>

設定後の挙動