May 15, 2012

Remove youtube logo from your embedded videos

Remove youtube logo from your embedded videosFor most control freaks who want their and only their website's name on their site, Here's a very simple but crude way of removing You-Tube Logos from your embedded videos.

For this feat, you can use a simple command to be inserted into the embed code.
i.e. modestbranding,

If this option of modest branding is kept as on or 1, you'll get modest branding and You-tube will not show its icon at the bottom right corner of your You-Tube player.

Embedding a youtube video player is very simply shown here in this image.

Remove youtube logo style

Initial code, Without changes

Here is the initial code, for the video below, which does not contain the modestbranding command,
Notice that the You-Tube logo is present at the bottom right of the player.

IFRAME code

<iframe width="420" height="315" src="http://www.youtube.com/embed/XYZ" frameborder="0" allowfullscreen></iframe>

OLD YOU-TUBE code

<object width="420" height="315"><param name="movie" value="http://www.youtube.com/v/TT12tr2YQJ4?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TT12tr2YQJ4?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>

  

Final code, With changes

Here is the Final code, for the video below, which contains the modestbranding command,
Notice that the You-Tube logo is missing at the bottom right of the player.

IFRAME code

<iframe width="420" height="315" src="http://www.youtube.com/embed/XYZ?modestbranding=1" frameborder="0" allowfullscreen></iframe>

NEW YOU-TUBE code
 
<object width="420" height="315"><param name="movie" value="http://www.youtube.com/v/TT12tr2YQJ4?modestbranding=1version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TT12tr2YQJ4?modestbranding=1version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>



So, Just insert the code after the '?' (question mark) and provide value as 1, 

This is how you
Remove youtube logo from your embedded videos MohitChar