ffmpeg-python
ffmpeg-python copied to clipboard
AttributeError: module 'ffmpeg' has no attribute 'probe'
AttributeError: module 'ffmpeg' has no attribute 'probe' 80287984919.mpg 不能获取 .mpg 类型视频的数据
升级了ffmpeg-python 解决了
Hi @fanpiao ,你是升级到了什么版本,我现在用 0.2.0 版本会有这个问题 AttributeError: module 'ffmpeg' has no attribute 'input'
我是用pip 把ffmpeg-python 升级到最新版就解决了
新版本不知道为啥probe方法变私有了,可以使用下面这两条命令调用
from ffmpeg import _probe
probe = _probe.probe(path)