解决Cannot find installation of real FFmpeg (which comes with ffprobe)问题

790 阅读1分钟

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.参考网址

  1. blog.csdn.net/weixin_3075…
  2. blog.csdn.net/hawaecho/ar…
  3. blog.csdn.net/smileformyl…
  4. blog.csdn.net/apsvvfb/art…
  5. blog.csdn.net/nima1994/ar…
  6. blog.csdn.net/Dillon2015/…