Commit ec75754f authored by Jan Kiene's avatar Jan Kiene
Browse files

fix file naming

parent d1474a55
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ def setup_input_files_for_config(config):
    testv_signal, fs = read(testv_file)
    assert fs == 48000
    for i in range(N_INPUT_SIGNALS):
        f_out = input_path.joinpath(testv_file.name).with_suffix(f".{i}.wav").resolve().absolute()
        f_out = input_path.joinpath(testv_file.name[:-4] + f"_{i}.wav").resolve().absolute()
        write(f_out, testv_signal[i * 48000 : (i + 1) * 48000, :])
        files_copied.append(f_out.name)