Skip to content

Commit 6179c8c

Browse files
committed
bpm is None case added
1 parent c26bb7c commit 6179c8c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

predict.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,13 @@ def predict(
253253
print("BPM : ", music_input_analysis.bpm)
254254

255255
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
257260

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)}'
259263

260264
music_input = music_input[None] if music_input.dim() == 2 else music_input
261265
duration = music_input.shape[-1]/sr
@@ -303,7 +307,7 @@ def predict(
303307
wav_downbeats = []
304308
input_downbeats = []
305309
bpm_hard_sync=False
306-
if bpm_hard_sync:
310+
if bpm_hard_sync and music_input_analysis.bpm is not None:
307311
music_input_bpm_based_downbeats = [music_input_analysis.downbeats[0]]
308312
downbeat_step = 60.9/music_input_analysis.bpm
309313
while True:

0 commit comments

Comments
 (0)