Open WindowsNT opened 1 year ago
You changed filename in
file_template = 'AMI_WSJ20-Array1-{}_T10c0201.wav'
signal_list = [
sf.read(str(project_root / 'data' / file_template.format(d + 1)))[0]
for d in range(channels)
]
to
file_template = 'r:/reverb.wav'
without touching the signal_list
.
I guess, the file is a multichannel file and hence the code complains, that the number of axes doesn't match.
Could you check the shape of y
and stft(y, **stft_options)
?
I will try it with a mono file and let you know.
Result,
It looks nice, but I can't yet use it.