Hi! Everyone, hope you all are fine.
Today in this post I will tell you how you can embed YouTube video without YouTube logo. Whenever we embed a YouTube video it always display a YouTube logo in the player. But if you don’t want to display that YouTube logo then you can use ?modestbranding=1 parameter just after the YouTube video ID.
Below you will able to see two YouTube players embedded one is with YouTube logo and other one is logoless.
In this^ you may able to see the logo of YouTube at bottom-right corner
In this^ you may not able to see any such logo
Here how you can
In iframe embed code
Just add ?modestbranding=1 after the YouTube video ID
<iframe width="516" height=" 417" src="https://www.youtube.com/embed/8Qz1v9758W0?modestbranding=1"></iframe>
In above code 8Qz1v9758W0 is your video ID
In object embed code
In object code you need to add two things
First add ?version=3 just after the YouTube video ID if it is not there and second you need to add &modestbranding=1
<object width="516" height="387">
<param name="movie" value="https://www.youtube.com/v/8Qz1v9758W0?version=3&modestbranding=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="https://www.youtube.com/v/8Qz1v9758W0?version=3&modestbranding=1" type="application/x-shockwave-flash" width="516" height="387" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>
In above code 8Qz1v9758W0 is your video ID
Note: – It will not show the YouTube logo but it will show a small YouTube text label at top-right corner of a paused video when the viewer’s mouse pointer is on the player.