I am new to Python animations and I'm trying to save one, following this tutorial:
https://jakevdp.github.io/blog/2012/08/18/matplotlib-animation-tutorial/
Everything works except the saving part:
# save the animation as an mp4. This requires ffmpeg or mencoder to be
# installed. The extra_args ensure that the x264 codec is used, so that
# the video can be embedded in html5. You may need to adjust this for
# your system: for more information, see
# http://matplotlib.sourceforge.net/api/animation_api.html
anim.save('basic_animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])
I downloaded and extracted Mencoder from here: http://www.videohelp.com/software/MPlayer
but not sure what to do now. I looked online but was unable to find step-by-step instructions from downloading the software to calling it in Python. I am using 64-bit Windows 10. Any help would be much appreciated.