For my SpeakColors project, I needed to convert some .mp3 files to .caf. Mac OS X contains a utility called afconvert for doing such a task. Below is an example of converting “red.mp3″ to “red.caf”:
/usr/bin/afconvert -f caff -d LEI16 red.mp3 red.caf
The above command is run from command line. Check out the documentation for more information.
