I have used a python script which generates plots using a data file. Now because of huge amount of data, I am getting images in the range of 5000 and using ImageMagick's convert on a sequential processing is taking a lot of time.
I referred to this question, where GNU Parallel has been used along with ImageMagick. Is it possible to use a similar code for making a gif?
The command for converting images to gif that I am using is:
convert -delay 0.2 -loop 0 slice_VOF2* slice_VOF.gif
Thanks in advance
Vishwesh