Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

i have video player remove youtube logo using wordpress WordPress

  • SOLVED

i have a jwplayer on wordpress and i would like to know how to play my video without youtube logo on the video or the jwplayer skin. what to do?

snippet from my jwplayer plugin xml
<flashvars>logo.position (bottom-left), logo.hide (false), logo.file (http://globalstarhiphop.com/playerlogo.png)</flashvars>


http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/43/using-jw-player-skins


jus like ilovepwnage.com
what are these guys using
http://ilovepwnage.com/video.php?v=MjMxOTU=

Answers (5)

2011-07-25

Navjot Singh answers:

As per [[LINK href="http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/21037/embedding-youtube-with-no-yt-logo-new-feature"]]Jwplayer official forum support[[/LINK]] you can't remove the Youtube logo on Jwplayers as the Youtube api doesn't support the option to remove the logo.

2011-07-25

Maor Barazany answers:

What @Navjot Singh says is the correct answer, the link he reffered in JW forum is to a question I asked there, after investigating a lot for this issue of removing YT logo in the JW player.
You may read in the link that I put inside my question in JW forum, about the way to remove the logo ([[LINK href="http://www.reelseo.com/remove-youtube-logo"]]http://www.reelseo.com/remove-youtube-logo[[/LINK]]), but this applies only for embedding directly (with iframe or embed) and not with a 3rd party player that plays the YT video, such as JW, since the YouTube API (still) does not let it.

What @Roberto Squillace said, will won't work either way.

2011-07-25

Julio Potier answers:

Videos from youtube got the youtube logo.
The video on ilovepwnage is not loaded from youtube, so, no logo.


rod rideau comments:

but what player are they using


Julio Potier comments:

I think this is the <strong>jwplayer</strong>, i found this in the code :
jwflvDiv
and this :
seyretpl (means Seyret Player)

ps : they are not using WordPress ;)

2011-07-25

Dudy wp answers:

Hi, use embed code of youtube video or a plugin for embed youtube video, like http://wordpress.org/extend/plugins/wp-youtube-player/ or other one and add at the end of video url "?modestbranding=1" (change it in the url of embed code if you use it)

so if your video url is: http://www.youtube.com/watch?v=XRH56FNrgoU

change it in: http://www.youtube.com/watch?v=XRH56FNrgoU<strong>?modestbranding=1</strong>

2011-07-25

juaribd answers:

?modestbranding=1 will do the job. But not only ?modestbranding=1 you have to add some more parameters. You have to add the following code just after the video ID:

VIDEOID?modestbranding=1&version=3&hl=en_US

Example:

<object width="560" height="349">
<param name="movie" value="http://www.youtube.com/v/7vt7BleXYP8?modestbranding=1&amp;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/7vt7BleXYP8?modestbranding=1&amp;version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="560" height="349" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>


There is a live example on my site. You can just go to [[LINK href="http://aiqbal.co.cc"]]http://aiqbal.co.cc[[/LINK]] And check the featured video on right widget. its from youtube and the youtube brand is removed with this code. Hope this will solve your problem.