mp3gain - Linux MP3 normalizer
2008-04-09 by xpheas
Many MP3s has a diffrent playback volume (gain). That sucks!
The solution: Normalization
I found mp3gain - a simple command line tool to normalize MP3s.
Installation on Ubuntu/Debian:
Usage is pretty simple:
If you want to normalize a set of MP3s:
The solution: Normalization
I found mp3gain - a simple command line tool to normalize MP3s.
Installation on Ubuntu/Debian:
BASH-Code:
| sudo apt-get install mp3gain |
Usage is pretty simple:
BASH-Code:
| mp3gain -r -k /path/to/the.mp3 |
If you want to normalize a set of MP3s:
BASH-Code:
| find /path/to/mp3s -type f -iname '*.mp3' -print0 | xargs -0 mp3gain -r -k |