yanx27 / EverybodyDanceNow_reproduce_pytorch

Everybody dance now reproduced in pytorch
MIT License
605 stars 174 forks source link

make_gif.py #84

Open ZJ9527 opened 4 years ago

ZJ9527 commented 4 years ago

the following is my error Traceback (most recent call last): File "make_gif.py", line 52, in anim.save("output.gif", writer="imagemagick") File "/usr/local/lib/python3.6/dist-packages/matplotlib/animation.py", line 1102, in save alt_writer = next(writers, None) TypeError: 'MovieWriterRegistry' object is not an iterator how can i solve it?

andrewhani14 commented 4 years ago

Same problem , did you solve it ?

ZJ9527 commented 4 years ago

yes it is a version problem you just change the code on last line anim.save("output.gif", writer="imagemagick") to anim.save("output.gif", writer="pillow")

ZJ9527 commented 4 years ago

what is more the output.gif will be saved in the root directory

andrewhani14 commented 4 years ago

Thank youu , worked for me