Loading tests/test_experiments.py +1 −1 Original line number Diff line number Diff line Loading @@ -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) Loading Loading
tests/test_experiments.py +1 −1 Original line number Diff line number Diff line Loading @@ -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) Loading