Skip to content

Commit

Permalink
Adjust volume normalisation default (#909)
Browse files Browse the repository at this point in the history
* Update config_entries.py

Changes made per the discussion here https://github.com/music-assistant/hass-music-assistant/issues/1501#issuecomment-1786833914

* Update music_assistant/common/models/config_entries.py

* lint

---------

Co-authored-by: Marcel van der Veldt <[email protected]>
  • Loading branch information
OzGav and marcelveldt authored Nov 11, 2023
1 parent ffdcdf6 commit 0009880
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions music_assistant/common/models/config_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,9 +365,10 @@ class CoreConfig(Config):
key=CONF_VOLUME_NORMALIZATION_TARGET,
type=ConfigEntryType.INTEGER,
range=(-30, 0),
default_value=-14,
default_value=-17,
label="Target level for volume normalization",
description="Adjust average (perceived) loudness to this target level, " "default is -14 LUFS",
description="Adjust average (perceived) loudness to this target level, "
"default is -17 LUFS \n\n WARNING: Setting levels higher than this may result in clipping",
depends_on=CONF_VOLUME_NORMALIZATION,
advanced=True,
)
Expand Down

0 comments on commit 0009880

Please sign in to comment.