1.问题描述
File "test.py", line 125, in <module>
vid = skvideo.io.vread('fire1.jpg')
File "C:\Users\fguby\Anaconda3\lib\site-packages\skvideo\io\io.py", line 133, in vread
assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."
AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).
2.解决方案
安装conda-forge
conda-forge是编译的ffmpeg视频编解码库,它可直接对视频读存取
conda install ffmpeg -c conda-forge
3.参考网址
- blog.csdn.net/weixin_3075…
- blog.csdn.net/hawaecho/ar…
- blog.csdn.net/smileformyl…
- blog.csdn.net/apsvvfb/art…
- blog.csdn.net/nima1994/ar…
- blog.csdn.net/Dillon2015/…