将动画导出到gif时出错-Matplotlib

强子

我的目标是将动画导出为gif格式。我可以使用mp4来实现,但是在转换为gif时出现错误。我不确定它的脚本是否错误或某些后端设置。

import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from matplotlib import animation

df1 = pd.DataFrame({
    'Time' : [1,1,1,2,2,2,3,3,3],        
    'GroupA_X' : [3, 4, 5, 12, 15, 16, 21, 36, 47], 
    'GroupA_Y' : [2, 4, 5, 12, 15, 15, 22, 36, 45],            
    'GroupB_X' : [2, 5, 3, 12, 14, 12, 22, 33, 41],   
    'GroupB_Y' : [2, 4, 3, 13, 13, 14, 24, 32, 45],                 
        })

fig, ax = plt.subplots()
ax.grid(False)
ax.set_xlim(0,50)
ax.set_ylim(0,50)

def groups():

    Group_A = df1[['Time','GroupA_X','GroupA_Y']]

    GA_X = np.array(Group_A.groupby(['Time'])['GroupA_X'].apply(list))
    GA_Y = np.array(Group_A.groupby(['Time'])['GroupA_Y'].apply(list))

    GA = ax.scatter(GA_X[0], GA_Y[0], c = ['blue'], marker = 'o', s = 10, edgecolor = 'black')

    return GA, GA_X, GA_Y

def animate(i) :

    GA, GA_X, GA_Y = groups()

    GA.set_offsets(np.c_[GA_X[0+i], GA_Y[0+i]])


ani = animation.FuncAnimation(fig, animate, np.arange(0,3), interval = 1000, blit = False)

# If exporting as an mp4 it works fine.

#Writer = animation.writers['ffmpeg']
#writer = Writer(fps = 10, bitrate = 8000)
#ani.save('ani_test.mp4', writer = writer)


#But if I try to export as a gif it returns an error:

ani.save('gif_test.gif', writer = 'imagemagick')

错误:

MovieWriter imagemagick unavailable. Trying to use pillow instead.

self._frames[0].save(
IndexError: list index out of range

注意:我也尝试了以下返回相同的内容 Index error

my_writer=animation.PillowWriter(fps = 10)
ani.save(filename='gif_test.gif', writer=my_writer)

我尝试从其他问题设置gif来调整许多设置我当前的动画设置如下。我正在使用Mac。

###ANIMATION settings
#animation.html :  none            ## How to display the animation as HTML in
                                   ## the IPython notebook. 'html5' uses
                                   ## HTML5 video tag; 'jshtml' creates a 
                                   ## Javascript animation
#animation.writer : imagemagick         ## MovieWriter 'backend' to use
#animation.codec : mpeg4            ## Codec to use for writing movie
#animation.bitrate: -1             ## Controls size/quality tradeoff for movie.
                                   ## -1 implies let utility auto-determine
#animation.frame_format:  png      ## Controls frame format used by temp files
#animation.html_args:              ## Additional arguments to pass to html writer
animation.ffmpeg_path: C:\Program Files\ImageMagick-6.9.1-Q16\ffmpeg.exe    ## Path to ffmpeg binary. Without full path
                                   ## $PATH is searched
#animation.ffmpeg_args:            ## Additional arguments to pass to ffmpeg
#animation.avconv_path:  avconv    ## Path to avconv binary. Without full path
                                   ## $PATH is searched
#animation.avconv_args:            ## Additional arguments to pass to avconv
animation.convert_path: C:\Program Files\ImageMagick-6.9.2-Q16-HDRI    ## Path to ImageMagick's convert binary.
                                   ## On Windows use the full path since convert
                                   ## is also the name of a system tool.
#animation.convert_args:           ## Additional arguments to pass to convert
#animation.embed_limit : 20.0
威廉·米勒

您配置的路径,

animation.ffmpeg_path: C:\Program Files\ImageMagick-6.9.1-Q16\ffmpeg.exe

animation.convert_path: C:\Program Files\ImageMagick-6.9.2-Q16-HDRI

适用于Windows,但是由于您使用的是Mac,因此需要MacOS的路径。您应该可以which从终端上使用它们在我的Ubuntu安装上which提供以下内容

>$ which convert
/usr/bin/convert

>$ which ffmpeg  
/usr/bin/ffmpeg

对于MacOS,应该类似。这些是需要提供给rcParamsanimation.convert_path的路径animation.ffmpeg_path,即

animation.ffmpeg_path: /usr/bin/ffmpeg
animation.convert_path: /usr/bin/convert

请注意,虽然在matplotlib配置中使用错误的路径会产生问题的错误,但修复它可能无法解决该错误-可能还有其他错误。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章