You are not logged in.
Pages: 1
I just installed mp3gain from the community repository. I plan to cd into my music directory (which contains many different albums) and run...
find . -name *mp3 -exec mp3gain -a -k {} \;
Because I have different albums in the folder, I need mp3gain to recognise the different albums and apply the gain accordingly so that within one album, all the tracks are changed the same amount. Does anyone know whether this will work for me or not?
Offline
Well I have done some researching of this myself and for anyone else interested in the subject, I think this is the best way to do it...
find . -iname '*.mp3' -execdir mp3gain -r -k -a "{}" + &
Offline
Pages: 1