show/hide this revision's text 2 Updated as a result of comments

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 aac libfaac -ab 128 128k dest.aac

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

Also, be sure to set the bitrate appropriately.

show/hide this revision's text 1

FFmpeg provides AAC encoding facilities:

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

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

Also, be sure to set the bitrate appropriately