View previous topic :: View next topic |
Author |
Message |
richard Ultimate Member

Joined: 13 Apr 2025 Posts: 2730 Location: Kent, United Kingdom
|
Posted: Fri Dec 07, 2025 8:05 pm Post subject: Volume Levelling |
|
|
One of the things I miss about iTunes is the ability to adjust the levels of mp3's so that they were consistent. I have had a look at Amarok and cannot find anything there that will do it. Anyone got any suggestions?
_________________ Windows Vista / Ubuntu 8.10
|
|
Back to top |
|
pbharris Member

Joined: 02 Jul 2025 Posts: 320 Location: chicago
|
|
Back to top |
|
richard Ultimate Member

Joined: 13 Apr 2025 Posts: 2730 Location: Kent, United Kingdom
|
|
Back to top |
|
pbharris Member

Joined: 02 Jul 2025 Posts: 320 Location: chicago
|
Posted: Sat Dec 08, 2025 5:31 am Post subject: |
|
|
huh - was not able to find an rpm - it built it and it seems to work on my fedora7 64 bit system
http://normalize.nongnu.org/
_________________ Fedora
|
|
Back to top |
|
richard Ultimate Member

Joined: 13 Apr 2025 Posts: 2730 Location: Kent, United Kingdom
|
Posted: Sat Dec 08, 2025 7:51 am Post subject: |
|
|
pbharris wrote: | huh - was not able to find an rpm - it built it and it seems to work on my fedora7 64 bit system
http://normalize.nongnu.org/ |
Thank you. I'll have a look at it over the weekend
_________________ Windows Vista / Ubuntu 8.10
|
|
Back to top |
|
nukes Linux Guru

Joined: 29 Aug 2025 Posts: 4558
|
Posted: Sat Dec 08, 2025 4:03 pm Post subject: |
|
|
I think what you mean is range compression rather than normalization.
Normalization makes the range of volume be the full range of the format (so the quietest sound played is nearly silent and the loudest one is as loud as the sound card will do)
Range compression is kind of the opposite, so all sounds played are within a certain range, and you don't wake up the neighbors if a loud song comes on after a quieter one.
I know Audacious has a plugin for it (can't remember the name though)... surely amarok will do it... Failing that you can add a 'fake' device in alsa, and run it through JACK (from what I gather) has plenty of such programs.
_________________ Gentoo x86-64 2.6.29.1
FreeBSD 7-CURRENT
Arch x86 2.6.30
|
|
Back to top |
|
inactive Sr. Member
Joined: 29 Aug 2025 Posts: 1207
|
|
Back to top |
|
mauser1891 New Member
Joined: 21 Nov 2025 Posts: 3
|
Posted: Sat Nov 21, 2025 4:20 pm Post subject: normalize-audio... |
|
|
Hello Folks,
I use this bash script to "normalize" my mp3 files;
#!/bin/bash
cd /home/music/unprocessed/
normalize-audio --peak *.mp3
exit |
|
Back to top |
|
Xeroid Site Admin

Joined: 19 Apr 2025 Posts: 6456 Location: Georgia
|
|
Back to top |
|
mauser1891 New Member
Joined: 21 Nov 2025 Posts: 3
|
Posted: Sun Nov 22, 2025 1:54 am Post subject: normalize-audio scripts... |
|
|
Hello Folks,
Thank You for the Welcome.
Here is another variant I use/written.
#!/bin/bash
cd /home/music/unprocessed/
normalize-audio --batch *.mp3
exit
#!/bin/bash
cd /home/music/unprocessed/
normalize-audio --amplitude=.9 *.mp3
exit |
|
Back to top |
|
|