コードによって異なりますが、
http ://www.youtube.com/embed/ $VIDEOID?controls=0 のように「controls=0」を試すことができます。ここで、$VIDEOID を有効なビデオ ID に置き換えます。
これにより、再生中にビデオ内を前後に移動するスライダーも削除されることに注意してください。最後に関連するビデオも削除するには、再生後に次のようにパラメータ「rel=0」を追加します:
http://www.youtube.com/embed/ $VIDEOID?controls=0&rel=0
利用可能なパラメータのリストについては、
https ://developers.google.com/youtube/player_parameters を参照してください。
試す:
<iframe id="ytplayer" type="text/html" width="200" height="200" src="https://www.youtube.com/embed/?controls=0&listType=playlist&list={PLAYLISTIDHERE}" />
プレイリストの選択は左上隅に表示されているようですが、controls=0 では機能しません。
オプションとして、autohide=1 を使用することもできます。提案どおりにmodestbranding = 1も追加しました。
<iframe id="ytplayer" width="200" height="200" src="https://www.youtube.com/embed/?modestbranding=1&autohide=1&listType=playlist&list={PLAYLISTIDHERE}" />