def stretch(data, rate=0.8):
return librosa.effects.time_stretch(data, rate)
x = stretch(data)
plt.figure(figsize=(14,4))
librosa.display.waveplot(y=x, sr=sample_rate)
Audio(x, rate=sample_rate)
Above is my function and error when I tried to run it
I tried passing the data and rate into the stretch function but returns the error as shown. As you can see, it should take the data and rate then return the stretched file
This error occurs because you need set implicit rate parameter , because the definition of function has additional parameter, then parameter rate