From: Maxim Raznatovski Date: Mon, 29 Sep 2025 07:29:50 +0000 (+0200) Subject: Adjust smart fades filters from testing (#2441) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=878fab70beaccbff4498e95bb6abcf15528546b8;p=music-assistant-server.git Adjust smart fades filters from testing (#2441) * Adjust smart fades filters from testing * Typo --- diff --git a/music_assistant/helpers/smart_fades.py b/music_assistant/helpers/smart_fades.py index 32b12e97..b4e5e5b2 100644 --- a/music_assistant/helpers/smart_fades.py +++ b/music_assistant/helpers/smart_fades.py @@ -870,7 +870,7 @@ class SmartFadesMixer: start_time=fadeout_eq_start, sweep_direction="fade_in", poles=1, - curve_type="exponential", # Use exponential curve for smoother DJ-style transitions + curve_type="logarithmic", # Use logarithmic curve to give the next track more space ) # fadein (high-pass → unfiltered) @@ -883,7 +883,7 @@ class SmartFadesMixer: start_time=0, sweep_direction="fade_out", poles=1, - curve_type="exponential", # Use exponential curve for smoother DJ-style transitions + curve_type="linear", # Use linear curve for transition, predictable and not too abrupt ) return fadeout_filters + fadein_filters