User Tools

Site Tools


python:animation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
python:animation [2015/11/25 13:57]
admin created
python:animation [2021/10/25 08:53] (current)
Line 134: Line 134:
 from matplotlib.animation import ArtistAnimation from matplotlib.animation import ArtistAnimation
 a = ArtistAnimation(f, lines, interval=50, blit=True) a = ArtistAnimation(f, lines, interval=50, blit=True)
-a.save('walker.mp4', 'avconv')+a.save('walker.mp4', 'avconv', fps=20, extra_args=['-vcodec', 'libx264']))
 show() show()
 </file> </file>
Line 161: Line 161:
 from matplotlib.animation import FuncAnimation from matplotlib.animation import FuncAnimation
 a = FuncAnimation(f, func, frames=N, interval=50, blit=True) a = FuncAnimation(f, func, frames=N, interval=50, blit=True)
-a.save('walker.mp4', 'avconv')+a.save('walker.mp4', 'avconv', fps=20, extra_args=['-vcodec', 'libx264'])
 show() show()
 </file> </file>
python/animation.1448459846.txt.gz ยท Last modified: 2021/10/25 08:53 (external edit)