mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-03-02 22:56:57 -05:00
Integrate audio normalisation via rsgain during importing #4088
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
Area: Update API
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Don't Merge
Status: Help Wanted
Status: In Progress
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
conflict
no-conflict
not-pulled
radarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Lidarr#4088
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Gr3q on GitHub (Dec 6, 2024).
Is there an existing issue for this?
Is your feature request related to a problem? Please describe
Currently I have to manually run it on my library if I want my songs' loudness normalized after they've been imported.
Describe the solution you'd like
It would be nice if replay gain would be analyzed and added during the importing process (could be optionally enabled) in settings - the
easymode in rsgain is good enough for me, but maybe you can add options to target different loudness levels.Describe alternatives you've considered
There are other tools other than rsgain, but rsgain is the most popular one for a reason.
Anything else?
Link to rsgain https://github.com/complexlogic/rsgain
@M-Igashi commented on GitHub (Jan 13, 2026):
Just wanted to add some context on ReplayGain tools that might be helpful for this discussion.
rsgain is great for writing ReplayGain tags, which works well with players that support them (foobar2000, MusicBee, Plex, etc.).
However, there's a related use case worth considering: direct volume adjustment for devices that don't read ReplayGain tags:
For these scenarios, mp3rgain can modify the actual audio gain values in MP3/AAC files losslessly (and reversibly). It's a modern Rust rewrite of the classic mp3gain tool that works on current systems.
Potential approach for Lidarr:
Both tools have CLI interfaces that would integrate well. Just sharing this in case it's useful for the design discussion!