How can I remove youtube logo from the youtube player for use in other application?

前端 未结 4 1161
夕颜
夕颜 2021-01-06 22:36

I want to use the Charmless youtube player in my application and I want to remove youtube logo from the Player. How can i achieve this thing? My application is developed usi

相关标签:
4条回答
  • 2021-01-06 23:03

    Simply add ?modestbranding=1 to the end of your URL.

    See more here.

    modestbranding (supported players: AS3, HTML5) This parameter lets you use a YouTube player that does not show a YouTube logo. Set the parameter value to 1 to prevent the YouTube logo from displaying in the control bar. Note that a small YouTube text label will still display in the upper-right corner of a paused video when the user's mouse pointer hovers over the player.

    0 讨论(0)
  • 2021-01-06 23:10

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

    https://drive.google.com/folderview?id=0B0OhZLpuvlSRTDZLMXowQWNMZTA#list
    
    0 讨论(0)
  • 2021-01-06 23:15

    try this API player code.

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

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

    0 讨论(0)
  • 2021-01-06 23:19

    I tried to remove youtube logo by many ways. But I didn't get success to remove it from the youtube player.

    Finally I check the youtube player functionality and behavior. When video is attached to the player then it will be displayed in center. if player container height is bigger then video height so both (top and bottom) side Black strip will be appeared. Just we have to hide the Black Strip from the user display area using masking concept. (In Flash we can apply the mask to container and same thing will be done using the DOM model in Javascript.)

    In directly it will be removed as per end user perspective not actually. so Indirect way youtube logo is removed from the player.

    0 讨论(0)
提交回复
热议问题