<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>runtime360.com</title>
	<link>http://runtime360.com</link>
	<description>on homebrew and misc stuff</description>
	<pubDate>Wed, 02 Jan 2008 16:00:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>
	<language>en</language>
			<item>
		<title>Wake, Shutdown and Reboot On LAN</title>
		<link>http://runtime360.com/2007/12/30/wake-shutdown-and-reboot-on-lan/</link>
		<comments>http://runtime360.com/2007/12/30/wake-shutdown-and-reboot-on-lan/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 21:22:49 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Blog</category>
		<guid isPermaLink="false">http://runtime360.com/2007/12/30/wake-shutdown-and-reboot-on-lan/</guid>
		<description><![CDATA[With my earlier attempt at power saving somewhat thwarted I decided to look at a different approach.  I didn&#8217;t realise it at the time but the behaviour of Windows Home Server that causes it to periodically wake up is in fact inherent to Windows 2003 Server.  Servers typically run 24/7 so this behaviour [...]]]></description>
			<content:encoded><![CDATA[<p>With my earlier <a href="http://runtime360.com/2007/12/23/windows-home-server-power-saving/">attempt</a> at power saving somewhat thwarted I decided to look at a different approach.  I didn&#8217;t realise it at the time but the behaviour of Windows Home Server that causes it to periodically wake up is in fact inherent to Windows 2003 Server.  Servers typically run 24/7 so this behaviour is natural enough.</p>
<p><a href="http://en.wikipedia.org/wiki/Wake_on_lan">Wake On LAN</a> has been around for ages but I never really looked at it until now (since Windows Home Server won&#8217;t power up of it&#8217;s own accord!).  Setting up Wake On LAN can be quite <a href="http://www.mutchek.com/blog/2004/12/16/wake-on-lan-over-the-internet/">tricky</a>, there are quite a few <a href="http://support.solarwinds.net/help/Wake-On-Lan/Config.htm">pre-requisites</a> that you need to satisfy before you can get it working.  Even when you&#8217;re &#8216;done&#8217;, there are still the &#8217;shutdown&#8217; and &#8217;scheduling&#8217; aspects to sort out.</p>
<p>Over the past couple of days I&#8217;ve put together a small web application <a href="http://runtime360.com/projects/remote-wol/">here</a> that allows me to schedule wake-up, shutdown, and reboot events for computers across the Internet.  In order to handle Shutdown/Standby/Hibernate and Reboot on LAN I created a lightweight NT service to listen out for packets on a given UDP port.  The packet structure is very similar to the existing magic packet used by Wake on LAN, but different enough so that the intention (wake, shutdown, etc.) is not confused.</p>
<table>
<tr>
<td valign='top' style='width: 210px'><img src="http://wol.runtime360.com/computers2.gif" alt="Managing computers in a home network" /></td>
<td valign='top' style='width: 200px'><img src="http://wol.runtime360.com/computer2.gif" alt="Editing network card details" /></td>
</tr>
</table>
<p>I&#8217;m still testing the web application and service (so far all indications are positive), but if you&#8217;re interested in helping test please drop a line in the comments area.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2007/12/30/wake-shutdown-and-reboot-on-lan/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Windows Home Server Power Saving</title>
		<link>http://runtime360.com/2007/12/23/windows-home-server-power-saving/</link>
		<comments>http://runtime360.com/2007/12/23/windows-home-server-power-saving/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 16:51:27 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Blog</category>
		<guid isPermaLink="false">http://runtime360.com/2007/12/23/windows-home-server-power-saving/</guid>
		<description><![CDATA[

&#160;



I&#8217;ve been toying with the idea of moving from a NAS solution to WHS for some time due to the flexibility it offers, and what better way to discover how easy it is to integrate with WHS, than to write an add-in.


Generally by about 2am everyone in my family is usually asleep; and those with [...]]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td width='72'><a href='http://project.runtime360.com/standby/images/power-settings.gif' rel='lightbox' title='Windows Home Server Power Saving'><img src='http://project.runtime360.com/standby/images/power-settingst.gif' width='66' height='66' alt='Windows Home Server Power Saving - Settings' /></a></td>
<td valign="top">I&#8217;ve been toying with the idea of moving from a NAS solution to WHS for some time due to the flexibility it offers, and what better way to discover how easy it is to integrate with WHS, than to write an add-in.</td>
</tr>
</table>
<p>Generally by about 2am everyone in my family is usually asleep; and those with a vested interest in the services offered by WHS (i.e. me) are usually at work until 5-6pm.  That&#8217;s about 15 hours a day during which WHS consumes approx 55 W idling.  Put another way, the cost to run my server 24/7 is over £52 a year; idle time accounts for almost 60% of that. </p>
<p>It seems reasonable to have WHS transition into standby or hibernation around 2am until required at 5pm (weekends excluded); but surprisingly there is no easy way to do this out-of-the-box, so I created a small add-in to do just this.</p>
<p><strong>How it works</strong></p>
<p>The add-in is an MSI package (46KB) that you copy into your Windows Home Server&#8217;s Add-In directory; you then use the Windows Home Server Console to install the add-in.  A more detailed explanation can be found <a href="http://www.practicallynetworked.com/howto/120307windows_home_server_addins.htm">here</a>.</p>
<p>In addition to the assembly that implements the add-in and a helper application, the package contains a <a href="http://www.codeproject.com/KB/cs/tsnewlib.aspx">class library</a> (written by <a href="http://www.codeproject.com/script/Membership/Profiles.aspx?mid=39096">Dennis Austin</a>) which facilitates access to the Task Manager.  The very light-weight helper application (PollStandby) is executed once every hour and determines whether the system is idle, and whether it is time to put WHS to sleep.  Daily, one of seven scheduled tasks is run, ensuring that the system awakes at the appointed time.  </p>
<p><strong>Usage</strong></p>
<p>Click on the &#8216;Settings&#8217; button in the Windows Home Server Console, and then click on &#8216;Power Saving&#8217;.  Here you will be able to specify whether your system should transition to standby or hibernation (if you&#8217;ve enabled it on your system); additionally you can specify the &#8216;bed-time&#8217; schedule.  The first time you enable &#8216;Power Saving&#8217;, you will need to provide authorization (i.e. username and password) since the Task Manager requires a valid account in order to run the scheduled tasks.</p>
<p><strong>* Update / Note *</strong></p>
<p>Over the course of the afternoon I&#8217;ve noticed that WHS likes to wake up of it&#8217;s own accord to perform some task at regular intervals, I&#8217;ll need to investigate further, so I&#8217;ve withdrawn the download link.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2007/12/23/windows-home-server-power-saving/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>New blood and Transcode 360 for Vista released</title>
		<link>http://runtime360.com/2006/12/12/new-blood-and-transcode-360-for-vista-released/</link>
		<comments>http://runtime360.com/2006/12/12/new-blood-and-transcode-360-for-vista-released/#comments</comments>
		<pubDate>Tue, 12 Dec 2006 19:58:03 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Transcoding</category>
		<guid isPermaLink="false">http://runtime360.com/2006/12/12/new-blood-and-transcode-360-for-vista-released/</guid>
		<description><![CDATA[If you were a little concerned over the future of Transcode 360; allow me to allay those fears.  Its been only a fortnight since I shared a limited release of the source code with James Botham, and to be perfectly honest I&#8217;m really impressed with how quickly he has gotten to grips with it.
James [...]]]></description>
			<content:encoded><![CDATA[<p>If you were a little concerned over the future of Transcode 360; allow me to allay those fears.  Its been only a fortnight since I shared a limited release of the source code with <a href="http://www.codecreaters.co.uk">James Botham</a>, and to be perfectly honest I&#8217;m really impressed with how quickly he has gotten to grips with it.</p>
<p>James has completed porting the project to .NET 2.0, delt with the changes introduced by Vista Media Center, deciphered my arcane installer script and written some Windows Firewall helper apps to simplify installation.   His enthusiasm has even rubbed off on me, such that I&#8217;m keen to dabble with <a href="http://mobilewares.spaces.live.com/PersonalSpace.aspx?_c02_owner=1">MCML</a> and perhaps work on a newer, flashier, user interface for the Vista crowd.  </p>
<p>If you&#8217;re running Vista RTM you may be interested to know that James has released an early beta build, be sure to check out the release notes and forum posts as there are a couple of known issues that can easily be worked around.  </p>
<p>Download Transcode 360 Vista RTM Beta over <a href="http://www.codecreaters.co.uk/Transcode360Setup.exe">here</a> (or <a href="http://jmel.us/runtime/alpha/Transcode360Setup-Vista.zip">here</a>) and feel free to leave feedback in the <a href="http://www.runtime360.com/forums/read.php?3,3196">forums</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/12/12/new-blood-and-transcode-360-for-vista-released/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>TVersity on-the-fly movie transcoding (Update)</title>
		<link>http://runtime360.com/2006/11/25/tversity-on-the-fly-movie-transcoding/</link>
		<comments>http://runtime360.com/2006/11/25/tversity-on-the-fly-movie-transcoding/#comments</comments>
		<pubDate>Sat, 25 Nov 2006 02:02:40 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Transcoding</category>
		<guid isPermaLink="false">http://runtime360.com/2006/11/25/tversity-on-the-fly-movie-transcoding/</guid>
		<description><![CDATA[Just weeks after the Fall Update introduced UPNP video client functionality to the Xbox 360, the clever chaps at TVersity are the first to offer a UPNP server featuring a realtime transcoding solution targeting the Xbox 360 in early beta form.
In short this means that users of Windows XP (and other Windows platforms) can now [...]]]></description>
			<content:encoded><![CDATA[<p>Just weeks after the <a href="http://runtime360.com/2006/10/30/the-fall-update/">Fall Update</a> introduced UPNP video client functionality to the Xbox 360, the clever chaps at <a href="http://www.tversity.com">TVersity</a> are the first to offer a <a href="http://en.wikipedia.org/wiki/Upnp#UPnP_AV_MediaServers">UPNP server</a> featuring a realtime transcoding solution targeting the Xbox 360 in early beta form.</p>
<p>In short this means that users of Windows XP (and other Windows platforms) can now automatically stream their video library to the Xbox 360, to some extent irrespective of the file format and encoding used.  E.g. DivX, XViD, etc.</p>
<table>
<tr>
<td width="204" height="150"><img src="http://runtime360.com/img/site/blog/xbox360_video_pc.jpg" alt="Xbox 360 Media Blade (Video)" /></td>
<td valign="top">There is a limitation with regards to seeking while transcoding and the transcoding thread priority is a bit too high, but beyond that I found TVersity very easy to get up and running.<br/><br/>I haven&#8217;t yet had the chance to see how it handles AC3.  In any case, no doubt the solution will improve over time, but at this early stage its looking very promising indeed!</td>
</tr>
</table>
<p>I thoroughly recommend you check out TVersity as it is in my opinion a much better solution than Transcode 360 for several reasons. For starters T360 requires a Media Center PC, but perhaps more importantly, from an implementation perspective T360 has a lot of dependencies that make installation more complex than I&#8217;d like.</p>
<p>The beauty of TVersity as a solution is that its (a) UPNP standards based (b) supports both Windows XP and Windows 2000 (c) designed to work with many more devices than just the Xbox 360.  </p>
<p>More information after the <a href="http://www.xbox-scene.com/xbox1data/sep/EEyuuEkVykRSZOILsw.php">jump</a>.</p>
<p><a href="http://www.tversity.com/">TVersity Official Website</a></p>
<p>You&#8217;ll probably want to edit the Settings to increase the resolution of the transcoded video to compensate for the poor quality scaling algorithm the Xbox 360&#8217;s UPNP client applies.  I find that 640&#215;480 works pretty well but if you have the horsepower its almost certainly better if you can match the 360&#8217;s native resolution.  The 360&#8217;s client currently only supports WMV video, so inherently more CPU resources are needed.</p>
<p><strong>Update</strong>: Having played around with TVersity some more I have to qualify my recommendation since theres an additional issue worth considering.  Previously I mentioned how poorly the Xbox 360 UPNP video client is at upscaling, a bigger issue is the client&#8217;s terrible user-interface.  All video files and folders are flattened out into a single list, which can be very inconvenient when you have to scroll through 100&#8217;s of files to find the one you want; both issues are outside of TVersity&#8217;s control, so let&#8217;s hope Microsoft gets on the case and addresses them in their next update.</p>
<p>And Microsoft while you&#8217;re at it, how about some MPEG 2 love?  Forcing UPNP servers to transcode to WMV just isn&#8217;t right!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/11/25/tversity-on-the-fly-movie-transcoding/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>The Fall Update</title>
		<link>http://runtime360.com/2006/10/30/the-fall-update/</link>
		<comments>http://runtime360.com/2006/10/30/the-fall-update/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 22:46:42 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Blog</category>
		<guid isPermaLink="false">http://runtime360.com/2006/10/30/the-fall-update/</guid>
		<description><![CDATA[



I&#8217;m of course referring to Microsoft&#8217;s latest dashboard update (and not this long overdue post!).  Those of us hoping for a wider range of video formats will have been disappointed to find that the streaming media enhancements on offer are limited to WMV over Windows Media Player 11 and Windows Media Connect.



I should point [...]]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td width='196px' margin='4px'><img src="http://runtime360.com/img/site/blog/xbox360_dash.jpg" alt="Xbox 360 Dashboard" /></td>
<td margin='4px' padding='4px'>
<p>I&#8217;m of course referring to Microsoft&#8217;s latest dashboard <a href="http://www.xbox.com/en-US/community/news/2006/1030-novemberupdate-completelist.htm">update</a> (and not this long overdue post!).  Those of us hoping for a wider range of video formats will have been disappointed to find that the streaming media enhancements on offer are limited to WMV over Windows Media Player 11 and Windows Media Connect.</p>
</td>
</tr>
<tr>
<td colspan='2'>I should point out that non-MCE computers will not be able to take advantage of transcoding solutions (including T360) until developers can figure out how to &#8216;plug-in&#8217; to Windows Media Player 11 and/or Windows Media Connect.  Though if Microsoft is using a standards based UPNP implementation (which I believe it has with respect to music and photos), then I would expect someone to knock up a transcoding solution not too far down the line - that someone though, is unlikely to be me.
</td>
</tr>
<tr>
<td colspan='2'>&nbsp;&nbsp;<br />
You&#8217;ll have noticed that since Beta 4 I&#8217;ve been updating the site less frequently.  While I&#8217;m keen on my 360 and software development in general, my priorities have changed with the happy discovery that I&#8217;m going to be a Dad very shortly!  I will no doubt still find the time to dabble/tinker about with XNA and Media Center stuff in general, but likely not to the same extent I could in my <a href="http://www.xboxmediacenter.com/">XBMC</a> hay day.
</td>
</tr>
<tr>
<td colspan='2'>&nbsp;&nbsp;<br />
So what of T360, My Movies and Vista?  In the run up to Xmas I&#8217;ll be tidying up the code, versioning (releasing a 1.0 final build) and updating the publically accessible subversion source code repo <a href="http://forge.novell.com/modules/xfmod/svn/svnpage.php/transcode360/">here</a>.  I&#8217;m definately open to offers of help managing the forums, and if there are any keen C# developers out there I would consider handing over the reins (I&#8217;d need to evaluate a patch/diff submission to get an idea of apptitude etc.).
</td>
</tr>
<tr>
<td colspan='2'>&nbsp;&nbsp;<br />
There is finally a beta build available on the My Movies website (forums) which can be evaluated.  My Movies does not include T360, you need to install both.  When My Movies is running over an Extender (e.g. 360) it will detect that T360 is installed and offer you the option to stream the movie from within the My Movies interface.
</td>
</tr>
<tr>
<td colspan='2'>&nbsp;&nbsp;<br />
A couple of weeks ago I had the opportunity to replace my production Media Center 2005 build with Vista with the view of doing some T360 development/testing.  Unfortunately I encountered a number of hardware compatibility issues with my setup which meant that I had to revert to MCE2005.  I&#8217;m still very keen to put together an easy to install Vista-friendly build, and with some help from the forum regulars I plan to get this done around the same time as 1.0 (i.e. before the end of year - OK I hope to get it done a lot sooner, but I&#8217;m giving myself plenty of slack!).
</td>
</tr>
<tr>
<td colspan='2'>&nbsp;&nbsp;<br />
In winding down the project, I want to thank all of you guys for your support over the past months, its been fun working on this project and I&#8217;m thrilled that its been a help to so many folks.  If past experience is anything to go by, it won&#8217;t be too long before I get the itch to cut some code and spin up another project, I just need to find the elusive secret to balancing work, family life and homebrew; if anyone has any insights please let me know!!
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/10/30/the-fall-update/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Developer documentation available&#8230; finally!</title>
		<link>http://runtime360.com/2006/08/05/developer-documentation-available-finally/</link>
		<comments>http://runtime360.com/2006/08/05/developer-documentation-available-finally/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 14:45:53 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Transcoding</category>
		<guid isPermaLink="false">http://runtime360.com/2006/08/05/developer-documentation-available-finally/</guid>
		<description><![CDATA[Folks looking to integrate T360 with their own apps will be pleased to know that I finally got off my managed to find the time to knock up a quick primer and some sample code demonstrating how to query and control Transcode 360.  For more information follow the link.
In related news, I&#8217;ve had word [...]]]></description>
			<content:encoded><![CDATA[<p>Folks looking to integrate T360 with their own apps will be pleased to know that I finally <strike>got off my</strike> managed to find the time to knock up a quick primer and some sample code demonstrating how to query and control Transcode 360.  For more information follow the <a href="http://runtime360.com/projects/transcode-360/development/">link</a>.</p>
<p>In related news, I&#8217;ve had word from Brian of <a href="http://www.mymovies.name/">My Movies</a> confirming that the integration work is still going ahead and is now in its final stages so stay tuned&#8230;</p>
<p>I also found some time to squash a few long-standing bugs and am currently testing a new version of T360 on my new dual core Media Center setup.  I&#8217;m not sure whether it might make sense to time its release with My Movies.  I should be receiving a release candidate any day now so I&#8217;ll defer the decision until then.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/08/05/developer-documentation-available-finally/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Hiatus</title>
		<link>http://runtime360.com/2006/07/03/hiatus/</link>
		<comments>http://runtime360.com/2006/07/03/hiatus/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 21:18:03 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Blog</category>
		<guid isPermaLink="false">http://runtime360.com/2006/07/03/hiatus/</guid>
		<description><![CDATA[Wow over a month without any update, this is a first even for me! What&#8217;s worse is I can&#8217;t even blame it on my love of the 360, just look at my gamerscore, hardly any progression (ok it could be I&#8217;m just crap at games!).
Despite that, believe it or not I haven&#8217;t forgotten about Transcode [...]]]></description>
			<content:encoded><![CDATA[<p>Wow over a month without any update, this is a first even for me! What&#8217;s worse is I can&#8217;t even blame it on my love of the 360, just look at my gamerscore, hardly any progression (ok it could be I&#8217;m just crap at games!).</p>
<p>Despite that, believe it or not I haven&#8217;t forgotten about Transcode 360; things are progressing: <a href="http://www.mymovies.name/">My Movies</a> author Brian Binnerup is currently evaluating the interface I&#8217;ve provided him and I&#8217;m pretty hopeful any change requests that come my way can be quickly turned round.</p>
<p>Other than that &#8217;tis been a crappy month: my DSL service is on the blink (intermittent fault - connection drops every 3-10 minutes as the day warms up or cools down); the <strike>deathtrap</strike> car broke down (intermittent fault - engine cuts out at low speeds and unpredictably at 60 mph - nice!); and England get <a href="http://news.bbc.co.uk/sport1/hi/football/euro_2004/3830451.stm">knocked out</a> of the World Cup.</p>
<p>Needless to say I&#8217;m looking forward to a change in fortune&#8230;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/07/03/hiatus/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>HD-DVD or Blu-ray?</title>
		<link>http://runtime360.com/2006/05/27/jonzing-for-hd-dvd-or-blu-ray/</link>
		<comments>http://runtime360.com/2006/05/27/jonzing-for-hd-dvd-or-blu-ray/#comments</comments>
		<pubDate>Sat, 27 May 2006 00:32:41 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Blog</category>
		<guid isPermaLink="false">http://runtime360.com/2006/05/27/jonzing-for-hd-dvd-or-blu-ray/</guid>
		<description><![CDATA[For a long time now I&#8217;ve managed without investing in a fancy-schmancy upscaling DVD player, the logic being that I&#8217;d kill two birds with one stone when I buy into the new high definition formats.
Despite my affection for XBMC I cannot hand on heart say I&#8217;m satisified with its DVD performance.  This prompted some [...]]]></description>
			<content:encoded><![CDATA[<p>For a long time now I&#8217;ve managed without investing in a fancy-schmancy upscaling DVD player, the logic being that I&#8217;d kill two birds with one stone when I buy into the new high definition formats.</p>
<p>Despite my affection for <a href="http://www.xboxmediacenter.com">XBMC</a> I cannot hand on heart say I&#8217;m satisified with its DVD performance.  This prompted some soul searching - how much longer could I hold out with a format war only just looming on the horizon?  And once thats over, would I be prepared to pay hand over fist for hi-def versions of movies I already own on DVD?   </p>
<p>I recently had the opportunity to compare a regular DVD (rendered by a high-performance DVD player through a digital connection), to its 1080i high-definition equivalent (rendered by an HTPC), and while it was easy to see substantially increased detail in the hi-def source, particularly in large panaromic shots with plenty of movement, I really had to question whether I could justify re-purchasing the title in one of the new formats at what I guess will amount to almost four times the price.</p>
<p>Of course this particular dilemma isn&#8217;t unique to me.  Can the next generation formats come soon enough for you?  Are you prepared to buy into a particular format before a clear winner emerges?  Do you plan to replace your existing DVD collection?  I&#8217;m keen to hear your thoughts.</p>
<p>&#8212;</p>
<p>On a completely unrelated note the author of <a href="http://www.mymovies.name/">My Movies</a> is getting married today (congratulations Brian!); while he&#8217;s happily discovering married life (poor soul!) I plan to claw back some time and catch up on Oblivion and some of the games I bought a while back that are still snuggly tucked away with their shrink-wrapping intact.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/05/27/jonzing-for-hd-dvd-or-blu-ray/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>State of play</title>
		<link>http://runtime360.com/2006/05/23/state-of-play/</link>
		<comments>http://runtime360.com/2006/05/23/state-of-play/#comments</comments>
		<pubDate>Tue, 23 May 2006 13:02:27 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Transcoding</category>
		<guid isPermaLink="false">http://runtime360.com/2006/05/23/state-of-play/</guid>
		<description><![CDATA[I realise its been a while since my last post, what with E3 and a couple of personal matters that took priority, everything else took a backseat.   Despite that, I&#8217;ve made a start on My Movies integration and things are looking very promising with the author of My Movies being equally enthusiastic about [...]]]></description>
			<content:encoded><![CDATA[<p>I realise its been a while since my last post, what with E3 and a couple of personal matters that took priority, everything else took a backseat.   Despite that, I&#8217;ve made a start on My Movies integration and things are looking very promising with the author of My Movies being equally enthusiastic about what will result from this collaboration.</p>
<p>You&#8217;ve probably noticed that I&#8217;m no longer posting in the forums as frequently as I have in the past (with the exception of the Priority Support forum which I do my best to attend).  The reality is that its not possible for me to spend hours answering posts, many raised by new users, so I&#8217;m counting on help from the community to generally point people in the right direction.  </p>
<p>That said, I&#8217;m pretty satisfied that many of the issues raised have been addressed in some form, so if you&#8217;re new to the forums - keep digging and I&#8217;m sure you&#8217;ll find answers.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/05/23/state-of-play/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Beta 4 - Get It While Its Hot!</title>
		<link>http://runtime360.com/2006/05/02/beta-4-get-it-while-its-hot/</link>
		<comments>http://runtime360.com/2006/05/02/beta-4-get-it-while-its-hot/#comments</comments>
		<pubDate>Tue, 02 May 2006 13:22:13 +0000</pubDate>
		<dc:creator>runtime 360</dc:creator>
		
	<category>Transcoding</category>
		<guid isPermaLink="false">http://runtime360.com/2006/05/02/beta-4-get-it-while-its-hot/</guid>
		<description><![CDATA[This new release of Transcode 360 features a user interface for managing your settings as well as a number of substantial improvements:




There is a new &#8216;Automatic&#8217; installation option that will run T360 in the task notification area (system tray); this makes configuration super-easy and mitigates the network permissions issues some users encountered.



Both 2 and 6 [...]]]></description>
			<content:encoded><![CDATA[<p>This new release of Transcode 360 features a user interface for managing your settings as well as a number of substantial improvements:</p>
<table>
<tr>
<td width='72'><a href='http://project.runtime360.com/t360/images/settings/audio-settings.gif' rel='lightbox' title='AC3 5.1 and Audio Synchronization'><img src='http://project.runtime360.com/t360/images/settings/audio-settingst.gif' width='66' height='66' alt='User Interface - Settings' /></a></td>
<td valign="top">
<p>There is a new &#8216;Automatic&#8217; installation option that will run T360 in the task notification area (system tray); this makes configuration super-easy and mitigates the network permissions issues some users encountered.</p>
</td>
</tr>
</table>
<p>Both 2 and 6 channel (5.1) AC3 is supported and the AV sync issue affecting NTSC content has been fixed.  Note that due to reliability issues Forward/Backward Skip are disabled while streaming AC3 soundtracks.</p>
<p>In addition to regular playback of XviD and DivX, Transcode 360 supports DVD ISO and VIDEO_TS folder streaming with subtitles; determining the best combination of soundtrack/subtitles appropriate to you based on your locale.</p>
<p>Download the latest version of Transcode 360 <a href="http://runtime360.com/projects/transcode-360/transcode-360-download">here</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://runtime360.com/2006/05/02/beta-4-get-it-while-its-hot/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
