Reputation: 3697
I have looked around the internet for a method to remove the YouTube logo from their iFrame player.
I am using
<iframe width="550" height="314" src="https://www.youtube.com/embed/vidid?modestbranding=1&rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
which removes the 'watch on YouTube' button from the bottom actions panel however it adds the YouTube logo watermark to the bottom right of the video and when I hover over it says watch on YouTube.
I have tried changing 'embed' to 'v' which removes it but then it doesnt work on iPad/phone.
Any suggestions?
Upvotes: 6
Views: 11229
Reputation: 343
If you use modestbranding=1 you can't use showinfo=0. You can only use 1 or the other. Also, if you use modestbranding=1 it must come first right after the url.
Example:
https://youtube.com/embed/vidid?modestbranding=1
Upvotes: 0
Reputation: 23181
As far as I know, the most you can do is to add the modestbranding=1
option to the URL, but this only gets rid of the title and youtube link on the top of the player.
I don't think you can get rid of the bottom right one that appears when you hover.
Source: https://developers.google.com/youtube/player_parameters#modestbranding
Upvotes: 5