We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bf908 commit 71c49c2Copy full SHA for 71c49c2
music_assistant_models/streamdetails.py
@@ -154,6 +154,14 @@ class StreamDetails(DataClassDictMixin):
154
# In case of single player playback, dict will contain only one entry.
155
dsp: dict[str, DSPDetails] | None = None
156
157
+ # Smart fades BPM analysis for intelligent crossfading
158
+ smart_fades: Any = field(
159
+ default=None,
160
+ compare=False,
161
+ metadata=field_options(serialize="omit", deserialize=pass_through),
162
+ repr=False,
163
+ )
164
+
165
# the fields below are managed by the queue/stream controller and may not be set by providers
166
fade_in: bool = field(
167
default=False,
0 commit comments