<?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 from Video Files to WAV using FFmpeg</title>
	<atom:link href="http://savvyadmin.com/extract-audio-from-video-files-to-wav-using-ffmpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://savvyadmin.com/extract-audio-from-video-files-to-wav-using-ffmpeg/</link>
	<description>For savvy admins everywhere...</description>
	<lastBuildDate>Thu, 17 May 2012 16:06:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: gmendoza</title>
		<link>http://savvyadmin.com/extract-audio-from-video-files-to-wav-using-ffmpeg/comment-page-1/#comment-1021</link>
		<dc:creator>gmendoza</dc:creator>
		<pubDate>Fri, 16 Dec 2011 17:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=537#comment-1021</guid>
		<description>Hey there!  You need to compile FFmpeg with opencore-amr support.  FFmpeg as it&#039;s compile on your system does not know how to decode your audio stream.  The following two lines from your output can help you when troubleshooting other scenarios.

&lt;b&gt;Input #0, amr, from ‘sound2.3gp’:&lt;b&gt;
...
&lt;b&gt;Decoder (codec id 73728) not found for input stream #0.&lt;/b&gt;


See this post to enable opencore-amr support:
http://ubuntuforums.org/showpost.php?p=7584660&amp;postcount=409

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hey there!  You need to compile FFmpeg with opencore-amr support.  FFmpeg as it&#8217;s compile on your system does not know how to decode your audio stream.  The following two lines from your output can help you when troubleshooting other scenarios.</p>
<p><b>Input #0, amr, from ‘sound2.3gp’:</b><b><br />
&#8230;<br />
</b><b>Decoder (codec id 73728) not found for input stream #0.</b></p>
<p>See this post to enable opencore-amr support:<br />
<a href="http://ubuntuforums.org/showpost.php?p=7584660&#038;postcount=409" rel="nofollow">http://ubuntuforums.org/showpost.php?p=7584660&#038;postcount=409</a></p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sumitavo biswas</title>
		<link>http://savvyadmin.com/extract-audio-from-video-files-to-wav-using-ffmpeg/comment-page-1/#comment-1020</link>
		<dc:creator>sumitavo biswas</dc:creator>
		<pubDate>Fri, 16 Dec 2011 12:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=537#comment-1020</guid>
		<description>Hi friends, i am facing a issue..i have a requirement to convert a .3gp file to .wav file. We have to use ffmpeg for the same, but currently the transcoded file(.wav file) do not play, it is of 0 bytes…can anyone help me how to do it? Following is the stacktrace

$/opt/csw/bin/ffmpeg -i sound2.3gp -acodec pcm_mulaw -ar 8000 -ac 1 -f wav 3gp.wav
FFmpeg version SVN-r21156-snapshot, Copyright (c) 2000-2010 Fabrice Bellard, et al.
built on Feb 12 2010 01:57:40 with gcc 4.3.4
configuration: –prefix=/opt/csw –enable-shared –disable-static –enable-ffplay –enable-runtime-cpudetect –enable-libtheora –enable-libvorbis –enable-libx264 –enable-libxvid –enable-libmp3lame –enable-gpl –enable-postproc –enable-avfilter –enable-avfilter-lavf –bindir=/opt/csw/bin/sparcv8 –libdir=/opt/csw/lib –incdir=/opt/csw/include
libavutil 50. 7. 0 / 50. 7. 0
libavcodec 52.47. 0 / 52.47. 0
libavformat 52.46. 0 / 52.46. 0
libavdevice 52. 2. 0 / 52. 2. 0
libavfilter 1.15. 0 / 1.15. 0
libswscale 0. 8. 0 / 0. 8. 0
libpostproc 51. 2. 0 / 51. 2. 0
[amr @ 442c0]max_analyze_duration reached
[amr @ 442c0]Estimating duration from bitrate, this may be inaccurate
Input #0, amr, from ‘sound2.3gp’:
Duration: N/A, bitrate: N/A
Stream #0.0: Audio: samr / 0x726D6173, 8000 Hz, 1 channels
File ’3gp.wav’ already exists. Overwrite ? [y/N] y
Output #0, wav, to ’3gp.wav’:
Stream #0.0: Audio: pcm_mulaw, 8000 Hz, 1 channels, s16, 64 kb/s
Stream mapping:
Stream #0.0 -&gt; #0.0
Decoder (codec id 73728) not found for input stream #0.</description>
		<content:encoded><![CDATA[<p>Hi friends, i am facing a issue..i have a requirement to convert a .3gp file to .wav file. We have to use ffmpeg for the same, but currently the transcoded file(.wav file) do not play, it is of 0 bytes…can anyone help me how to do it? Following is the stacktrace</p>
<p>$/opt/csw/bin/ffmpeg -i sound2.3gp -acodec pcm_mulaw -ar 8000 -ac 1 -f wav 3gp.wav<br />
FFmpeg version SVN-r21156-snapshot, Copyright (c) 2000-2010 Fabrice Bellard, et al.<br />
built on Feb 12 2010 01:57:40 with gcc 4.3.4<br />
configuration: –prefix=/opt/csw –enable-shared –disable-static –enable-ffplay –enable-runtime-cpudetect –enable-libtheora –enable-libvorbis –enable-libx264 –enable-libxvid –enable-libmp3lame –enable-gpl –enable-postproc –enable-avfilter –enable-avfilter-lavf –bindir=/opt/csw/bin/sparcv8 –libdir=/opt/csw/lib –incdir=/opt/csw/include<br />
libavutil 50. 7. 0 / 50. 7. 0<br />
libavcodec 52.47. 0 / 52.47. 0<br />
libavformat 52.46. 0 / 52.46. 0<br />
libavdevice 52. 2. 0 / 52. 2. 0<br />
libavfilter 1.15. 0 / 1.15. 0<br />
libswscale 0. 8. 0 / 0. 8. 0<br />
libpostproc 51. 2. 0 / 51. 2. 0<br />
[amr @ 442c0]max_analyze_duration reached<br />
[amr @ 442c0]Estimating duration from bitrate, this may be inaccurate<br />
Input #0, amr, from ‘sound2.3gp’:<br />
Duration: N/A, bitrate: N/A<br />
Stream #0.0: Audio: samr / 0x726D6173, 8000 Hz, 1 channels<br />
File ’3gp.wav’ already exists. Overwrite ? [y/N] y<br />
Output #0, wav, to ’3gp.wav’:<br />
Stream #0.0: Audio: pcm_mulaw, 8000 Hz, 1 channels, s16, 64 kb/s<br />
Stream mapping:<br />
Stream #0.0 -&gt; #0.0<br />
Decoder (codec id 73728) not found for input stream #0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Purab Gujar</title>
		<link>http://savvyadmin.com/extract-audio-from-video-files-to-wav-using-ffmpeg/comment-page-1/#comment-1010</link>
		<dc:creator>Purab Gujar</dc:creator>
		<pubDate>Thu, 11 Aug 2011 04:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=537#comment-1010</guid>
		<description>I tried your command. But why do you suggest we use any codec at all when converting to wav? Just giving the wav format is sufficient.  i.e. why use -acodec pcm_s16le instead of ffmpeg -i video.mkv -acodec -ac 2 -f wav -y audio.wav</description>
		<content:encoded><![CDATA[<p>I tried your command. But why do you suggest we use any codec at all when converting to wav? Just giving the wav format is sufficient.  i.e. why use -acodec pcm_s16le instead of ffmpeg -i video.mkv -acodec -ac 2 -f wav -y audio.wav</p>
]]></content:encoded>
	</item>
</channel>
</rss>

