From 083754a709431a4f066451f60e49b0081ca2e14a Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 30 Aug 2024 07:34:22 +0200 Subject: [PATCH] fix dockerfile issue --- Dockerfile | 5 ++--- music_assistant/server/controllers/streams.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35520880..fdaefbd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,9 +38,8 @@ RUN uv pip install \ music-assistant[server]==${MASS_VERSION} # Configure runtime environmental variables -RUN export LD_PRELOAD="/usr/lib/libjemalloc.so.2" \ - && export UV_SYSTEM_PYTHON="1" \ - && export UV_BREAK_SYSTEM_PACKAGES="1" +ENV LD_PRELOAD="/usr/lib/libjemalloc.so.2" +ENV UV_SYSTEM_PYTHON="1" # Set some labels LABEL \ diff --git a/music_assistant/server/controllers/streams.py b/music_assistant/server/controllers/streams.py index 495facbe..1ef2e07d 100644 --- a/music_assistant/server/controllers/streams.py +++ b/music_assistant/server/controllers/streams.py @@ -191,7 +191,7 @@ class StreamsController(CoreController): label="Bypass volume normalization for effects and short sounds", description="The volume normalizer of ffmpeg (used in Music Assistant), " "is designed to work best with longer audio streams and can have troubles when " - "its applied to very short sound clips (< 60 seconds), " + "its applied to very short sound clips (< 30 seconds), " "for example sound effects. With this option enabled, the volume normalizer " "will be bypassed for all audio that has a duration of less than 60 seconds.", category="advanced", -- 2.34.1