How to convert FLAC files to AAC (preferrably VBR 320k+)

audioconversionflac

I back my CDs up to FLAC and then transcode to AAC (.m4a) files for portability on my android phone and the wife's iPhone. I had been using XLD on Mac and it does a great job but I'd rather not steal her Mac to do this and be able to do it on my own Debian box. The following works:

avconv -i "inputfile.flac" -acodec aac -strict experimental "outputfile.m4a" -map_metadata "inputfile.flac":"outputfile.m4a"

But the following doesn't (well it does, but ignores the 320 for audio quality and results as the same as above):

avconv -i "inputfile.flac" -acodec aac -aq 320 -strict experimental "outputfile.m4a" -map_metadata "inputfile.flac":"outputfile.m4a"

I'd found other commands online such as "ffmpeg" but apparently most or all of them are depreciated in favour of the avconv method above. Any help would be greatly appreciated! I could live with 320 Kbps if not true VBR, but LC VBR of at least 320 would be best.

Best Answer

First of all, -aq sets a quality-based variable bit rate - I think you're looking for -ab (note that I'm an ffmpeg user, so my knowledge of avconv syntax is limited - I've no idea how far it's drifted since the fork).

Regardless, the built-in avconv/ffmpeg AAC encoder is pretty bad.

fdk_aac

The only really good AAC encoder for avconv/ffmpeg is libfdk_aac - but the license for that is incompatible with the GPL, so in order to get access to it you'll have to compile your own (that's an ffmpeg compilation guide, since I don't know of one for avconv - the Ubuntu guide should be fine for Debian, since I don't think there's anything Ubuntu-specific in there).

Once you've got it, follow the AAC encoding guide; I strongly recommend trying out fdk_aac's -vbr option - a setting of 3 sounds transparent to me on all the files I've tried, if you want the placebo of a higher bit rate, or you're a sound engineer, you can try a setting of 5.

ffmpeg -i input.flac -c:a libfdk_aac -vbr 3 output.m4a

No need for -map_metadata, since ffmpeg will automatically transfer metadata (and I'm pretty sure that avconv will too).

For a fixed bit rate 320 kbit/s (seriously, this isn't worth it, AAC achieves audio transparency vs. original CD audio at around fixed 128 kbit/s):

ffmpeg -i input.flac -c:a libfdk_aac -b:a 320k

neroAacEnc

Nero's AAC encoder should be considered on-par with fdk_aac and qaac (Quicktime AAC). Different people will give different opinions on which one is better, but you'll only notice any differences at very low bit rates, and everyone agrees that they're all very high-quality.

neroAacEnc is available from the Nero website. Unzip it and put it somewhere in your $PATH.

Unfortunately neroAacEnc can only take WAV audio as input; you can get around this by using avconv or ffmpeg as a decoder:

avconv -i input.flac -f wav - | neroAacEnc -if - -ignorelength -q 0.4 output.m4a

Unfortunately, this will strip metadata; to transfer that over, use avprobe/ffprobe (with -show_format) to extract and neroAacTag to insert. A bash script would probably be in order.

See the HydrogenAudio page on neroAacEnc: from memory, a -q setting of 0.4 sounded great to me. You can target a bit rate with -br (again, I think this would be way overkill):

avconv -i input.flac -f wav - | neroAacEnc -if - -ignorelength -br 320000 output.m4a

EDIT: here is a script for converting audio files to m4a with neroAacEnc, then tagging with ffprobe and neroAacTag (requires them all to be in a directory in your $PATH). It can take multiple input files, so if you save it as convert-to-m4a, you can convert every FLAC file in a directory with

convert-to-m4a *.flac

It isn't limited to just FLAC files; any audio format that your ffmpeg/avconv can decode will work. You may want to change ffprobe and ffmpeg to avprobe and avconv:

#!/usr/bin/env bash

until [[ "$1" = '' ]]; do
  ffmpeg -i "$1" -f wav - | neroAacEnc -if - -ignorelength -q 0.4 "${1%.*}.m4a"
  tags=()
  while read -r; do
    tags+=("$REPLY")
  done < <(ffprobe -i "$1" -show_format 2>/dev/null | sed -ne 's/date/year/' -e '/TAG:/s/TAG/-meta/p')
  neroAacTag "${1%.*}.m4a" "${tags[@]}"
  shift
done
exit 0
Related Question