File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,14 @@ class StreamDetails(DataClassDictMixin):
154154 # In case of single player playback, dict will contain only one entry.
155155 dsp : dict [str , DSPDetails ] | None = None
156156
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+
157165 # the fields below are managed by the queue/stream controller and may not be set by providers
158166 fade_in : bool = field (
159167 default = False ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ test = [
2828 " pytest==8.4.2" ,
2929 " pytest-cov==7.0.0" ,
3030 " tomli==2.2.1" ,
31- " ruff==0.13.0 " ,
31+ " ruff==0.13.1 " ,
3232]
3333
3434[tool .codespell ]
You can’t perform that action at this time.
0 commit comments