<?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: Scurvy.Media Question</title>
	<atom:link href="http://codecube.net/2008/09/scurvymedia-question/feed/" rel="self" type="application/rss+xml" />
	<link>http://codecube.net/2008/09/scurvymedia-question/</link>
	<description>Joel Martinez' weblog</description>
	<lastBuildDate>Wed, 14 Mar 2012 12:26:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Joel Martinez</title>
		<link>http://codecube.net/2008/09/scurvymedia-question/comment-page-1/#comment-645</link>
		<dc:creator>Joel Martinez</dc:creator>
		<pubDate>Thu, 19 Mar 2009 13:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://codecube.net/?p=80#comment-645</guid>
		<description>Hi Corey, thanks for giving this a shot ... I can think of two immediate workarounds:

1. re-edit your videos so that the black frame comes at a natural dark point, such as in between scenes.
2. modify the source code to add a &quot;PreVideoEnd&quot; event.  The event would be raised when there were only X seconds left before the end of the video.  The &quot;X&quot; of course could be configurable via property, and would perhaps have a default of .5

I will consider perhaps a more forward looking solution for inclusion in the engine.  But in the meantime, I&#039;d be really interested in hearing the results of your efforts as it may help decide the ultimate solution.

thanks, and good luck!</description>
		<content:encoded><![CDATA[<p>Hi Corey, thanks for giving this a shot &#8230; I can think of two immediate workarounds:</p>
<p>1. re-edit your videos so that the black frame comes at a natural dark point, such as in between scenes.<br />
2. modify the source code to add a &#8220;PreVideoEnd&#8221; event.  The event would be raised when there were only X seconds left before the end of the video.  The &#8220;X&#8221; of course could be configurable via property, and would perhaps have a default of .5</p>
<p>I will consider perhaps a more forward looking solution for inclusion in the engine.  But in the meantime, I&#8217;d be really interested in hearing the results of your efforts as it may help decide the ultimate solution.</p>
<p>thanks, and good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey Paganucci</title>
		<link>http://codecube.net/2008/09/scurvymedia-question/comment-page-1/#comment-642</link>
		<dc:creator>Corey Paganucci</dc:creator>
		<pubDate>Wed, 18 Mar 2009 23:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://codecube.net/?p=80#comment-642</guid>
		<description>Hi,

I&#039;m using your suggested technique of playing videos in sequence, but I&#039;m getting a black frame between videos. I&#039;m using the End callback to play the next video and load the one after that (see pseudocode below). Any suggestions for getting rid of the gap?

Thanks,
Corey

pseudocode:

LoadContent()
{
vid[0].load
vid[1].load
curVid = 0;
vid[curVid].play
}

onVideoEnd()
{
curVid++
vid[curVid].play
vid[curVid+1].load
}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m using your suggested technique of playing videos in sequence, but I&#8217;m getting a black frame between videos. I&#8217;m using the End callback to play the next video and load the one after that (see pseudocode below). Any suggestions for getting rid of the gap?</p>
<p>Thanks,<br />
Corey</p>
<p>pseudocode:</p>
<p>LoadContent()<br />
{<br />
vid[0].load<br />
vid[1].load<br />
curVid = 0;<br />
vid[curVid].play<br />
}</p>
<p>onVideoEnd()<br />
{<br />
curVid++<br />
vid[curVid].play<br />
vid[curVid+1].load<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Martinez</title>
		<link>http://codecube.net/2008/09/scurvymedia-question/comment-page-1/#comment-615</link>
		<dc:creator>Joel Martinez</dc:creator>
		<pubDate>Fri, 05 Dec 2008 13:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://codecube.net/?p=80#comment-615</guid>
		<description>Yes, I haven&#039;t abandoned it :-P I&#039;ve been fairly busy and haven&#039;t had a chance to update it to the latest unfortunately.  That being said, if you get the source download, I&#039;m fairly sure that the project upgrader should update it with no problems and it will be usable in a 3.0 project.

Zune wouldn&#039;t be supported yet as last time I worked on it I was trying to get the code working on the zune, but ran up on some dynamic texture creation issues.  But when I do get back to working on it, this is what I will be striving to resolve.</description>
		<content:encoded><![CDATA[<p>Yes, I haven&#8217;t abandoned it <img src='http://codecube.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  I&#8217;ve been fairly busy and haven&#8217;t had a chance to update it to the latest unfortunately.  That being said, if you get the source download, I&#8217;m fairly sure that the project upgrader should update it with no problems and it will be usable in a 3.0 project.</p>
<p>Zune wouldn&#8217;t be supported yet as last time I worked on it I was trying to get the code working on the zune, but ran up on some dynamic texture creation issues.  But when I do get back to working on it, this is what I will be striving to resolve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sjors Miltenburg</title>
		<link>http://codecube.net/2008/09/scurvymedia-question/comment-page-1/#comment-614</link>
		<dc:creator>Sjors Miltenburg</dc:creator>
		<pubDate>Fri, 05 Dec 2008 12:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://codecube.net/?p=80#comment-614</guid>
		<description>Hi,

Could you please inform me if the scurvy project is still alive (last update is &gt;5 months ago) and if 3.0 is supported?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Could you please inform me if the scurvy project is still alive (last update is &gt;5 months ago) and if 3.0 is supported?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

