QUOTE(jimcooper @ Nov 13 2005, 03:24 PM)
I converted some aiff files I added to iTunes and converted them to AAC. When I tried to "gain" them using the command-line [in Terminal] aacgain -r -k *.m4a I get the error that says "
Can't open *.m4a for reading". The binary and the files are in the same directory. The m4a files are unprotected. What am I doing wrong?
Let's suppose that your filenames have spaces so you've to escape those spaces using \.
CODE
aacgain -r -k 01\ My\ Music.m4a
I hope it helps.
Cheers.