Delete YouTube video to video

I surfed the internet for a way to remove the YouTube logo using my iFrame player.

I use

<iframe width="550" height="314" src="https://www.youtube.com/embed/vidid?modestbranding=1&amp;rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe> 

which removes the watch YouTube button from the bottom action bar, but it adds the YouTube logo watermark to the lower right of the video, and when I hover over it, watch on YouTube.

I tried changing 'embed' to 'v', which removes it, but then it does not work on the iPad / phone.

Any suggestions?

+6
source share
3 answers

As far as I know, the most you can do is add the parameter modestbranding=1 to the url, but this will only save you the title and link to YouTube at the top of the player.

I do not think that you can get rid of the lower right that appears when you hover over.

Source: https://developers.google.com/youtube/player_parameters#modestbranding

+5
source

You can download it from Google Drive!

0
source

If you use modestbranding = 1, you cannot use showinfo = 0. You can use only one or the other. Also, if you use modestbranding = 1, it should appear first immediately after the URL.

Example:

  https://youtube.com/embed/vidid?modestbranding=1 
0
source

Source: https://habr.com/ru/post/915264/


All Articles