私は問題があります:Animation.Artistアニメーションを保存する方法はありますか?
私のプログラムはうまくいっていますが、プロットしたアニメーションを保存しようとすると、コンパイラはエラーで応答します。
コード:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import matplotlib.animation as animation
fig=plt.figure()
for infile in glob.glob('*.png'):
img=mpimg.imread(infile)
imgplot=plt.imshow(img)
im_list2.append([imgplot])
ani = animation.ArtistAnimation(fig, im_list2, interval=50, blit=True)
しかし、私はこのようにそれを保存しよう:
ani.save('Animation1.mp4')
それはエラーを返します:
WindowsError: [Error 2] The system could not find the given data.
私は、問題を示す完全な最小限の例を提供していますが、回答するのがはるかに簡単です。 –
あなたの質問に対する回答が見つかった場合(あなたの質問に対する答えにindia_douradaで与えられているように)、あなた自身の質問に答え、それを受け入れたものとしてマークする必要があります。 – bmu