How do I programmatically convert mp3 to an itunes-playable aac/m4a file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T09:55:48Zhttp://stackoverflow.com/feeds/question/70096http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file2How do I programmatically convert mp3 to an itunes-playable aac/m4a file?kwork2008-09-16T07:35:16Z2008-09-30T19:38:30Z
<p>I've been looking for a way to convert an mp3 to aac programmatically or via the command line with no luck. Ideally, I'd have a snippet of code that I could call from my rails app that converts an mp3 to an aac. I installed ffmpeg and libfaac and was able to create an aac file with the following command:</p>
<p>ffmpeg -i test.mp3 -acodec libfaac -ab 163840 dest.aac</p>
<p>When i change the output file's name to dest.m4a, it doesn't play in iTunes. </p>
<p>Thanks! </p>
http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file/70117#701171Answer by Dark Shikari for How do I programmatically convert mp3 to an itunes-playable aac/m4a file?Dark Shikari2008-09-16T07:39:36Z2008-09-16T07:39:36Z<p>There are only three free AAC encoders that I know of that are available through a commandline interface:</p>
<ol>
<li><p>FAAC (LPGL), which is honestly pretty bad (the quality is going to be significantly worse than LAME at the same bitrate). Its fine though if you're willing to go for higher bitrates (>>128kbps) and need AAC for compatibility, not quality reasons. The most common way to use FAAC is through ffmpeg, as libfaac.</p></li>
<li><p>Nero AAC, the commandline encoder for which is available for free under Windows and Linux, but only for noncommercial use (and is correspondingly closed-source).</p></li>
<li><p>ffmpeg's AAC encoder, which is still under development and while I believe it does technically work, it is not at all stable or good or even fast, since its still in the initial stages. Its also not available in trunk, as far as I know.</p></li>
</ol>
<p>(Edit: Seems iTunes might have one too, I suspect its terms of use are similar to Nero's. AFAIK its quality is comparable.)</p>
http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file/70122#701221Answer by Sev for How do I programmatically convert mp3 to an itunes-playable aac/m4a file?Sev2008-09-16T07:40:15Z2008-09-16T07:40:15Z<p>After installing the converting app on the linux/window machine you're running your Rails application on, use the "system()" command in Ruby to invoke the converting application on the system. system("command_here");</p>
http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file/70138#701383Answer by rpetrich for How do I programmatically convert mp3 to an itunes-playable aac/m4a file?rpetrich2008-09-16T07:42:33Z2008-09-16T08:46:41Z<p><a href="http://en.wikipedia.org/wiki/Ffmpeg" rel="nofollow">FFmpeg</a> provides AAC encoding facilities if you've compiled them in. If you are using Windows you can grab full binaries from <a href="http://arrozcru.no-ip.org/ffmpeg_builds/" rel="nofollow">here</a></p>
<pre><code>ffmpeg -i source.mp3 -acodec libfaac -ab 128k dest.aac
</code></pre>
<p>I'm not sure how you would call this from ruby.</p>
<p>Also, be sure to set the bitrate appropriately.</p>
http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file/72678#726780Answer by dmckee for How do I programmatically convert mp3 to an itunes-playable aac/m4a file?dmckee2008-09-16T14:10:08Z2008-09-16T14:10:08Z<p>I've had good luck using mplayer (which I believe uses ffmpeg...) and lame. To the point that I've wrapped it up in a script:</p>
<pre><code>#!/bin/sh
TARGET=$1
BASE=`basename "${TARGET}"`
echo TARGET: "${TARGET}"
echo BASE: "${BASE}" .m4a
# Warning! Race condition vulnerability here! Should use a mktemp
# variant or something...
mkfifo encode
mplayer -quiet -ao pcm -aofile encode "${TARGET}" &
lame --silent encode "${BASE}".mp3
rm encode
</code></pre>
<p>Sorry for the security issues, I banged this out on the train one day...</p>
<p>My mplayer and lame come from <a href="http://www.finkproject.org/" rel="nofollow">fink</a></p>
http://stackoverflow.com/questions/70096/how-do-i-programmatically-convert-mp3-to-an-itunes-playable-aac-m4a-file/154619#1546191Answer by Tim Farley for How do I programmatically convert mp3 to an itunes-playable aac/m4a file?Tim Farley2008-09-30T19:38:30Z2008-09-30T19:38:30Z<p>I realize I'm late to this party, but I'm questioning the premise of this question. Why do you even want to convert an MP3 to an "itunes playable" format? iTunes already handles MP3s natively. </p>
<p>It seems like you are doing an unnecessary conversion, and since you are converting from one lossy format to another, you are losing some quality in the process.</p>