I'd probably see if ffmpeg can do it. If you're okay with using the command line/Terminal, then
Code: Select all
ffmpeg -i "audio.ac3" -acodec pcm_s16le -f aiff "output.aiff"
works*. It'll output a 5.1-channel PCM AIFF file. If you want Wave instead, just change
-f aiff to
-f wav. If you convert to AIFF first and find it doesn't work, but want to simply change containers, still use
-f wav but use
-acodec copy instead of
-acodec pcm_s16le.
If you're not comfortable with the CLI, then it's possible any of ffmpeg's frontends can allow you to interface with it more naturally. Whether they allow you to pass those specific options and don't downmix to stereo I don't know.
As for splitting them into 6 different files, I'm unsure of which app to use. I've never had to do that.
*That line assumes you're inside Windows. If you have the OS X command-line version of ffmpeg, it'll have
./ffmpeg at the beginning instead of
ffmpeg only (at least, I had to put the ./ there in order to run it after I compiled ffmpeg on the Tiger setup I have access to). Or if you want to use the Windows version of ffmpeg with Crossover/Wine, it'll be
wine ffmpeg at the beginning.