vote up 2 vote down star
1

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:

ffmpeg -i test.mp3 -acodec libfaac -ab 163840 dest.aac

When i change the output file's name to dest.m4a, it doesn't play in iTunes.

Thanks!

flag

5 Answers

vote up 3 vote down check

FFmpeg provides AAC encoding facilities if you've compiled them in. If you are using Windows you can grab full binaries from here

ffmpeg -i source.mp3 -acodec libfaac -ab 128k dest.aac

I'm not sure how you would call this from ruby.

Also, be sure to set the bitrate appropriately.

link|flag
Hmm, I installed ffmpeg and when i tried the command you mentioned, the following warnings/errors came up: WARNING: The bitrate parameter is set too low. It takes bits/s as argument, not kbits/s Unknown encoder 'aac' I downloaded the source using git. Do I need to download any other codecs? – Jay Mooney Sep 16 '08 at 8:15
You need an ffmpeg compiled with libfaac, and its acodec libfaac, not aac. -ab 128k is the correct value, as you stated, not -ab 128. – Dark Shikari Sep 16 '08 at 8:35
Thanks for correcting me Dark. And this is why we test before releasing it to the client :P – rpetrich Sep 16 '08 at 8:47
This is also why people looking for help with ffmpeg should drop by #ffmpeg to get real-time support :) – Dark Shikari Sep 16 '08 at 8:48
True that. Definitely beats some guy BSing off the top of his head :o) – rpetrich Sep 16 '08 at 8:58
show 1 more comment
vote up 1 vote down

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.

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.

link|flag
vote up 0 vote down

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:

#!/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

Sorry for the security issues, I banged this out on the train one day...

My mplayer and lame come from fink

link|flag
vote up 1 vote down

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");

link|flag
vote up 1 vote down

There are only three free AAC encoders that I know of that are available through a commandline interface:

  1. 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.

  2. 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).

  3. 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.

(Edit: Seems iTunes might have one too, I suspect its terms of use are similar to Nero's. AFAIK its quality is comparable.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.