Batch or one-time convert APE to MP3 via script |
|
|
I've written a Ruby script that batch converts ape format files straight to individual ID3-tagged mp3 files for adding to your iTunes library. It uses all free software to do so. The muscle work is done by:
Mac ape conversion tool (ape => wav) named SuperMMX. There's no MacPorts version of this utility, so you have to hand install. SuperMMX - Google translation.
lame mp3 encoder using --preset extreme to convert to monolithic mp3 (available from MacPorts)
mp3splt to read the ape cue files and split the monolithic mp3 into tracks with ID3 tags. (also ...
|