我使用此示例代码作为测试用例:https://matplotlib.org/examples/animation/moviewriter.html
在此代码中,他们使用FFMPEG将matplotlib动画写入.mp4视频文件。是否可以写入.webm格式?
但我不知道该怎么做。
答案 0 :(得分:2)
确保ffmpeg
compiled与libvpx
一起运行{运行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):
[...]