Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hiding YouTube embed title and 'More videos' (Updated)

Tags:

Is there an official way to hide the title and the More videos section from a YouTube embed (latest version as of July 2nd 2018), and just show the YouTube logo bottom-right? I know the embed used to have this ability some time ago.

What I'm basically looking for is have the embed auto play with no other elements on it except the mandatory YouTube logo and be able to pause it, but no More videos appear when doing that.

For the showinfo option, the documentation currently says:

Setting the parameter's value to 0 causes the player to not display information like the video title and uploader before the video starts playing.

So that before clearly says that this does not take effect during the video play.

But is there any way to hide the Uploader, Title, Watch Later and Share buttons from the top part of an embed?

This is how it currently looks when the video is paused:

<iframe src="https://www.youtube.com/embed/dnmJLVWetQM?autoplay=1&controls=0&modestbranding=1&showinfo=0&iv_load_policy=3" frameborder="0" allowfullscreen="1" allow="autoplay; encrypted-media" title="YouTube video player" width="720" height="405"> 

enter image description here

Also the comment from here is not up to date anymore.

For the rel option, the documentation currently says:

This parameter indicates whether the player should show related videos when playback of the initial video ends.

So this too doesn't apply when the video is paused.

like image 475
Vlad Avatar asked Jul 02 '18 13:07

Vlad


People also ask

How do I hide more videos on YouTube?

Click on the logo of uBlock Origin and click on the settings icon, to Open the dashboard . Click Apply changes . Now you won't see 'More video's while pausing a Youtube video.

How do I remove YouTube logo and title links from embedded video player?

If you would like to remove the YouTube branding and logo from the embedded player, add modestbranding=0 to the YouTube video URL as shown below: <iframe src="http://www.youtube.com/embed/-hX_rznqnM0?modestbranding=1" height="350" width="575"></iframe>.

How do I turn off related videos on an embedded YouTube playlist?

How to disable “related videos” from an embedded youtube ? THX! Hi, try appending &rel=0 after the Youtube URL in the popup link.


1 Answers

YouTube deprecated parameter showinfo (can no more hide title) and changed parameter rel behavior (will show related videos).

Details in https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018

Note: This is a deprecation announcement for the showinfo parameter. In addition, the behavior for the rel parameter is changing. Titles, channel information, and related videos are an important part of YouTube’s core user experience, and these changes help to make the YouTube viewing experience consistent across different platforms.

like image 120
Binyamin Avatar answered Oct 08 '22 15:10

Binyamin