<?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 &#187; computing</title>
	<atom:link href="http://wrevolution.org/category/computing/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>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>*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>
		<item>
		<title>mmm&#8230; flash memes</title>
		<link>http://wrevolution.org/2009/06/09/mmm-flash-memes/</link>
		<comments>http://wrevolution.org/2009/06/09/mmm-flash-memes/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 22:59:01 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=302</guid>
		<description><![CDATA[I dont know whether to be happy or sad:]]></description>
			<content:encoded><![CDATA[<p>I dont know whether to be happy or sad:</p>
<p><img class="alignnone" src="http://www.speedtest.net/result/492329246.png" alt="" width="247" height="111" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/06/09/mmm-flash-memes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Florida Jaunty Release Party Roundup</title>
		<link>http://wrevolution.org/2009/05/15/ubuntu-florida-jaunty-release-party-roundup/</link>
		<comments>http://wrevolution.org/2009/05/15/ubuntu-florida-jaunty-release-party-roundup/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:18:41 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[florida]]></category>
		<category><![CDATA[gainesville]]></category>
		<category><![CDATA[jacksonville]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[miami]]></category>
		<category><![CDATA[orlando]]></category>
		<category><![CDATA[party]]></category>
		<category><![CDATA[pensacola]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[st. augustine]]></category>
		<category><![CDATA[tallahassee]]></category>
		<category><![CDATA[tampa]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=279</guid>
		<description><![CDATA[Pictures are finally available from the Jaunty release parties held across Florida!  We had a great release party cycle this time around. April 23: The parties started in the far west of Florida, in Pensacola.  David made a 3 hour trip out to Pensacola to take some swag and represent the LoCo with the Pensacola [...]]]></description>
			<content:encoded><![CDATA[<p>Pictures are finally available from the Jaunty release parties held across Florida!  We had a great release party cycle this time around.</p>
<p><span style="text-decoration: underline;"><strong>April 23</strong></span>: The parties started in the far west of Florida, in Pensacola.  <a href="https://launchpad.net/~maxolasersquad">David</a> made a 3 hour trip out to Pensacola to take some swag and represent the LoCo with the <a href="http://www.pcolalug.org/">Pensacola LUG</a>.  The great thing is, we found out there are several Ubuntu implementations coming up in the area.  We hope to have more news on these real soon!</p>
<p><a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/149-jaunty-release-party-pensacola-gallery.html">Pensacola Jaunty Release Party Gallery</a>!</p>
<p><span style="text-decoration: underline;"><strong>April 25</strong></span>: Northeast and north central Florida get their Jaunty shake on!  Two parties on the 25th made for a hectic day for some of us, but we were able to pull both of them off!  In Jacsksonville/St. Augustine, <a href="https://launchpad.net/~neotaoisttechnopagan">Jon</a> threw a nice shindig at <a href="http://www.citycoffeeco.com/">City Coffee</a>.  We were able to help out some new (to Ubuntu) users with installs, and even started the coffee shop owner on a path toward Ubuntu enlightenment.  Later that evening, in Gainesville, we capped off the day with pizza, drinks, a mini-LAN party, and lots of fun.  Thanks to <a href="https://launchpad.net/~crashsystems">Douglass</a> and <a href="https://launchpad.net/~clinton-collins-family">Clint</a> for organizing, and the  folks at <a href="http://www.fiberopticsplus.com/">Fiber Optics Plus</a>, who have always been supportive of Linux, for allowing us to use their facility again.</p>
<p><a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/143-jaunty-release-party-jax.html">Jacksonville</a> &amp; <a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/148-jaunty-release-party-gainesville-gallery.html">Gainesville</a> Jaunty Release Party Galleries!</p>
<p><span style="text-decoration: underline;"><strong>May 2</strong></span>: Another dual-release-party day!  <a href="https://launchpad.net/~maxolasersquad">David</a> secured a room in the Leroy Collins Public Library in downtown Tallahassee.  Several members of the local LUG joined us to hand out CDs, do a Wubi demo,  and talk Ubuntu.  Later that afternoon, in Tampa, the LoCo team threw down with a combo Release Party/LAN Party.  Michelle, of the <a href="http://www.qimo4kids.com/">Qimo </a>project, helped organize a great party.  About 20 people showed up, ate cupcakes, did some fragging, and generally got their geek on and partied late into the night.  Thanks to &#8220;[pnp]thomas&#8221; for helping out with the venue and to <a href="https://launchpad.net/~dave-cabot">Dave</a> for trying to work with us on organizing at the last minute.</p>
<p><a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/145-tallahassee-release-party-gallery.html">Tallahassee</a> &amp; <a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/142-tampa-release-party-gallery.html">Tampa</a> Jaunty Release Party Galleries!</p>
<p><span style="text-decoration: underline;"><strong>May 3</strong></span>:  The Jaunty party train finally made its way to central Florida on Sunday, May 3.   We met at a local Panera, where some of the newer members of the LoCo team showed up and promptly began discussing functional programming languages.  Well&#8230;we considered it a party!!  Once we took a break from arguing programming languages, we handed out some Ubuntu swag, did the Jaunty Jackelope dance, ate, drank, and were merry.  <a href="http://launchpad.net/~pak33m">Jimmy</a> helped organize the Orlando party for the 3rd year in a row, and as usual, did a great job.</p>
<p><a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/150-jaunty-release-party-orlando-gallery.html">Orlando Jaunty Release Party Galleries!</a></p>
<p><span style="text-decoration: underline;"><strong>May 10</strong></span>: In a bid to stir up some controversy, the Florida team decided to make south Florida show its true Ubuntu spirit by holding the Miami release party on Mother&#8217;s Day.  The key is, we knew the Moms out there would drag their non-computer-literate husbands out to celebrate the big release on their way to lunch/dinner/celebration.  We were right!  Well &#8230; a little bit right. <a href="https://launchpad.net/~ropetin">Ropetin</a> organized our party at the <a class="http" href="http://www.brewurbancafe.com/">Brew Urban Cafe</a>.  I didnt get to attend, but everyone agreed it was a great location.  Several of the  newer LoCo team members came out, and everyone who attended had a great time.</p>
<p><a href="http://www.ubuntu-fl.org/index.php/gallery-ubottmenu-85/147-miami-release-party-gallery.html">Miami/Fort Lauderdale Jaunty Release Party Gallery!</a></p>
<p>We have an 8th party organized, but it was delayed until June 6th because we just didnt have enough time to fit everything into the 3 weeks before UDS.</p>
<p>I dont even know where to start congratulating and thanking people.  <a href="http://launchpad.net/~zoopster"></a></p>
<p><a href="https://launchpad.net/~jpugh">John</a> really helped out with the swag.  I really can&#8217;t thank him enough, personally, for his continued support of the Florida <span style="text-decoration: underline;">and</span> Georgia LoCo teams.</p>
<p><a href="http://www.on-disk.com">On-Disk.com</a> got us kickstarted with some great pre-printed CDs before we even had our &#8216;official&#8217; allotment from ShipIt.  Thanks so much to <a href="http://identi.ca/webpath">@webpath</a> and &#8220;hal14450&#8243; for setting us up with the on-disk.com CDs.  They were really friendly and helpful.  I recommend you check out <a href="http://groups.on-disk.com">groups.on-disk.com</a> to see what community efforts they have ongoing.</p>
<p>Of course <a href="http://launchpad.net/~itnet7">Chris</a>, the individual organizers (<a href="http://launchpad.net/~crashsystems">Douglass</a>, <a href="http://launchpad.net/~neotaoisttechnopagan">Jon</a>, <a href="http://launchpad.net/~maxolasersquad">David</a> (twice!), <a href="http://launchpad.net/~pak33m">Jimmy</a>, <a href="http://launchpad.net/~ropetin">Ropetin</a>, and <a href="http://www.qimo4kids.com/">Michelle</a>), and the entire LoCo team did a great job of getting out, having fun, and spreading the Ubuntu message.</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/05/15/ubuntu-florida-jaunty-release-party-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miami Release Party!</title>
		<link>http://wrevolution.org/2009/05/05/miami-release-party/</link>
		<comments>http://wrevolution.org/2009/05/05/miami-release-party/#comments</comments>
		<pubDate>Tue, 05 May 2009 16:05:22 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[florida]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[loco]]></category>
		<category><![CDATA[miami]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[release party]]></category>

		<guid isPermaLink="false">http://wrevolution.org/?p=275</guid>
		<description><![CDATA[The long-awaited Jaunty Release Party for Miami is set for this weekend!  If you&#8217;re in the Fort Lauderdale/Miami area, come out and join us for food, tech talk, and general Ubuntu awesomeness. Several members of the Florida Local Community team will be on hand to give away CDs and other materials, as well as answer [...]]]></description>
			<content:encoded><![CDATA[<p class="line867">The long-awaited Jaunty Release Party for Miami is set for this weekend!  If you&#8217;re in the Fort Lauderdale/Miami area, come out and join us for food, tech talk, and general Ubuntu awesomeness.</p>
<p class="line867">Several members of the Florida Local Community team will be on hand to give away CDs and other materials, as well as answer questions.</p>
<p class="line867">Details can be found on the <a href="http://www.ubuntu-fl.org/index.php/news/17-events/144-jaunty-release-party-miami.html">loco website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wrevolution.org/2009/05/05/miami-release-party/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
