以编程方式在Python中生成视频或动画GIF?

我有一系列想要从中创建视频的图像。 理想情况下,我可以为每个帧指定帧持续时间,但固定帧速率也可以。 我在wxPython中这样做,所以我可以渲染到wxDC,或者我可以将图像保存为文件,如PNG。 有没有一个Python库允许我从这些框架创建视频(AVI,MPG等)或动画GIF?

编辑:我已经试过PIL,它似乎并没有工作。 有人可以用这个结论纠正我,还是建议另一个工具包? 这个链接似乎支持我关于PIL的结论:http://www.somethinkodd.com/oddthinking/2005/12/06/python-imaging-library-pil-and-animated-gifs/


我建议不要使用visvisa中的images2gif,因为它存在PIL / Pillow问题,并且不会主动维护(我应该知道,因为我是作者)。

相反,请使用imageio,它是为解决此问题而开发的,旨在留下来。

快速肮脏的解决方案

import imageio
images = []
for filename in filenames:
    images.append(imageio.imread(filename))
imageio.mimsave('/path/to/movie.gif', images)

对于更长的电影,请使用流媒体方式:

import imageio
with imageio.get_writer('/path/to/movie.gif', mode='I') as writer:
    for filename in filenames:
        image = imageio.imread(filename)
        writer.append_data(image)

截至2009年6月,最初引用的博客文章提供了一种在评论中创建动画GIF的方法。 下载脚本images2gif.py(原图片2gif.py,更新@geographika更新)。

然后,例如,在gif中反转帧:

#!/usr/bin/env python

from PIL import Image, ImageSequence
import sys, os
filename = sys.argv[1]
im = Image.open(filename)
original_duration = im.info['duration']
frames = [frame.copy() for frame in ImageSequence.Iterator(im)]    
frames.reverse()

from images2gif import writeGif
writeGif("reverse_" + os.path.basename(filename), frames, duration=original_duration/1000.0, dither=0)

好吧,现在我正在使用ImageMagick。 我将帧保存为PNG文件,然后从Python调用ImageMagick的convert.exe来创建动画GIF。 这种方法的好处是我可以为每个帧分别指定帧持续时间。 不幸的是,这取决于机器上安装的ImageMagick。 他们有一个Python包装,但它看起来很糟糕,不受支持。 仍然接受其他建议。

链接地址: http://www.djcxy.com/p/41221.html

上一篇: Programmatically generate video or animated GIF in Python?

下一篇: Search in logfile