Add n_iter in frequence_process.py... (still broken)

This commit is contained in:
Thibaud 2024-05-30 20:45:53 +02:00
parent acd0f68e4c
commit 8955731742
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def process_with_map():
timing = beatmap.timing_points[0]
bpm = timing.bpm
offset = timing.offset.total_seconds() * 1000
data = sound_process.process_song(beatmap.audio_filename, bpm, offset0=offset)
data = sound_process.process_song(beatmap.audio_filename, bpm, offset0=offset, n_iter_2=48)
timings, amplitudes, freqs = [x[0].total_seconds() for x in data], [x[1] for x in data], [x[2] for x in data]