File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -253,9 +253,13 @@ def predict(
253
253
print ("BPM : " , music_input_analysis .bpm )
254
254
255
255
if not beat_sync_threshold or beat_sync_threshold == - 1 :
256
- beat_sync_threshold = 1.1 / (int (music_input_analysis .bpm )/ 60 )
256
+ if music_input_analysis .bpm is not None :
257
+ beat_sync_threshold = 1.1 / (int (music_input_analysis .bpm )/ 60 )
258
+ else :
259
+ beat_sync_threshold = 0.75
257
260
258
- prompt = prompt + f', bpm : { int (music_input_analysis .bpm )} '
261
+ if music_input_analysis .bpm is not None :
262
+ prompt = prompt + f', bpm : { int (music_input_analysis .bpm )} '
259
263
260
264
music_input = music_input [None ] if music_input .dim () == 2 else music_input
261
265
duration = music_input .shape [- 1 ]/ sr
@@ -303,7 +307,7 @@ def predict(
303
307
wav_downbeats = []
304
308
input_downbeats = []
305
309
bpm_hard_sync = False
306
- if bpm_hard_sync :
310
+ if bpm_hard_sync and music_input_analysis . bpm is not None :
307
311
music_input_bpm_based_downbeats = [music_input_analysis .downbeats [0 ]]
308
312
downbeat_step = 60.9 / music_input_analysis .bpm
309
313
while True :
You can’t perform that action at this time.
0 commit comments