<?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>Comments on: Extract Audio (.mp3) from Video Files Like .flv, .mov, .avi and Others with Ubuntu</title>
	<atom:link href="http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/</link>
	<description>Dimitar Darazhanski&#039;s blog.</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:05:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: korv</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1359</link>
		<dc:creator>korv</dc:creator>
		<pubDate>Sat, 24 Dec 2011 21:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1359</guid>
		<description>interesting little cross flame upthread - the command line can be seen as medieval, or it can be seen as matrix-chic. Very much a matter of taste that one, regardless of what you can or cannot do with it. As for feeling sorry for windows users, it is possible to use a cli in windows i believe. 

Anyway nice command reference. As for compression issues with flash videos, I assume it is reasonable to replace the output format with flac (for instance)?</description>
		<content:encoded><![CDATA[<p>interesting little cross flame upthread &#8211; the command line can be seen as medieval, or it can be seen as matrix-chic. Very much a matter of taste that one, regardless of what you can or cannot do with it. As for feeling sorry for windows users, it is possible to use a cli in windows i believe. </p>
<p>Anyway nice command reference. As for compression issues with flash videos, I assume it is reasonable to replace the output format with flac (for instance)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GuyS</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1231</link>
		<dc:creator>GuyS</dc:creator>
		<pubDate>Sun, 14 Aug 2011 02:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1231</guid>
		<description>Opps -- forgot the closing }. That command line is:

#&gt; for i in *.flv ; do ffmpeg -i ${i} ${i:s/flv/wav/} ; done</description>
		<content:encoded><![CDATA[<p>Opps &#8212; forgot the closing }. That command line is:</p>
<p>#&gt; for i in *.flv ; do ffmpeg -i ${i} ${i:s/flv/wav/} ; done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GuyS</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1230</link>
		<dc:creator>GuyS</dc:creator>
		<pubDate>Sun, 14 Aug 2011 02:34:16 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1230</guid>
		<description>Especially when you can use the full power of the CLI and do this:

#&gt; for i in *.flv ; do ffmpeg -i ${i} ${i:s/flv/wav/&quot; ; done

And do them all at once. Change *.flv to *.mp4 or what have you. Change ${i:s/flv/wav} to ${i:s/flv/mp3} or ${i:s/flv/ogg} or what you want.

This little command line loop will list each file that matches *.flv, feed it into whatever command follows the &#039;do&#039; and it&#039;s position in the command is wherever you put the ${i}. The added &#039;s/flv/wav/&#039; means to search &#039;s&#039; for flv and replace with wav. This substitution occurs *before* ffmpeg actually is run.

Eazy squeezy.</description>
		<content:encoded><![CDATA[<p>Especially when you can use the full power of the CLI and do this:</p>
<p>#&gt; for i in *.flv ; do ffmpeg -i ${i} ${i:s/flv/wav/&#8221; ; done</p>
<p>And do them all at once. Change *.flv to *.mp4 or what have you. Change ${i:s/flv/wav} to ${i:s/flv/mp3} or ${i:s/flv/ogg} or what you want.</p>
<p>This little command line loop will list each file that matches *.flv, feed it into whatever command follows the &#8216;do&#8217; and it&#8217;s position in the command is wherever you put the ${i}. The added &#8216;s/flv/wav/&#8217; means to search &#8216;s&#8217; for flv and replace with wav. This substitution occurs *before* ffmpeg actually is run.</p>
<p>Eazy squeezy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-941</link>
		<dc:creator>Paolo</dc:creator>
		<pubDate>Sun, 13 Mar 2011 10:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-941</guid>
		<description>I installed winff out of curiosity. It&#039;s great but 1) I wouldn&#039;t even have understood how to extract the audio without Willem&#039;s advice, so it&#039;s not better than the command line; 2) typing ffmpeg -i input_file.avi output_file.mp3 on the command line is so much faster that I don&#039;t care looking medieval. This is one of those cases when I feel sorry for Windows users that have to waste so much time with the file open dialog and all the other GUI controls.
I&#039;m using audacity and openshot for my other video production steps, so I&#039;m not always medieval. I just like to be efficient.</description>
		<content:encoded><![CDATA[<p>I installed winff out of curiosity. It&#8217;s great but 1) I wouldn&#8217;t even have understood how to extract the audio without Willem&#8217;s advice, so it&#8217;s not better than the command line; 2) typing ffmpeg -i input_file.avi output_file.mp3 on the command line is so much faster that I don&#8217;t care looking medieval. This is one of those cases when I feel sorry for Windows users that have to waste so much time with the file open dialog and all the other GUI controls.<br />
I&#8217;m using audacity and openshot for my other video production steps, so I&#8217;m not always medieval. I just like to be efficient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-914</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Fri, 18 Feb 2011 15:28:18 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-914</guid>
		<description>Hi,

You can use an Any File to Audio Converter to convert &lt;a href=&quot;http://mp3videosoft.com/any-file-to-audio-converter-p1.html&quot; rel=&quot;nofollow&quot;&gt;video to mp3&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You can use an Any File to Audio Converter to convert <a href="http://mp3videosoft.com/any-file-to-audio-converter-p1.html" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/mp3videosoft.com/any-file-to-audio-converter-p1.html?referer=');">video to mp3</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Willem Franssen</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-905</link>
		<dc:creator>Willem Franssen</dc:creator>
		<pubDate>Tue, 01 Feb 2011 02:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-905</guid>
		<description>When will the Linux-world understand at last average computer users DON&#039;T WANT THE COMMAND LINE CAUSE IT&#039;S MEDIEVAL? 
When you want to extract audio from videofiles in Linux just use WINFF.
That&#039;s an excellent GRAPHICAL frontend for FFMPEG. WINFF is also available for Windows. Just import the videofile in WINFF. Select Convert to Audio, select the audioformat of your choice, fill in the desired bitrate (ie for mp3 128 kbps) and there it goes. 
WINFF is in the repositories of several major Linux distributions like Ubuntu and OpenSUSE. See also: http://winff.org/html_new/</description>
		<content:encoded><![CDATA[<p>When will the Linux-world understand at last average computer users DON&#8217;T WANT THE COMMAND LINE CAUSE IT&#8217;S MEDIEVAL?<br />
When you want to extract audio from videofiles in Linux just use WINFF.<br />
That&#8217;s an excellent GRAPHICAL frontend for FFMPEG. WINFF is also available for Windows. Just import the videofile in WINFF. Select Convert to Audio, select the audioformat of your choice, fill in the desired bitrate (ie for mp3 128 kbps) and there it goes.<br />
WINFF is in the repositories of several major Linux distributions like Ubuntu and OpenSUSE. See also: <a href="http://winff.org/html_new/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/winff.org/html_new/?referer=');">http://winff.org/html_new/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raequin</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-846</link>
		<dc:creator>raequin</dc:creator>
		<pubDate>Wed, 15 Sep 2010 10:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-846</guid>
		<description>I second that ^.  It worked for flac so now I have lossless.</description>
		<content:encoded><![CDATA[<p>I second that ^.  It worked for flac so now I have lossless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-829</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Mon, 30 Aug 2010 09:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-829</guid>
		<description>Simple and clear instructions -- that work. Many thanks.</description>
		<content:encoded><![CDATA[<p>Simple and clear instructions &#8212; that work. Many thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

