<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/1.5.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Zend Framework and Youtube API</title>
	<link>http://www.robertbolton.com/zend-framework-and-youtube-api</link>
	<description>A lot to do about nothing</description>
	<pubDate>Fri, 30 Jul 2010 10:07:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.2</generator>

	<item>
 		<title>Comment on Zend Framework and Youtube API by: Arthas</title>
		<link>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-28823</link>
		<pubDate>Thu, 18 Sep 2008 22:59:02 +0000</pubDate>
		<guid>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-28823</guid>
					<description>its me again, hehehe just to apologize about my previous comment....just had to drink water and read again....

sorry for that</description>
		<content:encoded><![CDATA[	<p>its me again, hehehe just to apologize about my previous comment&#8230;.just had to drink water and read again&#8230;.</p>
	<p>sorry for that
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Zend Framework and Youtube API by: Arthas</title>
		<link>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-28822</link>
		<pubDate>Thu, 18 Sep 2008 22:52:28 +0000</pubDate>
		<guid>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-28822</guid>
					<description>Well, almost easy for me to implement....just have a question....

at line= $query-&amp;#62;videoQuery = â€˜catâ€™;

What other options can i use?

the worst developer guide i've read, its zend_framework you know...they doesnt explain parameters at all....

i understand...cat, so, can I use dog? pork? duck? or what does CAT means??

hope u know the answer...</description>
		<content:encoded><![CDATA[	<p>Well, almost easy for me to implement&#8230;.just have a question&#8230;.</p>
	<p>at line= $query-&gt;videoQuery = â€˜catâ€™;</p>
	<p>What other options can i use?</p>
	<p>the worst developer guide i&#8217;ve read, its zend_framework you know&#8230;they doesnt explain parameters at all&#8230;.</p>
	<p>i understand&#8230;cat, so, can I use dog? pork? duck? or what does CAT means??</p>
	<p>hope u know the answer&#8230;
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Zend Framework and Youtube API by: Administrator</title>
		<link>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-24811</link>
		<pubDate>Thu, 17 Jul 2008 18:01:54 +0000</pubDate>
		<guid>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-24811</guid>
					<description>Jochen - thanks for the response. I am glad to hear of the plans to write a higher level class and I also appreciate the links to more documentation. Its great you are contributing to the Zend Framework and also listening to the community. Hopefully I can get some time to contribute, because as I mentioned in my post, it is easy to sit on the sidelines and complain than to help out!

Again, glad you are actively working on things and I look forward to seeing what's in the pipeline. I think an easier abstraction that provides 80% of the functionality will be appreciated by people!</description>
		<content:encoded><![CDATA[	<p>Jochen - thanks for the response. I am glad to hear of the plans to write a higher level class and I also appreciate the links to more documentation. Its great you are contributing to the Zend Framework and also listening to the community. Hopefully I can get some time to contribute, because as I mentioned in my post, it is easy to sit on the sidelines and complain than to help out!</p>
	<p>Again, glad you are actively working on things and I look forward to seeing what&#8217;s in the pipeline. I think an easier abstraction that provides 80% of the functionality will be appreciated by people!
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Zend Framework and Youtube API by: Jochen</title>
		<link>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-23115</link>
		<pubDate>Tue, 17 Jun 2008 16:49:57 +0000</pubDate>
		<guid>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-23115</guid>
					<description>Looks like the XML got cut off by Word Press's input filter. The XML that I was referring to with regards to thumbnails can be found at the link below:

http://code.google.com/apis/youtube/developers_guide_protocol.html#Understanding_Video_Entries</description>
		<content:encoded><![CDATA[	<p>Looks like the XML got cut off by Word Press&#8217;s input filter. The XML that I was referring to with regards to thumbnails can be found at the link below:</p>
	<p><a href='http://code.google.com/apis/youtube/developers_guide_protocol.html#Understanding_Video_Entries' rel='nofollow'>http://code.google.com/apis/youtube/developers_guide_protocol.html#Understanding_Video_Entries</a>
</p>
]]></content:encoded>
				</item>
	<item>
 		<title>Comment on Zend Framework and Youtube API by: Jochen</title>
		<link>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-23111</link>
		<pubDate>Tue, 17 Jun 2008 16:46:04 +0000</pubDate>
		<guid>http://www.robertbolton.com/zend-framework-and-youtube-api#comment-23111</guid>
					<description>Robert,

Thanks for the blog post. I work on the PHP Client Library components at Google and am responsible for some of the code that you mention. I agree that the class structure is quite verbose. 

We also need to update our own documentation on the Zend site. In the meantime you may want to check out the PHP Developer Guide on code.google.com which details the helper methods that we have for accessing video meta-data:

http://code.google.com/apis/youtube/developers_guide_php.html#RetrievingVideoInfo

So you can do for example:

&lt;code&gt;
print $entry-&amp;#62;getVideoDescription();
print $entry-&amp;#62;getFlashPlayerUrl(); 
&lt;/code&gt;

The thumbnail array contains a value for each XML  element: 



The attributes correspond to the XML attributes. Three thumbnails are automatically generated for each video during the trans-coding process.

I hope this helps. For information about how to use the PHP Client Library to perform video uploads you can also check out our video:

http://www.youtube.com/watch?v=iIp7OnHXBlo

Please note that the helper methods such as -&amp;#62;SetVideoTitle() discussed in the video are in Zend /trunk

We are planning to write a more high-level class that sits on top of the Zend_Gdata classes to abstract 90% of the YouTube API functionality to help developers that just want to get up and running with the YouTube API without having to dig too deeply into the class hierarchy. 

If you are interested please feel free to contribute some ideas or code for the issue linked here:

http://framework.zend.com/issues/browse/ZF-3467

Whew. That was long. We appreciate your feedback ! Please ping me if you have any other questions!

Thanks
- Jochen</description>
		<content:encoded><![CDATA[	<p>Robert,</p>
	<p>Thanks for the blog post. I work on the PHP Client Library components at Google and am responsible for some of the code that you mention. I agree that the class structure is quite verbose. </p>
	<p>We also need to update our own documentation on the Zend site. In the meantime you may want to check out the PHP Developer Guide on code.google.com which details the helper methods that we have for accessing video meta-data:</p>
	<p><a href='http://code.google.com/apis/youtube/developers_guide_php.html#RetrievingVideoInfo' rel='nofollow'>http://code.google.com/apis/youtube/developers_guide_php.html#RetrievingVideoInfo</a></p>
	<p>So you can do for example:</p>
	<p><code><br />
print $entry-&gt;getVideoDescription();<br />
print $entry-&gt;getFlashPlayerUrl();<br />
</code></p>
	<p>The thumbnail array contains a value for each XML  element: </p>
	<p>The attributes correspond to the XML attributes. Three thumbnails are automatically generated for each video during the trans-coding process.</p>
	<p>I hope this helps. For information about how to use the PHP Client Library to perform video uploads you can also check out our video:</p>
	<p><a href='http://www.youtube.com/watch?v=iIp7OnHXBlo' rel='nofollow'>http://www.youtube.com/watch?v=iIp7OnHXBlo</a></p>
	<p>Please note that the helper methods such as -&gt;SetVideoTitle() discussed in the video are in Zend /trunk</p>
	<p>We are planning to write a more high-level class that sits on top of the Zend_Gdata classes to abstract 90% of the YouTube API functionality to help developers that just want to get up and running with the YouTube API without having to dig too deeply into the class hierarchy. </p>
	<p>If you are interested please feel free to contribute some ideas or code for the issue linked here:</p>
	<p><a href='http://framework.zend.com/issues/browse/ZF-3467' rel='nofollow'>http://framework.zend.com/issues/browse/ZF-3467</a></p>
	<p>Whew. That was long. We appreciate your feedback ! Please ping me if you have any other questions!</p>
	<p>Thanks<br />
- Jochen
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
