Disable normalize() to fix volume pumping issue

- Commented out normalize(radio) which was causing dynamic volume swelling
- Added commented ReplayGain option as alternative for consistent levels
- ReplayGain uses static per-track adjustments from metadata tags
This commit is contained in:
glenneth 2025-10-14 05:51:52 +03:00
parent 70263fbfbc
commit 818f3aed67
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,10 @@ radio = playlist.safe(
# Add some audio processing
radio = amplify(1.0, radio)
radio = normalize(radio)
# Normalize disabled - was causing volume pumping
# radio = normalize(radio)
# ReplayGain option - uses metadata tags for consistent volume without pumping
# radio = amplify(1.0, override="replaygain", radio)
# Add crossfade between tracks
radio = crossfade(radio)