<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Behind the Scenes &#187; 2009 &#187; November</title>
	<atom:link href="http://backstar.com/blog/2009/11/feed/" rel="self" type="application/rss+xml" />
	<link>http://backstar.com/blog</link>
	<description>of cutting edge art, media + technology</description>
	<lastBuildDate>Wed, 19 May 2010 18:49:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XviD Files Won&#8217;t Play On Mac</title>
		<link>http://backstar.com/blog/2009/11/20/xvid-files-wont-play-on-mac/</link>
		<comments>http://backstar.com/blog/2009/11/20/xvid-files-wont-play-on-mac/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 16:28:46 +0000</pubDate>
		<dc:creator>Ben Baker-Smith</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Codec]]></category>
		<category><![CDATA[fix]]></category>

		<guid isPermaLink="false">http://backstar.com/blog/?p=549</guid>
		<description><![CDATA[I recently found myself in a troubling situation.  A client had come in to do an edit with a harddrive full of XviD encoded AVI files.  When I tried opening up the first of them on our Intel Power Mac I received a Quicktime error stating that I was missing a required codec [...]]]></description>
			<content:encoded><![CDATA[<p>I recently found myself in a troubling situation.  A client had come in to do an edit with a harddrive full of XviD encoded AVI files.  When I tried opening up the first of them on our Intel Power Mac I received a Quicktime error stating that I was missing a required codec (VLC also would not play the files).  Quicktime linked me to the <a href="http://www.xvidmovies.com/mac/">XviD download page</a>, which was troubling as I knew XviD had been previously installed on that machine.<span id="more-549"></span></p>
<p><a href="http://mediainfo.sourceforge.net/en">MediaInfo</a> confirmed that the files were encoded with XviD, so I went ahead and re-installed the codec, making sure to get an Intel Mac compatible binary.</p>
<p>This did not fix the problem.  Upon rebooting (probably not necessary anyway) I continued to receive the same error, and the same link to the XviD page.</p>
<p><center><a href="http://www.perian.org"><img src="/images/perian_logo.png" style="border:none;" /></a></center></p>
<p>Long story short, a quick install of <a href="http://www.perian.org/">Perian</a> cleared up all my problems.  I&#8217;m still not entirely sure what was at fault; maybe the DivX codec which I believe is a pre-requisite for XviD on Mac.</p>
<p>Anyway, I&#8217;ll wrap with a plug for Perian.  It&#8217;s a great package of Quicktime components, and is super-easy to install.  I use it on every Mac that I use regularly (somehow this one got overlooked, probably due to a recent reformatting).</p>
]]></content:encoded>
			<wfw:commentRss>http://backstar.com/blog/2009/11/20/xvid-files-wont-play-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Append Videos With Mencoder</title>
		<link>http://backstar.com/blog/2009/11/10/append-videos-with-mencoder/</link>
		<comments>http://backstar.com/blog/2009/11/10/append-videos-with-mencoder/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 20:24:25 +0000</pubDate>
		<dc:creator>Ben Baker-Smith</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Encoding]]></category>
		<category><![CDATA[Mencoder]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://backstar.com/blog/?p=538</guid>
		<description><![CDATA[Mencoder, the free audio / video transcoding software packaged with MPlayer, offers a free command line (CLI) method for combining many video clips into one.
Why would you choose this over the multitude of free GUI transcoding programs out there?

Mencoder is super-fast
Allows the process to be scripted
Wide range of codecs
Cross-platform compatible

Once you get the feel for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mplayerhq.hu">Mencoder</a>, the free audio / video transcoding software packaged with MPlayer, offers a free command line (CLI) method for combining many video clips into one.<span id="more-538"></span></p>
<p>Why would you choose this over the multitude of free GUI transcoding programs out there?</p>
<ul>
<li>Mencoder is super-fast</li>
<li>Allows the process to be scripted</li>
<li>Wide range of codecs</li>
<li>Cross-platform compatible</li>
</ul>
<p>Once you get the feel for it, you can append videos much quicker with Mencoder than a more &#8220;user friendly&#8221; GUI program.  And, it works on Linux, Macintosh, and Windows machines, so you don&#8217;t have to learn 3 different programs if you work on multiple operating systems.</p>
<p>Here&#8217;s the basic format of a Mencoder append command:</p>
<pre>
mencoder -oac copy -ovc copy -o 'combined_clip.avi'
'clip1.avi' 'clip2.avi'
</pre>
<p>Simple as that.  The breakdown is as follows:</p>
<ul>
<li><strong>-oac</strong><br />
Tell Mencoder what audio codec to use.  For a complete list of options, check out the <a href="http://www.mplayerhq.hu/design7/info.html#docs">Mencoder documentation</a>.  In this case we have simply used &#8220;copy&#8221;, which will keep the current audio codec the same without transcoding (this option should only be used if the audio codecs are the same for all the clips).</li>
<li><strong>-ovc</strong><br />
Tell Mencoder what video codec to use.  Otherwise, same as above.</li>
<li><strong>-o</strong><br />
Define the paths to input and output files.  First list the output filename, then all the clips in the order which they will be appended.</li>
</ul>
<p>Knowing this, it is easy enough to script the process.  Say I have a whole directory of video files that I want to combine (ex: VID001.AVI, VID002.AVI, VID003.AVI, etc.).  I could use the following ruby script to string them all together in their numbered order:</p>
<pre>
vlist = String.new()
vpath = "/path/to/my/video/directory/"
vdir = Dir.new(vpath)
vdir.each do |v|
  if v.include?(".AVI") == true
    vlist << "\'#{vpath}#{v}\' "
  end
end

cmd = "mencoder -oac copy -ovc copy -o \'combined_clip.avi\'
#{vlist}"
system cmd
</pre>
<p>Save the script as VAppend.rb and run it like so:</p>
<pre>
ruby VAppend.rb
</pre>
<p>(you must be in the same directory as the script in order to run it with the above command)</p>
<p><strong>Final Notes</strong><br />
The command in the first code box is all one line, and the line in the second code box starting with "cmd =" is also all one line that continues onto a second for formatting purposes (in other words, #{vlist}" belongs at the end of the previous line).</p>
]]></content:encoded>
			<wfw:commentRss>http://backstar.com/blog/2009/11/10/append-videos-with-mencoder/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Avidemux Append Limit</title>
		<link>http://backstar.com/blog/2009/11/06/avidemux-maximum-clips/</link>
		<comments>http://backstar.com/blog/2009/11/06/avidemux-maximum-clips/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 15:32:10 +0000</pubDate>
		<dc:creator>Ben Baker-Smith</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Avidemux]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://backstar.com/blog/?p=533</guid>
		<description><![CDATA[I ran into an invisible barrier with my favorite free video editing software, Avidemux: a limit on the number of clips you can draw from for a single project.
Avidemux will only accept segments from up to 100 clips.
If you are appending each clip manually, there may or may not be an error message (this is [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into an invisible barrier with my favorite free video editing software, <a href="http://fixounet.free.fr/avidemux/download.html">Avidemux</a>: a limit on the number of clips you can draw from for a single project.<span id="more-533"></span></p>
<p><strong>Avidemux will only accept segments from up to 100 clips.</strong></p>
<p>If you are appending each clip manually, there may or may not be an error message (this is not how I encountered the limit, so I&#8217;m not sure).  However, if you, like me, are using scripting to append a large number of files, there will be no error message; just a crash file.  This crash file will show one <em>app.load()</em> entry and 99 <em>app.append()</em> entries, and the comments will state something like <em>// 100 Videos</em>, regardless of how many more your script attempted to append.</p>
<p>My workaround was an obvious one: if I have 300 videos to splice together, I create three or more smaller videos first and then splice those together.</p>
<p>For example&#8230;</p>
<ul>
<li>Vid_A.avi = clips 1 &#8211; 100</li>
<li>Vid_B.avi = clips 101 &#8211; 200</li>
<li>Vid_C.avi = clips 201 &#8211; 300</li>
</ul>
<p>&#8230;and then&#8230;</p>
<ul>
<li>Vid_Final.avi = Vid_A.avi + Vid_B.avi + Vid_C.avi</li>
</ul>
<p>Of course, this takes a little longer, but when automated from the command line with another script, it&#8217;s not so bad.</p>
<p>If anyone else has a different tactic for dealing with this limit, please leave it in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://backstar.com/blog/2009/11/06/avidemux-maximum-clips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blu-Ray Disc Won&#8217;t Play</title>
		<link>http://backstar.com/blog/2009/11/03/blu-ray-disc-wont-play/</link>
		<comments>http://backstar.com/blog/2009/11/03/blu-ray-disc-wont-play/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:38:26 +0000</pubDate>
		<dc:creator>Ben Baker-Smith</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[BD]]></category>
		<category><![CDATA[Blu-Ray]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[HD]]></category>

		<guid isPermaLink="false">http://backstar.com/blog/?p=523</guid>
		<description><![CDATA[Have you ever tried to watch a brand new Blu-Ray disc only to find that it won&#8217;t play in your player?  A player you know works with other discs?
Now, assuming that you haven&#8217;t recently dropped the player, or rubbed sandpaper across the bottom surface of the disc, this could very well be a firmware [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever tried to watch a brand new Blu-Ray disc only to find that it won&#8217;t play in your player?  A player you know works with other discs?</p>
<p>Now, assuming that you haven&#8217;t recently dropped the player, or rubbed sandpaper across the bottom surface of the disc, this could very well be a firmware issue.<span id="more-523"></span></p>
<p>Since Blu-Ray is a relatively new format, the technology is still being refined.  Some newer discs may contain data that is incompatible with earlier generations of players, resulting in playback problems.</p>
<p>Luckily, this is relatively easy to resolve.  All you need is the following:</p>
<ul>
<li>Computer</li>
<li>Internet Connection</li>
<li>CD Burner</li>
<li>Blank CD-R</li>
</ul>
<p>First, write down the model number of your Blu-Ray player.  Then look for your model on this page:</p>
<p><a href="http://www.blu-ray.com/firmware/">http://www.blu-ray.com/firmware/</a></p>
<p>The download link on your model&#8217;s page will bring you to the official company website (Sony, Panasonic, etc.) where you can follow their directions to download and update your firmware.  This will involve downloading a zipped .iso file (disc image) and burning it to a CD, which you then load into the player and input a series of menu commands.</p>
<p>You should <strong>ALWAYS</strong> follow the instructions provided by the manufacturer when upgrading your firmware.  Failure to follow the steps they outline may &#8220;brick&#8221; your player, effectively converting it into a doorstop / giant paperweight.</p>
<p><center><img src="http://www.blogcdn.com/www.joystiq.com/media/2006/11/ps3smashed.jpg" /><br />
yeah, i know this is a PS3.</center></p>
<p>If you cannot find your model at the above link, search for the brand&#8217;s site directly, locate your player in the product, download, or support pages, and there should be links to firmware upgrades there.</p>
<p>Once completed you should be able to play the most recent Blu-Ray discs without any problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://backstar.com/blog/2009/11/03/blu-ray-disc-wont-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

