Minor fix with void_freq

This commit is contained in:
Alexandre 2024-05-28 20:53:24 +02:00
parent b212c86a00
commit e55dde20ba
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ def process_song(filename, bpm, offset=0, div_len_factor=1, n_iter_2=-1, thresho
n_iter = n_iter_2
if(n_iter == -1):
song_len = get_songlen(filename)
n_iter = int(song_len/div_len)-1
n_iter = int(song_len/div_len)-1/3
filtered_name = f"{filename}_trimmed.wav"