当前位置:   article > 正文

解决:soundfile打开opus文件出错: File contains data in an unimplemented format.

file contains data in an unimplemented format
  • Python的soundfile库依赖于libsndfile库,需要安装最新版本
sudo apt-get update
sudo apt-get install libsndfile1
  • 1
  • 2
  • 如果之前已经安装soundfile,则可能采用了旧版libsndfile,如下
# Python环境下
>>> soundfile.__version__
'0.12.1'
>>> soundfile.__libsndfile_version__
'1.0.28'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 此时,强制重新安装soundfile即可
pip install --force-reinstall soundfile
# Python环境下
>>> soundfile.__version__
'0.12.1'
>>> soundfile.__libsndfile_version__
'1.2.0'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 然后,soundfile就能读取opus文件了
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/889349
推荐阅读
相关标签
  

闽ICP备14008679号