我可以将matplotlib动画保存为webm格式吗?

时间:2017-09-19 12:04:51

标签: python animation matplotlib ffmpeg webm

我使用此示例代码作为测试用例:https://matplotlib.org/examples/animation/moviewriter.html

在此代码中,他们使用FFMPEG将matplotlib动画写入.mp4视频文件。是否可以写入.webm格式?

但我不知道该怎么做。

1 个答案:

答案 0 :(得分:2)

确保ffmpeg compiledlibvpx一起运行{运行ffmpeg,不带参数,并查看输出中是否有--enable-libvpx

FFMpegWriter = manimation.writers['ffmpeg']
writer = FFMpegWriter(fps=15, codec='libvpx-vp9') # or libvpx-vp8

[...]

with writer.saving(fig, "writer_test.webm", 100):
    [...]