<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Making a Custom YouTube Video Player With YouTube&#8217;s APIs</title>
	<atom:link href="http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Wed, 16 May 2012 02:12:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sean</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-22826</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 21 Mar 2012 04:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-22826</guid>
		<description>This works fine, but with literally every youtube video I tested it on EXCEPT FOR MY OWN.  I have no idea what setting my youtube account might have that is stopping me, the videos allow embedding and they&#039;re pubic.  What small thing might I be overlooking??</description>
		<content:encoded><![CDATA[<p>This works fine, but with literally every youtube video I tested it on EXCEPT FOR MY OWN.  I have no idea what setting my youtube account might have that is stopping me, the videos allow embedding and they're pubic.  What small thing might I be overlooking??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Frame</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-22425</link>
		<dc:creator>Adam Frame</dc:creator>
		<pubDate>Fri, 02 Mar 2012 12:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-22425</guid>
		<description>Looks and works great for single videos. How do I make it work properly for playlists?

I have added the Flashvar &#039;playlist&#039; in the js and passed the list of video codes through the youTubeEmbed call and this works, but the play control reappears at the start of each video and the progress meter is not the correct length for the video currently playing.

If you have any pointers on where I should be looking that would be great.

Thanks.</description>
		<content:encoded><![CDATA[<p>Looks and works great for single videos. How do I make it work properly for playlists?</p>
<p>I have added the Flashvar 'playlist' in the js and passed the list of video codes through the youTubeEmbed call and this works, but the play control reappears at the start of each video and the progress meter is not the correct length for the video currently playing.</p>
<p>If you have any pointers on where I should be looking that would be great.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark shirley</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-22218</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Wed, 22 Feb 2012 18:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-22218</guid>
		<description>Looks fantastic is there any tutorials that would show how to implement this into wordpress twentyeleven child theme</description>
		<content:encoded><![CDATA[<p>Looks fantastic is there any tutorials that would show how to implement this into wordpress twentyeleven child theme</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-22176</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Tue, 21 Feb 2012 04:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-22176</guid>
		<description>If you take this approach you also need to remove the following line of code on like 61

data = data.items[0];

This line grabs the first result in the search results (#0) but since we are no longer doing a search and directly calling the specific video, having this line breaks the player.</description>
		<content:encoded><![CDATA[<p>If you take this approach you also need to remove the following line of code on like 61</p>
<p>data = data.items[0];</p>
<p>This line grabs the first result in the search results (#0) but since we are no longer doing a search and directly calling the specific video, having this line breaks the player.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 123</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-21996</link>
		<dc:creator>123</dc:creator>
		<pubDate>Fri, 10 Feb 2012 14:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-21996</guid>
		<description>To make it work with jQuery 1.7.1 all you need to do is just replace &#039;className&#039; to &#039;class&#039; in javascript file. :)</description>
		<content:encoded><![CDATA[<p>To make it work with jQuery 1.7.1 all you need to do is just replace 'className' to 'class' in javascript file. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 123</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-21992</link>
		<dc:creator>123</dc:creator>
		<pubDate>Fri, 10 Feb 2012 10:18:44 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-21992</guid>
		<description>Current script gets information via search and not directly from video info page. If video id starts with special symbols like &#039;-&#039;, youtube API does not return any results. 
To solve this issue, information has to be fetched directly from video information page:
http://gdata.youtube.com/feeds/api/videos/VIDEO_ID?v=2&amp;alt=jsonc
instead of:
http://gdata.youtube.com/feeds/api/videos?v=2&amp;alt=jsonc&amp;q=VIDEO_ID

Updates in youTueEmbed-jquery-1.0.js:
Line 47 changes to 
var youtubeAPI = &#039;http://gdata.youtube.com/feeds/api/videos/&#039; + settings.videoID + &#039;?v=2&amp;alt=jsonc&#039;;
Line 53 changes to
if(response.error){</description>
		<content:encoded><![CDATA[<p>Current script gets information via search and not directly from video info page. If video id starts with special symbols like '-', youtube API does not return any results.<br />
To solve this issue, information has to be fetched directly from video information page:<br />
http://gdata.youtube.com/feeds/api/videos/VIDEO_ID?v=2&amp;alt=jsonc<br />
instead of:<br />
http://gdata.youtube.com/feeds/api/videos?v=2&amp;alt=jsonc&amp;q=VIDEO_ID</p>
<p>Updates in youTueEmbed-jquery-1.0.js:<br />
Line 47 changes to<br />
var youtubeAPI = 'http://gdata.youtube.com/feeds/api/videos/' + settings.videoID + '?v=2&amp;alt=jsonc';<br />
Line 53 changes to<br />
if(response.error){</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dark</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-21876</link>
		<dc:creator>Dark</dc:creator>
		<pubDate>Fri, 03 Feb 2012 05:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-21876</guid>
		<description>It works, but seems not taken styles. I&#039;ve tried to put in inline, and it works. But it is not the solution. Have you found it?</description>
		<content:encoded><![CDATA[<p>It works, but seems not taken styles. I've tried to put in inline, and it works. But it is not the solution. Have you found it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martijn black</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-21701</link>
		<dc:creator>martijn black</dc:creator>
		<pubDate>Tue, 24 Jan 2012 15:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-21701</guid>
		<description>The play/stop buttons will not work with &#039;jquery-1.7.1.min.js&#039;, with the older version works fine.</description>
		<content:encoded><![CDATA[<p>The play/stop buttons will not work with 'jquery-1.7.1.min.js', with the older version works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LB</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-21253</link>
		<dc:creator>LB</dc:creator>
		<pubDate>Thu, 29 Dec 2011 01:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-21253</guid>
		<description>Works great... but still got troubles with urls with &quot;-&quot; before the video id e.g. http://www.youtube.com/watch?v=-lBaGgRTd7I

Could anybody help? :)</description>
		<content:encoded><![CDATA[<p>Works great... but still got troubles with urls with "-" before the video id e.g. http://www.youtube.com/watch?v=-lBaGgRTd7I</p>
<p>Could anybody help? :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: digitalpbk</title>
		<link>http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/#comment-20742</link>
		<dc:creator>digitalpbk</dc:creator>
		<pubDate>Fri, 02 Dec 2011 10:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1027#comment-20742</guid>
		<description>Does youtube still support custom player?</description>
		<content:encoded><![CDATA[<p>Does youtube still support custom player?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 355/356 objects using apc
Content Delivery Network via cdn.tutorialzine.com

Served from: tutorialzine.com @ 2012-05-16 18:10:59 -->
