美文网首页
遇到的可恨又迷人的bugs

遇到的可恨又迷人的bugs

作者: zhnidj | 来源:发表于2018-05-29 11:45 被阅读0次

1、在 clip.write_videofile('test.mp4',fps=25)时报错:

Unknown encoder 'libx264' 

解决方法:conda install -c conda-forge ffmpeg

2、使用concatenate_videoclips把ImageClip接起来的时候会报错

concatenate ImageClip · Issue #285 · Zulko/moviepy · GitHub

解决方法:list_frame.append(ImageClip(frame,duration=1/float(25)))

加上duration就好啦

3、虽然len(list_frame)==64 但是

final=concatenate_videoclips(list_frame)

video.write_videofile(dir_output,fps=25)的话可能最终不只64帧,也许是65,67帧等等

如果

video.write_videofile(dir_output,fps=clip.fps)则可能是64,可能是65

可能等于65,

4、yum一直报错

[Errno 14] curl#6 - "Could not resolve host: apt.sw.be; Name or service not known"

/etc/yum.repos.d里面我找到含有报错信息的文件dag.repo 屏蔽掉就可以了,重命名为dag.repo.backup

5、AttributeError: 'module' object has no attribute XXXX

文件名和库名冲突了,把文件名改掉

相关文章

  • 遇到的可恨又迷人的bugs

    1、在 clip.write_videofile('test.mp4',fps=25)时报错: Unknown e...

  • Hungry sausage-Eating insects

    Sausages like to eat bugs. If there are bugs flying over ...

  • GMAIL SPDY V3 header decompress

    Wireshark · Wireshark-bugs: [Wireshark-bugs] [Bug 10528] ...

  • on the way,迷人的、危险的、迷人又危险的

    文/風雨綫 时间/ 2017年8月18日 —001— 今早,出门散步的目的地——南洋村红心猕猴桃基地。 散步队...

  • Bugs

    1. Server Tomcat v9.0 Server at localhost failed to start...

  • Bugs

    【日期】:2004-08-17 【问题】:当解码 Q.931 信令时无限循环 【原因】:当在Q.931信令中发现一...

  • [Bugs]

    [杂项][BUG]python 中debug出现ImportError: cannot import name c...

  • find-sec-bugs

    简介 find-sec-bugs 即 Find Security Bugs,是SpotBugs的一款插件,用于Ja...

  • 可爱又迷人的反派

    优雅 流线体、黑白相间, 回声定位、协调、群攻 合作无间, 捕猎 所向披靡... 大白鲨 闻之丧胆的袭击。 可爱又...

  • 那些又长又迷人的小说

    读《静静的顿河》,人民文学出版社的四大本,第一次有了慢点慢点看,看完就没有了的感觉。特别是第一本,个人觉得肖洛霍夫...

网友评论

      本文标题:遇到的可恨又迷人的bugs

      本文链接:https://www.haomeiwen.com/subject/fjtprftx.html