You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using ImageMagick on Windows, and nothing seems to be happening after it prints 'Writing Gif' just after calling write_gif. For comparison, It takes about 5 seconds to generate the frames with ffmpeg and instantly writes the file, and although with imagemagick the frames are generated instantly, but the proc2.wait() in gif_writers.py hangs and ignores my CTRL+C presses.
This is likely an issue on my end, but the convert demo for converting the logo works fine.
Is your gif very big or very long ? If it is the case, can you make the experience with a shorter clip, and tell me if it works (if the process actually ends and produces a GIF ?). Otherwise it might be a real bug.
ImageMagick is extremely slow, if your gif has more than 100 average-sized frames it will take forever. You can either wait, or reduce the number of frames with fps=10, or use program='ffmpeg' in write_gif to assemble the gif with ffmpeg, which will be much faster.
Ah that's probably it then, just ImageMagick being slow. I had assumed that
since the generation happened faster, the rest of it would be faster too.
I'll close this then, because if you do proc2.terminate after a few
minutes, a portion of the file is saved. Thanks.
If you gif very big or very long ? If it is the case, can you make the
experience with a shorter clip, and tell me if it works (if the process
actually ends and produces a GIF ?). Otherwise it might be a real bug.
ImageMagick is extremely slow, if your gif has more than 100
average-sized frames it will take forever. You can either wait, or reduce
the number of frames with fps=10, or use program='ffmpeg' in write_gif to
assemble the gif with ffmpeg, which will be much faster.
—
Reply to this email directly or view it on GitHub #93 (comment).
I'm using ImageMagick on Windows, and nothing seems to be happening after it prints 'Writing Gif' just after calling
write_gif
. For comparison, It takes about 5 seconds to generate the frames with ffmpeg and instantly writes the file, and although with imagemagick the frames are generated instantly, but theproc2.wait()
ingif_writers.py
hangs and ignores myCTRL+C
presses.This is likely an issue on my end, but the
convert
demo for converting the logo works fine.Using the latest version of moviepy off of pip (thanks for updating it!).
The text was updated successfully, but these errors were encountered: