normalize-audio worked. I needed no format conversion: mp3 to mp3 but the audio amplitude needed adjustment to all the same audio level.
The files in question were on a 2 Gb SD card. The path was /media/disk. Files were in a number of categorically defined folders.
As root in terminal I went to /media/disk [the SD card] where the folders held the mp3 files.
I used this command to set the SAME amplitude level on ALL tracks and ALL mp3 files:
- Code: Select all
find . -name \*.mp3 -exec normalize-audio {} \;
A useful read me is located here:
http://normalize.nongnu.org/README.htmlThanks, Bob