QUOTE(...Just Elliott @ Dec 15 2006, 15:53)

Hm.. max appears to be great but I can't see an apple lossless encoder in its list.
(sorry, os x newbie here)
edit: kay, got that working but i can't see an easy way to recursively select only .flac files in my music directory...
Apple put ALAC in an mp4 container, one of the AAC options in the Max encoder list has Apple Lossless as a configuration option.
I don't think there is a good way to just select .flac files for transcoding in Max. However it's dead easy to copy them all into a separate folder from the terminal using find.
Bring up a terminal and cd into your music directory then something like
find . -name \*flac -exec cp {} <path to destination folder> \;
Will copy all the flac files into the destination folder