librosa.load: file not found error on loading a file

前端 未结 4 496
盖世英雄少女心
盖世英雄少女心 2021-01-28 09:17

I am trying to use librosa to analyze .wav files. I started with creating a list which stores the names of all the .wav files it detected.

data_dir = \'/Users/r         


        
4条回答
  •  醉梦人生
    2021-01-28 09:56

    That error suggests librosa is unable to find FFMPEG executables, of which avconv is an example.

    When not converting different samplerates, FFMPEG is often not needed. You can try to specify the sample size to be the original of the audio file during load()

提交回复
热议问题