AttributeError: module 'ffmpeg' has no attribute 'get'
时间: 2024-05-23 20:08:09 浏览: 70
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误提示意味着在调用 ffmpeg 模块的 get 方法时出现了问题,因为 ffmpeg 模块中并不存在 get 方法。
可能是因为你的代码中使用了 ffmpeg 模块的 get 方法,但是该方法不存在,或者是因为导入 ffmpeg 模块时出现了问题。
建议你检查一下代码中导入 ffmpeg 模块的语句是否正确,以及是否正确地使用了 ffmpeg 模块中的方法。如果需要使用 ffmpeg 的其他方法,请查阅官方文档或者其他可靠资源进行学习。
阅读全文