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

1.问题描述


  File "test.py", line 125, in 
    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. https://blog.csdn.net/weixin_30752699/article/details/99641964
  2. https://blog.csdn.net/hawaecho/article/details/9017003
  3. https://blog.csdn.net/smileformylove/article/details/99729230?utm_medium=distribute.pc_relevant.none-task-blog-searchFromBaidu-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-searchFromBaidu-1.channel_param
  4. https://blog.csdn.net/apsvvfb/article/details/78627930?utm_medium=distribute.pc_relevant.none-task-blog-baidulandingword-4&spm=1001.2101.3001.4242
  5. https://blog.csdn.net/nima1994/article/details/90170904?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-5.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-5.channel_param
  6. https://blog.csdn.net/Dillon2015/article/details/80223474?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param

你可能感兴趣的:(Python)