欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python绘制动画并保存为gif/mp4 (matplotlib)

程序员文章站 2022-03-01 15:05:38
...

animation.ArtistAnimation函数

ani = animation.ArtistAnimation(fig, lns, interval=50) #生成动画

ani.save("pendulum.gif", writer='pillow')

ani.save('Pendulum_Animation.mp4',writer='ffmpeg',fps=1000/50)

 

fig是用来展示的figure,用plt.figure()生成

lns是list格式,每一个元素是一个完全由artists 类组成的collection ,代表一帧,并且只在这一帧显示(过了这一帧会被擦除)

interval是每一帧之间的间隔

 

 

https://github.com/skyerhxx/Pendulum

相关标签: Python matplotlib

上一篇: spfa(模板)

下一篇: 绘制动画