<?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 for UnholyKnight</title>
	<atom:link href="http://unholyknight.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://unholyknight.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 09 Jul 2010 15:15:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on E3 2010 Interactive Kiosk by Fa1thus</title>
		<link>http://unholyknight.com/2010/07/e3-2010-interactive-kiosk/comment-page-1/#comment-114</link>
		<dc:creator>Fa1thus</dc:creator>
		<pubDate>Fri, 09 Jul 2010 15:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=1020#comment-114</guid>
		<description>This looks awesome!!! GJ!</description>
		<content:encoded><![CDATA[<p>This looks awesome!!! GJ!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.2 by A Collection of 20 HTML5 Video Players</title>
		<link>http://unholyknight.com/2010/05/html5-video-player-version-1-2/comment-page-1/#comment-113</link>
		<dc:creator>A Collection of 20 HTML5 Video Players</dc:creator>
		<pubDate>Thu, 08 Jul 2010 15:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=933#comment-113</guid>
		<description>[...] 11. HTML5 Video Player – Version 1.2 [...]</description>
		<content:encoded><![CDATA[<p>[...] 11. HTML5 Video Player – Version 1.2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.0 by HTML5 Video Player &#8211; Version 1.2 &#171; UnholyKnight</title>
		<link>http://unholyknight.com/2010/03/html5-video-player-version-1-0/comment-page-1/#comment-81</link>
		<dc:creator>HTML5 Video Player &#8211; Version 1.2 &#171; UnholyKnight</dc:creator>
		<pubDate>Fri, 07 May 2010 17:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=815#comment-81</guid>
		<description>[...] What&#8217;s up with HTML5 video anyway? For the original project outline check the version 1 post here. [...]</description>
		<content:encoded><![CDATA[<p>[...] What&#8217;s up with HTML5 video anyway? For the original project outline check the version 1 post here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.0 by UnholyKnight</title>
		<link>http://unholyknight.com/2010/03/html5-video-player-version-1-0/comment-page-1/#comment-56</link>
		<dc:creator>UnholyKnight</dc:creator>
		<pubDate>Tue, 16 Mar 2010 22:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=815#comment-56</guid>
		<description>This initial version is a little sloppy, but so far I&#039;ve been including all of the necessary arguments for functions in the new version I&#039;m working on.  I&#039;ll make sure I covered the ones you pointed out above as well. Thanks!

And I did add the controls with a script in the new version, the javascript looks for &lt;div id=&quot;videoControls&quot;&gt;&lt;/div&gt; and inserts the appropriate code within that div.  Version 1.2 should be finished up and posted by the end of the week, so watch for that.  I&#039;m not planning on this player being completely usable and distribution worthy until version 2, but it does help to get some extra eyes on the code and opinions along the way.

The next version is also working with FireFox.</description>
		<content:encoded><![CDATA[<p>This initial version is a little sloppy, but so far I&#8217;ve been including all of the necessary arguments for functions in the new version I&#8217;m working on.  I&#8217;ll make sure I covered the ones you pointed out above as well. Thanks!</p>
<p>And I did add the controls with a script in the new version, the javascript looks for &lt;div id=&#8221;videoControls&#8221;&gt;&lt;/div&gt; and inserts the appropriate code within that div.  Version 1.2 should be finished up and posted by the end of the week, so watch for that.  I&#8217;m not planning on this player being completely usable and distribution worthy until version 2, but it does help to get some extra eyes on the code and opinions along the way.</p>
<p>The next version is also working with FireFox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.0 by zcorpan</title>
		<link>http://unholyknight.com/2010/03/html5-video-player-version-1-0/comment-page-1/#comment-55</link>
		<dc:creator>zcorpan</dc:creator>
		<pubDate>Tue, 16 Mar 2010 21:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=815#comment-55</guid>
		<description>Looks nice. :-)

You should probably make your controls keyboard accessible -- you can do this by adding tabindex=&quot;0&quot; on the buttons, and listening for keydown events or so.

You should maybe also add the controls with script or at least make sure they&#039;re hidden when script is disabled so that the user can use the browser&#039;s controls instead.

The controls don&#039;t seem to work fully in Opera; the play button doesn&#039;t turn into a pause button, and the controls aren&#039;t hidden when moving away the mouse. I could also drag the seek knob outside the seekbar. :-) In the error console I see WRONG_ARGUMENTS_ERR being raised for buffered.end(). The spec requires an argument there. You should probably use buffered.end(bufferend.length-1), but you need to check that length is greater than 0 first, since in Opera it&#039;s always 0 currently, and end(-1) will throw INDEX_SIZE_ERR.</description>
		<content:encoded><![CDATA[<p>Looks nice. <img src='http://unholyknight.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>You should probably make your controls keyboard accessible &#8212; you can do this by adding tabindex=&#8221;0&#8243; on the buttons, and listening for keydown events or so.</p>
<p>You should maybe also add the controls with script or at least make sure they&#8217;re hidden when script is disabled so that the user can use the browser&#8217;s controls instead.</p>
<p>The controls don&#8217;t seem to work fully in Opera; the play button doesn&#8217;t turn into a pause button, and the controls aren&#8217;t hidden when moving away the mouse. I could also drag the seek knob outside the seekbar. <img src='http://unholyknight.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  In the error console I see WRONG_ARGUMENTS_ERR being raised for buffered.end(). The spec requires an argument there. You should probably use buffered.end(bufferend.length-1), but you need to check that length is greater than 0 first, since in Opera it&#8217;s always 0 currently, and end(-1) will throw INDEX_SIZE_ERR.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.0 by UnholyKnight</title>
		<link>http://unholyknight.com/2010/03/html5-video-player-version-1-0/comment-page-1/#comment-54</link>
		<dc:creator>UnholyKnight</dc:creator>
		<pubDate>Sat, 13 Mar 2010 08:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=815#comment-54</guid>
		<description>Fullscreen is something that I will tackle later on, but preloaders are very possible. I will have a working preloader up for the next version of the player. The current issue with buffer status and preloaders is that Firefox has yet to implement any sort of buffer status for HTML5 video so I’ll have to think of a solution that only shows the preloader on Safari/Chrome while remaining preloader-less on Firefox until buffer status functions are implemented.

As for listeners, JavaScript can handle almost anything that Flash can, and more reliably so. The IE crowd will have to stick with flash for now since who knows when the video tag will be implemented in their browser.</description>
		<content:encoded><![CDATA[<p>Fullscreen is something that I will tackle later on, but preloaders are very possible. I will have a working preloader up for the next version of the player. The current issue with buffer status and preloaders is that Firefox has yet to implement any sort of buffer status for HTML5 video so I’ll have to think of a solution that only shows the preloader on Safari/Chrome while remaining preloader-less on Firefox until buffer status functions are implemented.</p>
<p>As for listeners, JavaScript can handle almost anything that Flash can, and more reliably so. The IE crowd will have to stick with flash for now since who knows when the video tag will be implemented in their browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Very Daft Halloween by adam</title>
		<link>http://unholyknight.com/2009/11/a-very-daft-halloween/comment-page-1/#comment-52</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 12 Mar 2010 23:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=442#comment-52</guid>
		<description>Tres incredible Messuer</description>
		<content:encoded><![CDATA[<p>Tres incredible Messuer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 Video Player &#8211; Version 1.0 by adam</title>
		<link>http://unholyknight.com/2010/03/html5-video-player-version-1-0/comment-page-1/#comment-51</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 12 Mar 2010 23:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=815#comment-51</guid>
		<description>Eric, this played really smoothly on my MacPro running Safari 4.0.4

I&#039;ve been building Flash based media players for years as part of my job, but lately I have learned to hate Flash based media on the web thanks to its shoddy memory handling (read: leaking). I&#039;m frankly quite sick of it. This is refreshing to see, the future of web media is plug in free. I&#039;m tempted to reauthor all my video content for my site to use a HTML5 player. 

However, the Flash environment allows easy fullscreen modes, data loading/preloading, event listening/triggering etc. I&#039;d like to see what you can do to address those parameters as that would be killer once solved. I hate not being able to view most web video on my iPhone too, I cant wait for everyone to catch up

Good work sir!!</description>
		<content:encoded><![CDATA[<p>Eric, this played really smoothly on my MacPro running Safari 4.0.4</p>
<p>I&#8217;ve been building Flash based media players for years as part of my job, but lately I have learned to hate Flash based media on the web thanks to its shoddy memory handling (read: leaking). I&#8217;m frankly quite sick of it. This is refreshing to see, the future of web media is plug in free. I&#8217;m tempted to reauthor all my video content for my site to use a HTML5 player. </p>
<p>However, the Flash environment allows easy fullscreen modes, data loading/preloading, event listening/triggering etc. I&#8217;d like to see what you can do to address those parameters as that would be killer once solved. I hate not being able to view most web video on my iPhone too, I cant wait for everyone to catch up</p>
<p>Good work sir!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fab Deuce &#8211; Deuce Knuckle CD Release by Parable Paul</title>
		<link>http://unholyknight.com/2009/12/fab-deuce-deuce-knuckle-cd-release/comment-page-1/#comment-29</link>
		<dc:creator>Parable Paul</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=579#comment-29</guid>
		<description>Yeah, thanks for the nice words. Free music of mine can be heard here: Myspace.com/ParablePaul.</description>
		<content:encoded><![CDATA[<p>Yeah, thanks for the nice words. Free music of mine can be heard here: Myspace.com/ParablePaul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Friday Night Party Music by PARIS PERSHUN</title>
		<link>http://unholyknight.com/2010/02/friday-night-party-music/comment-page-1/#comment-48</link>
		<dc:creator>PARIS PERSHUN</dc:creator>
		<pubDate>Sat, 27 Feb 2010 04:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://unholyknight.com/?p=788#comment-48</guid>
		<description>Yeahhhhhhhhhhhhhh A.Dd+ HOE!!!!</description>
		<content:encoded><![CDATA[<p>Yeahhhhhhhhhhhhhh A.Dd+ HOE!!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
