how to load wav file with python code example
Example: how to load wav file with python
from scipy.io import wavfile
samplerate, data = wavfile.read('./output/audio.wav')
# method 2
import librosa
#Store the sampling rate as `sr`
y, sr = librosa.load(filename)