<?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>life, liberty, and the pursuit of open standards</title>
	<atom:link href="http://wrevolution.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://wrevolution.org</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:57:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Florida: Jams and Meetups and Camps! Oh My!</title>
		<link>http://wrevolution.org/2010/02/14/florida-jams-and-meetups-and-camps-oh-my/</link>
		<comments>http://wrevolution.org/2010/02/14/florida-jams-and-meetups-and-camps-oh-my/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 17:08:23 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[florida]]></category>
		<category><![CDATA[global jam]]></category>
		<category><![CDATA[loco team]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=492</guid>
		<description><![CDATA[We had a great LoCo team meeting Tuesday night.  We usually do. The Ubuntu Global Jam is approaching, and in Florida organization is underway.  It looks like we may be able to hit my previously stated goal of having 5 Jams here in Florida.  So far we have definite plans in Gainesville and Orlando, and [...]]]></description>
			<content:encoded><![CDATA[<p>We had a great LoCo team meeting Tuesday night.  We usually do.</p>
<p>The Ubuntu Global Jam is approaching, and in Florida organization is underway.  It looks like we may be able to hit <a href="http://wrevolution.org/2010/02/03/congrats-huats-back-in-the-ubu-groove/">my previously stated goal</a> of having 5 Jams here in Florida.  So far we have definite plans in Gainesville and Orlando, and we have team members who have stepped up to start organizing in Miami/Ft. Lauderdale and Tampa.  Nothing to confirm on the last two yet, but we&#8217;re making headway.  We also have team members who have already started pre-planning for <a href="https://wiki.ubuntu.com/FloridaTeam/Projects/LucidReleaseParties">Lucid Release Parties</a>!</p>
<p>With <a href="http://2010.fldrupalcamp.org/">DrupalCamp</a>, <a href="http://carsonified.com/">FOWA</a>, <a href="http://www.barcamporlando.org/">BarCamp Orlando</a>,  and <a href="http://barcampmiami10.eventbrite.com/">BarCamp Miami</a> coming up, in addition to our regular <a href="http://www.meetup.com/SpaceCoast-Linux">meetups</a> and <a href="http://www.meetup.com/Tampa-Linux/calendar/12044764/">public service</a>, its going to be a busy couple of months!</p>
<p>We&#8217;ll be out there advocating, installing, supporting, and learning!</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2010/02/14/florida-jams-and-meetups-and-camps-oh-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg commands</title>
		<link>http://wrevolution.org/2010/02/04/ffmpeg/</link>
		<comments>http://wrevolution.org/2010/02/04/ffmpeg/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 06:04:59 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=490</guid>
		<description><![CDATA[Found this nice summary of ffmpeg commands on catswhocode.com: http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs &#8211; Ffmpeg Getting infos from a video file ffmpeg -i video.avi Turn X images to a video sequence ffmpeg -f image2 -i image%d.jpg video.mpg This command will transform all the images from the current directory (named image1.jpg, image2.jpg, etc…) to a video file named video.mpg. [...]]]></description>
			<content:encoded><![CDATA[<p>Found this nice summary of ffmpeg commands on catswhocode.com:<br />
<a href="http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs"> http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs</a></p>
<p>&#8211;</p>
<h1>Ffmpeg</h1>
<h5>Getting infos from a video file</h5>
<pre>ffmpeg -i video.avi</pre>
<h5>Turn X images to a video sequence</h5>
<pre>ffmpeg -f image2 -i image%d.jpg video.mpg</pre>
<p>This command will transform all the images from the current<br />
directory (named image1.jpg, image2.jpg, etc…) to a video file named<br />
video.mpg.</p>
<h5>Turn a video to X images</h5>
<pre>ffmpeg -i video.mpg image%d.jpg</pre>
<p>This command will generate the files named image1.jpg, image2.jpg, …</p>
<p>The following image formats are also availables : PGM, PPM, PAM, PGMYUV, JPEG, GIF, PNG, TIFF, SGI.</p>
<h5>Encode a video sequence for the iPpod/iPhone</h5>
<pre>ffmpeg -i source_video.avi input -acodec aac -ab 128kb -vcodec mpeg4 -b 1200kb -mbd 2 -flags +4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 320x180 -title X final_video.mp4</pre>
<p>Explanations :</p>
<ul>
<li>Source : source_video.avi</li>
<li>Audio codec : aac</li>
<li>Audio bitrate : 128kb/s</li>
<li>Video codec : mpeg4</li>
<li>Video bitrate : 1200kb/s</li>
<li>Video size : 320px par 180px</li>
<li>Generated video : final_video.mp4</li>
</ul>
<h5>Encode video for the PSP</h5>
<pre>ffmpeg -i source_video.avi -b 300 -s 320x240 -vcodec xvid -ab 32 -ar 24000 -acodec aac final_video.mp4</pre>
<p>Explanations :</p>
<ul>
<li>Source : source_video.avi</li>
<li>Audio codec : aac</li>
<li>Audio bitrate : 32kb/s</li>
<li>Video codec : xvid</li>
<li>Video bitrate : 1200kb/s</li>
<li>Video size : 320px par 180px</li>
<li>Generated video : final_video.mp4</li>
</ul>
<h5>Extracting sound from a video, and save it as Mp3</h5>
<pre>ffmpeg -i source_video.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 sound.mp3</pre>
<p>Explanations :</p>
<ul>
<li>Source video : source_video.avi</li>
<li>Audio bitrate : 192kb/s</li>
<li>output format : mp3</li>
<li>Generated sound : sound.mp3</li>
</ul>
<h5>Convert a wav file to Mp3</h5>
<pre>ffmpeg -i son_origine.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 son_final.mp3</pre>
<h5>Convert .avi video to .mpg</h5>
<pre>ffmpeg -i video_origine.avi video_finale.mpg</pre>
<h5>Convert .mpg to .avi</h5>
<pre>ffmpeg -i video_origine.mpg video_finale.avi</pre>
<h5>Convert .avi to animated gif(uncompressed)</h5>
<pre>ffmpeg -i video_origine.avi gif_anime.gif</pre>
<h5>Mix a video with a sound file</h5>
<pre>ffmpeg -i son.wav -i video_origine.avi video_finale.mpg</pre>
<h5>Convert .avi to .flv</h5>
<pre>ffmpeg -i video_origine.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv video_finale.flv</pre>
<h5>Convert .avi to dv</h5>
<pre>ffmpeg -i video_origine.avi -s pal -r pal -aspect 4:3 -ar 48000 -ac 2 video_finale.dv</pre>
<p>Or:</p>
<pre>ffmpeg -i video_origine.avi -target pal-dv video_finale.dv</pre>
<h5>Convert .avi to mpeg for dvd players</h5>
<pre>ffmpeg -i source_video.avi -target pal-dvd -ps 2000000000 -aspect 16:9 finale_video.mpeg</pre>
<p>Explanations :</p>
<ul>
<li>target pal-dvd : Output format</li>
<li>ps 2000000000 maximum size for the output file, in bits (here, 2 Gb)</li>
<li>aspect 16:9 : Widescreen</li>
</ul>
<h5>Compress .avi to divx</h5>
<pre>ffmpeg -i video_origine.avi -s 320x240 -vcodec msmpeg4v2 video_finale.avi</pre>
<h5>Compress Ogg Theora to Mpeg dvd</h5>
<pre>ffmpeg -i film_sortie_cinelerra.ogm -s 720x576 -vcodec mpeg2video -acodec mp3 film_terminée.mpg</pre>
<h5>Compress .avi to SVCD mpeg2</h5>
<p>NTSC format:</p>
<pre>ffmpeg -i video_origine.avi -target ntsc-svcd video_finale.mpg</pre>
<p>PAL format:</p>
<pre>ffmpeg -i video_origine.avi -target pal-svcd video_finale.mpg</pre>
<h5>Compress .avi to VCD mpeg2</h5>
<p>NTSC format:</p>
<pre>ffmpeg -i video_origine.avi -target ntsc-vcd video_finale.mpg</pre>
<p>PAL format:</p>
<pre>ffmpeg -i video_origine.avi -target pal-vcd video_finale.mpg</pre>
<h5>Multi-pass encoding with ffmpeg</h5>
<pre>ffmpeg -i fichierentree -pass 2 -passlogfile ffmpeg2pass fichiersortie-2</pre>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2010/02/04/ffmpeg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congrats Huats!  &#124;&#124; Back in the Ubu-Groove</title>
		<link>http://wrevolution.org/2010/02/03/congrats-huats-back-in-the-ubu-groove/</link>
		<comments>http://wrevolution.org/2010/02/03/congrats-huats-back-in-the-ubu-groove/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 12:05:23 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=484</guid>
		<description><![CDATA[Due to work and a new baby I&#8217;ve been largely AFC (away from community) for the past 7 months or so. I&#8217;ve been minimally involved in community events, bug triaging, qa testing, etc, but nothing significant to speak of. Things are settling down now, and I can&#8217;t wait to get back into the ring! Some [...]]]></description>
			<content:encoded><![CDATA[<p>Due to work and a new baby I&#8217;ve been largely AFC (away from community) for the past 7 months or so.  I&#8217;ve been minimally involved in community events, bug triaging, qa testing, etc, but nothing significant to speak of.  Things are settling down now, and I can&#8217;t wait to get back into the ring!  Some of my goals over the next few months: 5 events across Florida for the <a href="https://wiki.ubuntu.com/GlobalJam">Global Jam</a>, Pump Up Ubuntu-US, get more involved with server QA, and (finally) get started on becoming a <del>MOTU</del> Ubuntu Developer.</p>
<p>In more exciting developments, I want to send hearty congratulations to Christophe Sauthier (<a href="https://edge.launchpad.net/~christophe.sauthier">Huats</a>)!  A few days back he became the father of a gorgeous baby boy.  Wish you and your family all the best my friend!</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2010/02/03/congrats-huats-back-in-the-ubu-groove/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ishaan&#8217;s First Christmas Tree</title>
		<link>http://wrevolution.org/2009/12/11/ishaans-first-christmas-tree/</link>
		<comments>http://wrevolution.org/2009/12/11/ishaans-first-christmas-tree/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 06:13:20 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://wrevolution.org/2009/12/11/2009-12-09-19-56-55-jpg/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 310px"><a href="http://wrevolution.org/wp-content/uploads/2009/12/07943f51-2b3a-45df-b8f6-1db778f33fe4_b-300x225.jpg"><img alt="Ishaan selecting a Christmas Tree" src="http://wrevolution.org/wp-content/uploads/2009/12/07943f51-2b3a-45df-b8f6-1db778f33fe4_b-300x225.jpg" title="I like this one" width="300" height="225" /></a><p class="wp-caption-text">I like this one</p></div>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/12/11/ishaans-first-christmas-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>*sigh* mono noise</title>
		<link>http://wrevolution.org/2009/08/08/sigh-mono-noise/</link>
		<comments>http://wrevolution.org/2009/08/08/sigh-mono-noise/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:57:09 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mono]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=320</guid>
		<description><![CDATA[I didnt use to hate mono, but every time Jo Shields talks i edge closer in that direction.  Insulting people while chiding them for insulting people is inane.  Hiding the insult behind sarcasm isn&#8217;t very creative or particularly intelligent. I respect your contributions to Debian and Ubuntu.  You&#8217;re already making your case by contributing to a better user experience.  How [...]]]></description>
			<content:encoded><![CDATA[<p>I didnt use to hate mono, but every time Jo Shields talks i edge closer in that direction.  Insulting people while chiding them for insulting people is inane.  Hiding the insult behind sarcasm isn&#8217;t very creative or particularly intelligent.</p>
<p>I respect your contributions to Debian and Ubuntu.  You&#8217;re already making your case by contributing to a better user experience.  How about you take your own advice and quit contributing to the noise?</p>
<p>And FWIW, there is already a quite popular Ubuntu-based distro that is mono free.  Its called Kubuntu.</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/08/08/sigh-mono-noise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Podcast #31</title>
		<link>http://wrevolution.org/2009/07/22/ubuntu-podcast-31/</link>
		<comments>http://wrevolution.org/2009/07/22/ubuntu-podcast-31/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 01:01:13 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[podcast]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=316</guid>
		<description><![CDATA[Josh &#38; Nick, or is that Nick &#38; Josh?, rolled out Ubuntu Podcast #31 the other day.  I&#8217;m really digging the use of the &#60;video&#62; tag in modern browsers.  As more and more shows start to use it, hopefully the pressure on legacy browser makers to support open video will increase. Nice job, as usual, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-318" style="margin-right: 5px;" title="Nick!" src="http://wrevolution.org/wp-content/uploads/2009/07/Screenshot.png" alt="Nick!" width="244" height="187" />Josh &amp; Nick, or is that <a href="http://nickandjosh.com/">Nick &amp; Josh</a>?, rolled out <a href="http://ubuntupodcast.net/2009/07/22/ubuntu-podcast-episode-31/">Ubuntu Podcast #31</a> the other day.  I&#8217;m really digging the use of the &lt;video&gt; tag in modern browsers.  As more and more shows start to use it, hopefully the pressure on legacy browser makers to support open video will increase.</p>
<p>Nice job, as usual, guys!  And dig the hair!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/07/22/ubuntu-podcast-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
