1 Cannot find installation of real FFmpeg (which comes with ffprobe)

今天在Python中使用skvideo库获取视频的旋转元数据信息时,出现了以下的报错

assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."
AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).

从报错信息上来看是没有找到ffmpeg,但是我在电脑的环境变量中是配置了ffmpeg的路径的,按理来说如果使用环境变量是可以找到的。而这里找不到是表示在当前的conda环境中找不到ffmpeg,所以解决方法就是在当前的conda环境下安装ffmpeg,输入以下命令:

conda install ffmpeg -c conda-forge

等待安装完成之后就可以解决上述报错了。