0

I inserted modestbranding=1, but it doen't work: YouTube logo is still there.

<a href="#null" onclick="document.getElementById('player').src='http://www.youtube.com/embed/dPvIx8Ughkm?modestbranding=1&controls=0...">
apaderno
  • 28,547
  • 16
  • 75
  • 90
Alegro
  • 7,534
  • 17
  • 53
  • 74
  • Do you use the `showinfo=0` parameter, too? They don't work together. – Nippey Oct 24 '12 at 14:06
  • @Nippey, I removed `showinfo=0` and got another issue (label of video and logo at the top right corner). is there a way to completely remove everything except the video itself ? Or, maybe keep the logo, but prevent the click event on it. – Alegro Oct 24 '12 at 14:12
  • [Please visit this Question for answer][1] [1]: http://stackoverflow.com/questions/14496186/how-can-i-remove-youtube-logo-from-the-youtube-player-for-use-in-other-applicati – Mrugesh Jan 24 '13 at 08:27
  • [Please visit this Question For Answer][1] [1]: http://stackoverflow.com/questions/14496186/how-can-i-remove-youtube-logo-from-the-youtube-player-for-use-in-other-applicati – Mrugesh Jan 24 '13 at 08:29
  • @Mrugesh inline link: `[Link label](url)` – Kos May 03 '13 at 07:10

1 Answers1

2

Did you also use the showinfo parameter? If so, it can't be used together with modestbranding.

Here is a nice article about this.

Not using the showninfo parameter will cause the logo and the label to reappear. The label can be removed by setting the title to nothing &title=&controls=0
(Notice the = is directly followed by the next parameter, the controls parameter is just there to illustrate nothing ;] )

If you need more control, you can consider using an alternative player like the JWPlayer.

Nippey
  • 4,708
  • 36
  • 44