From 878fab70beaccbff4498e95bb6abcf15528546b8 Mon Sep 17 00:00:00 2001 From: Maxim Raznatovski Date: Mon, 29 Sep 2025 09:29:50 +0200 Subject: [PATCH] Adjust smart fades filters from testing (#2441) * Adjust smart fades filters from testing * Typo --- music_assistant/helpers/smart_fades.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1