<?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>C L Snyder &#187; Unix/Linux</title>
	<atom:link href="http://www.clsnyder.com/WordPress/category/unixlinux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clsnyder.com/WordPress</link>
	<description>Kaizen with Sprezzatura</description>
	<lastBuildDate>Mon, 06 Feb 2012 22:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux: Concatenate Files</title>
		<link>http://www.clsnyder.com/WordPress/2008/05/18/linux-concatenate-files/</link>
		<comments>http://www.clsnyder.com/WordPress/2008/05/18/linux-concatenate-files/#comments</comments>
		<pubDate>Mon, 19 May 2008 02:26:57 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/?p=175</guid>
		<description><![CDATA[How to join multiple .avi or .mpg files This will most likely work on just about any linux distro that includes the ability to install mplayer/mencoder. First, let’s get the right programs. sudo apt-get install mencoder mplayer Now that the &#8230; <a href="http://www.clsnyder.com/WordPress/2008/05/18/linux-concatenate-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How to join multiple .avi or .mpg files<br />
This will most likely work on just about any linux distro that includes the ability to install mplayer/mencoder. First, let’s get the right programs.</p>
<pre class="prettyprint">
sudo apt-get install mencoder mplayer
</pre>
<p>Now that the hard part is out of the way, we’re going to make use of the wonderful cat command. I’d renamed each Bloodspell video as b1.avi &#8211; b7.avi. Now to string them all end to end.</p>
<pre class="prettyprint">
cat b1.avi b2.avi b3.avi b4.avi b5.avi b6.avi b7.avi > bloodspell.avi
</pre>
<p>Now we’re 2/3 of the way there! Stringing together .avi files can cause a breakdown in the sync between video and sound. So, we’ll use mencoder to sort things out.</p>
<pre class="prettyprint">
mencoder -forceidx -oac copy -ovc copy bloodspell.avi.avi -o bloodspell_final.avi
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2008/05/18/linux-concatenate-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix: Find files and list them</title>
		<link>http://www.clsnyder.com/WordPress/2008/05/18/unix-find-files-and-list-them/</link>
		<comments>http://www.clsnyder.com/WordPress/2008/05/18/unix-find-files-and-list-them/#comments</comments>
		<pubDate>Mon, 19 May 2008 00:57:49 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/?p=170</guid>
		<description><![CDATA[find . -name "*.html" &#124; cat > '/Users/clsnyder/Desktop/s4']]></description>
			<content:encoded><![CDATA[<pre class="prettyprint">
find . -name "*.html" | cat > '/Users/clsnyder/Desktop/s4'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2008/05/18/unix-find-files-and-list-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

