How can I remove the youtube logo with the YouTube player for use in another application?

I want to use Charmless youtube player in my application and I want to remove youtube logo from Player. How can I achieve this goal? My application is developed using AS3.

+3


source to share


4 answers


I tried to remove the youtube logo in different ways. But I have been unable to succeed to remove it from the YouTube player.

Finally, I test the functionality and behavior of the YouTube player. When a video is connected to the player, it will be displayed in the center. if the height of the player's container is greater than the height of the video, so the second (top and bottom) side of the Black Bar will appear. We just need to hide the black bar from the user's viewport by masking. (In Flash, we can apply a mask to a container, and the same will be done using the DOM in Javascript.)



In a straight forward order, it will be removed according to the end user's perspective. so an indirect way to remove the youtube logo from the player.

0


source


Just add ?modestbranding=1

to the end of your url.

More details here .



modestbranding (supported players: AS3, HTML5) This option allows you to use a YouTube player that does not display the YouTube logo. Set the parameter to 1 so that the YouTube logo does not appear on the control panel. Note that a small YouTube text cue will appear in the upper right corner of the paused video when the user's mouse hovers over the player.

+4


source


try this API player code.

http://www.youtube.com/apiplayer?version=3&modestbranding=1&showinfo=1

Chromeless player, modestbranding has no effect unless "showinfo = 1" is required for the API player.

+1


source


you can try GKPlugin this plugin using JWPlayer 5.x:

https://drive.google.com/folderview?id=0B0OhZLpuvlSRTDZLMXowQWNMZTA#list

      

-2


source







All Articles