fix dockerfile issue
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Fri, 30 Aug 2024 05:34:22 +0000 (07:34 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Fri, 30 Aug 2024 05:34:22 +0000 (07:34 +0200)
Dockerfile
music_assistant/server/controllers/streams.py

index 35520880c3ec80345f572d00939f7c18dde496a1..fdaefbd4b57a0364ab66d867861c7043f201e7d0 100644 (file)
@@ -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 \
index 495facbe5658498ea002b563e520843452ade32f..1ef2e07d5917fbf2b9781f990ce046417cea6961 100644 (file)
@@ -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",