<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Komentarze do: Screencasts in Ubuntu, part 2: FFmpeg</title>
	<atom:link href="http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/</link>
	<description>All About GNU/Linux and BSD - reviews, comparisons, articles</description>
	<lastBuildDate>Sun, 05 Feb 2012 02:17:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Autor: Thomas</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-189001</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Tue, 10 May 2011 05:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-189001</guid>
		<description>In FFmpeg we can convert videos from one format to other by using following commands
.avi to divx format: ffmpeg -i input.avi -s 320x240 -vcodec msmpeg4v2 output.avi
.avi to dv format: ffmpeg -i input.avi -s pal -r pal -aspect 4:3 -ar 48000 -ac 2 final.dv
.mpg to .avi format: ffmpeg -i input.mpg ouput.avi
wav file to mp3 format: ffmpeg -i input.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3  output.mp3
ogg theora to mpeg format: ffmpeg -i  input.ogm -s 720x576 -vcodec mpeg2video -acodec mp3  ouput .mpg
To know more visit &lt;a href=&quot;http://ubuntumanual.org/posts/327/converting-videos-in-ubuntu-using-ffmpeg-the-ultimate-free-video-converter?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+ubuntumanual+%28Ubuntu+Manual+-+Ubuntu+for+human+beings%29&quot; rel=&quot;nofollow&quot;&gt; UbuntuManual.org&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>In FFmpeg we can convert videos from one format to other by using following commands<br />
.avi to divx format: ffmpeg -i input.avi -s 320&#215;240 -vcodec msmpeg4v2 output.avi<br />
.avi to dv format: ffmpeg -i input.avi -s pal -r pal -aspect 4:3 -ar 48000 -ac 2 final.dv<br />
.mpg to .avi format: ffmpeg -i input.mpg ouput.avi<br />
wav file to mp3 format: ffmpeg -i input.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3  output.mp3<br />
ogg theora to mpeg format: ffmpeg -i  input.ogm -s 720&#215;576 -vcodec mpeg2video -acodec mp3  ouput .mpg<br />
To know more visit <a href="http://ubuntumanual.org/posts/327/converting-videos-in-ubuntu-using-ffmpeg-the-ultimate-free-video-converter?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+ubuntumanual+%28Ubuntu+Manual+-+Ubuntu+for+human+beings%29" rel="nofollow"> UbuntuManual.org</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Luke</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-142481</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Sat, 05 Jun 2010 16:12:33 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-142481</guid>
		<description>Thanks for this article!  Is there an easy way to tell FFmpeg about a particular window that you want it to capture the contents of?</description>
		<content:encoded><![CDATA[<p>Thanks for this article!  Is there an easy way to tell FFmpeg about a particular window that you want it to capture the contents of?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Max</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-129017</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Sun, 20 Sep 2009 19:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-129017</guid>
		<description>Very impressive, one of the best information sites I have found on video and Linux. Thank you.</description>
		<content:encoded><![CDATA[<p>Very impressive, one of the best information sites I have found on video and Linux. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: grigio</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-124579</link>
		<dc:creator>grigio</dc:creator>
		<pubDate>Fri, 26 Sep 2008 18:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-124579</guid>
		<description>in the ./configure the last option is --disable-debug</description>
		<content:encoded><![CDATA[<p>in the ./configure the last option is &#8211;disable-debug</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: fmo</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121745</link>
		<dc:creator>fmo</dc:creator>
		<pubDate>Thu, 12 Jun 2008 09:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121745</guid>
		<description>Hi,

Nice article.
Have you tried the FFMPEG version in the Medibuntu repositories?

Fmo</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice article.<br />
Have you tried the FFMPEG version in the Medibuntu repositories?</p>
<p>Fmo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Stani</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121743</link>
		<dc:creator>Stani</dc:creator>
		<pubDate>Thu, 12 Jun 2008 08:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121743</guid>
		<description>Hi, interesting article. The official site of SPE is http://pythonide.stani.be
Stani</description>
		<content:encoded><![CDATA[<p>Hi, interesting article. The official site of SPE is <a href="http://pythonide.stani.be" rel="nofollow">http://pythonide.stani.be</a><br />
Stani</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Epicanis</title>
		<link>http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121732</link>
		<dc:creator>Epicanis</dc:creator>
		<pubDate>Wed, 11 Jun 2008 16:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/linux/ubuntu/screencasts-in-ubuntu-part-2/#comment-121732</guid>
		<description>What the...how the heck did I miss ffmpeg getting an x11grab input?
Thanks for the article!</description>
		<content:encoded><![CDATA[<p>What the&#8230;how the heck did I miss ffmpeg getting an x11grab input?<br />
Thanks for the article!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

