I am trying to run the command librosa.load()
on a .wav
file. The .wav file
was downloaded from a youtube video via youtube-dl and has the following properties:
- Number of channels: 2
- Sample rate: 44,100Hz
- Duration: 3486.104 seconds
However, the returned time series from the command librosa.load('file.wav')
is the following:
(array([0., 0., 0., ..., 0., 0., 0.], dtype=float32), 22050)
The .wav
file definitely has lots of noise so I don't quite understand why the output is 0
for every frame.
I also tried running librosa.load()
on other .wav
files of audio from other Youtube videos and had the same result.
If anyone has any idea about what is causing this output please let me now. Thanks in advance.