关于这个报错是因为不支持24位深的音频文件。 解决方法 将
(rate,sig) = wav.read(path)
替换为
(sig,rate) = librosa.load(path)
但是,这个参数顺序是反的要调一下