python使用soundfile插件,报该错误
OSError: cannot load library 'C:\Users\C0nsultant\AppData\Local\Programs\Python\Python37\lib\site-packages\_soundfile_data\libsndfile64bit.dll': error 0x7e
原因是使用pip安装的soundfile其实只是python版本的包裹,需要在使用pip安装之前,安装exe版本的该软件
http://www.mega-nerd.com/libsndfile/#Download
从上述网址下载对应系统的软件。
重新安装soundfile
pip uninstall -y cffi pycparser SoundFile
pip install soundfile
此时即解决该问题