<?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>Sat, 12 May 2012 18:37:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Geo</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1434</link>
		<dc:creator>Geo</dc:creator>
		<pubDate>Sat, 14 Apr 2012 11:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1434</guid>
		<description>Hate to sound like a complete noob since that is what I am but, all I get when I use this method (infact anytime i use the command line) is a message that says, no such file or directory. I assume I change the &quot;input_file.flv&quot; to the name of the actual file to be converted. any ideas.???</description>
		<content:encoded><![CDATA[<p>Hate to sound like a complete noob since that is what I am but, all I get when I use this method (infact anytime i use the command line) is a message that says, no such file or directory. I assume I change the &#8220;input_file.flv&#8221; to the name of the actual file to be converted. any ideas.???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iwan</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1432</link>
		<dc:creator>Iwan</dc:creator>
		<pubDate>Fri, 13 Apr 2012 05:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1432</guid>
		<description>Simple, works, but when I extract from .flv which has 128 kbps bitrate I&#039;v got 64kbps bitrate in the output file. How to extract in the same quality?</description>
		<content:encoded><![CDATA[<p>Simple, works, but when I extract from .flv which has 128 kbps bitrate I&#8217;v got 64kbps bitrate in the output file. How to extract in the same quality?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clastic</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1406</link>
		<dc:creator>clastic</dc:creator>
		<pubDate>Wed, 07 Mar 2012 04:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1406</guid>
		<description>Good sugestions! I would also throw in soundconverter (found in the repositories). Just make sure you have the proper codecs installed. Once the output is confiured it&#039;s drag, drop, convert and done. Has worked with avi, mkv, mov, flv, mpeg, and mp4 video formats for me.</description>
		<content:encoded><![CDATA[<p>Good sugestions! I would also throw in soundconverter (found in the repositories). Just make sure you have the proper codecs installed. Once the output is confiured it&#8217;s drag, drop, convert and done. Has worked with avi, mkv, mov, flv, mpeg, and mp4 video formats for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vgfeit</title>
		<link>http://dimitar.me/extract-audio-mp3-from-video-files-like-flv-mov-avi/comment-page-1/#comment-1404</link>
		<dc:creator>vgfeit</dc:creator>
		<pubDate>Sat, 03 Mar 2012 22:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=807#comment-1404</guid>
		<description>Here&#039;s a simple nautilus script (I made it) which simply converts one or more selected files using the command described above. It shows progress window using zenity (which needs some tweak to show the right percentage but I&#039;m on hurry now) and the current filename.

Note: save the following script as file (no extension needed) in the nautilus scripts dir (~/.gnome2/nautilus-scripts) and don&#039;t forget to make that file executable! (chmod +x ... )

#!/bin/bash
cnt=0
total= $#
step= 100/$total

(while [ $# -gt 0 ]; do
	file=$1	
	mp3file=`echo &quot;$file&quot; &#124; sed &#039;s/\.\w*$/.mp3/&#039;`
	echo &quot;# $file to $mp3file&quot;
	
	/usr/bin/ffmpeg -ab 128 -y -i &quot;$file&quot; &quot;$mp3file&quot;
	cnt= $cnt+$step
	echo &quot;$cnt&quot;
	shift
done) &#124;  zenity --title=&quot;Converting to mp3&quot; --progress --text=&quot;Converting to 128Kbs mp3 file...&quot; --auto-close --percentage=0</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a simple nautilus script (I made it) which simply converts one or more selected files using the command described above. It shows progress window using zenity (which needs some tweak to show the right percentage but I&#8217;m on hurry now) and the current filename.</p>
<p>Note: save the following script as file (no extension needed) in the nautilus scripts dir (~/.gnome2/nautilus-scripts) and don&#8217;t forget to make that file executable! (chmod +x &#8230; )</p>
<p>#!/bin/bash<br />
cnt=0<br />
total= $#<br />
step= 100/$total</p>
<p>(while [ $# -gt 0 ]; do<br />
	file=$1<br />
	mp3file=`echo &#8220;$file&#8221; | sed &#8216;s/\.\w*$/.mp3/&#8217;`<br />
	echo &#8220;# $file to $mp3file&#8221;</p>
<p>	/usr/bin/ffmpeg -ab 128 -y -i &#8220;$file&#8221; &#8220;$mp3file&#8221;<br />
	cnt= $cnt+$step<br />
	echo &#8220;$cnt&#8221;<br />
	shift<br />
done) |  zenity &#8211;title=&#8221;Converting to mp3&#8243; &#8211;progress &#8211;text=&#8221;Converting to 128Kbs mp3 file&#8230;&#8221; &#8211;auto-close &#8211;percentage=0</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

