Quote:
The catch is all the files are in structured subfolders IE.(A-D\Artist\Album). I want re-encode the files into a new folder.


In that case:


mkdir new
cd old
find . -type d -exec mkdir -p ../new/{} \;
find . -name \*.mp3 -exec lame --preset cbr 128 {} ../new/{} \;


Cheers


Edited by mlord (18/01/2006 20:36)