问题
AttributeError: module 'ffmpeg' has no attribute 'probe'
原因
系统里安装了另一个名为 ffmpeg 的模块,就会覆盖掉 ffmpeg-python 的功能,导致报出 "module 'ffmpeg' has no attribute 'probe'" 的错误
解决
重新安装
pip uninstall ffmpeg-python
pip install ffmpeg-python
解决
AttributeError: module 'ffmpeg' has no attribute 'probe'
系统里安装了另一个名为 ffmpeg 的模块,就会覆盖掉 ffmpeg-python 的功能,导致报出 "module 'ffmpeg' has no attribute 'probe'" 的错误
重新安装
pip uninstall ffmpeg-python
pip install ffmpeg-python
解决