How To Remove YouTube Logo From Videos

remove youtube logoJust a while ago, when I was going through Digital Inspiration, I got my eyes on this wonderful piece of information or a trick as I usually call such articles. This trick shows you how to embed YouTube videos without the YouTube logo.

When you embed a YouTube video, this is how it looks:
and the iframe code used is

<iframe width="560" height="349" src="https://www.youtube.com/embed/aZ3lm-wCaMY" frameborder="0" allowfullscreen></iframe>

As you can see, the video has the YouTube logo at the bottom right corner.

How to remove YouTube Logo from Videos

A small manipulation to the code and this is how the video looks
The manipulation in the code is adding the parameter modestbranding=1 at the end of the video URL.
Hence the manipulated iframe code is
<iframe width="560" height="349" src="https://www.youtube.com/embed/aZ3lm-wCaMY?modestbranding=1" frameborder="0" allowfullscreen></iframe>
This parameter is also available to the object version. The code for the object version would be
<object width="500" height="314"> <param name="movie"
value="http://www.youtube.com/embed/aZ3lm-wCaMY?version=3&rel=0&modestbranding=1">
</param><param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed type="application/x-shockwave-flash" width="500" height="300"
src="https://www.youtube.com/embed/aZ3lm-wCaMY?version=3&rel=0&modestbranding=1"
allowscriptaccess="always" allowfullscreen="true">
</embed>
</object>

Leave a Comment