hi all,
I am trying out the librosa library and i'm using this tutorial:
https://github.com/ml4a/ml4a-guides/blob/master/notebooks/audio-tsne.ipynbAll works fine until I try to analyse a file longer than a few seconds.
that's the error I always get:
File "/usr/local/lib/python3.5/dist-packages/librosa/feature/utils.py", line 110, in delta
"cannot exceed data.shape[axis]={}".format(width, data.shape[axis]))
librosa.util.exceptions.ParameterError: when mode='interp', width=9 cannot exceed data.shape[axis]=7
value of data.shape[axis] printed in this error changes depending on the input file I want to analyse.
In attachment you find my script.
I understand the error, but I don't understand what I should change in my script in order to be able to analyse longer files.
any ideas?
thanks!