I am trying to do a noise reduction in an audio wave file using the code below;
import noisereduce as nr
from scipy.io import wavfile
# load data
rate, data = wavfile.read("output.wav")
# select section of data that is noise
noisy_part = data[10000:15000]
# perform noise reduction
reduced_noise = nr.reduce_noise(audio_clip=data, noise_clip=noisy_part, verbose=True)
But I keep on getting the error below;
File "C:\...\noisereduce.py", line 5, in <module> rate, data = wavfile.read("output.wav")
ValueError: Incomplete wav chunk.
Any help on this?