I want make a .gif
animated picture from a given set of .jpg
pictures.
I would prefer to do it from the command line, so command line tools would be very welcome.
I want make a .gif
animated picture from a given set of .jpg
pictures.
I would prefer to do it from the command line, so command line tools would be very welcome.
You can use ImageMagick package. Install it using the command:
Now you can create a
gif
from number of pictures(jpg
) using:To complete @Maythux answer:
To avoid generating a very large file, you can use
-resize
option:In my case, I have 4608x3456 images and the generated gif was more than 300M for 32 images
or
Take care of *.jpg
*.jpg
sucks a bit when dealing with numeric values, you may generate a gif with unsorted pics.As the shots were taken very quickly (10/s) they all have the same modification time and you can't trick using
ls -t
for example. On ubuntu you can usels -v
instead, something like:Sorting numerically is quite tricky on Mac OS X though, I guess you'll need to build a custom script.
ffmeg solution + test data
As of Ubuntu 18.10, ffpmeg 4.0.2-2, ImageMagick 6.9.10-8, I have found that ffmpeg is much faster than ImageMagick, and uses much less memory.
The simplest conversion command is:
You can get my test data with:
The test data was generated with: https://stackoverflow.com/questions/3191978/how-to-use-glut-opengl-to-render-to-a-file/14324292#14324292 and contains 256 1024x1024 PNG images.
And here is another test data that you can generate directly in your browser right now! https://stackoverflow.com/questions/19235286/convert-html5-canvas-sequence-to-a-video-file/57153718#57153718
The important
ffmpeg
options I want to highlight are:-pattern_type glob
: convenient way to select images-framerate 60
: assume 60 FPS on input images, and output the same FPS.ffmpeg
cannot know otherwise, since there is no FPS data is in images as there is is in video formats.The 256 input frames take about 4 seconds to finish.
-r 15
: optional. Pick one every 4 images so reduce size (4 == 60 / 15
).With it,
identify out.gif
says that the GIF contains only 64 frames.It still takes 4 seconds to play, so the delay is altered to make things match.
-vf scale=512:-1
: optional. Set the width, scale height proportionally, usually to reduce size and save space.See also:
ImageMagick vs ffmpeg benchmark
To get ImageMagick to work, I first had to modify its disk and memory limits at
/etc/ImageMagick-6/policy.xml
as explained at: https://superuser.com/questions/1178666/imagemagick-convert-quits-after-some-pagesI compared the commands:
The commands were constructed to produce outputs that are as close as possible to make the comparison valid:
/usr/bin/time -v
: used to find the maximum memory usage as explained at: https://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process-deconstruct
: GIF images can contain just the minimal modified rectangle from the previous frame to make the GIF smaller.ffmpeg
calculates those diffs by default, but ImageMagick does not, unless-deconstruct
is used.You will basically want to use that option every time with ImageMagick.
We can observe the difference with:
With the compressed version, all frames have smaller sizes than the initial one, e.g.:
In this example, the second frame is only
516x516
instead of the full 1024x1024, and is placed at an offset of252+257
. It therefore contains just the middle triangle.See also: how can I resize an animated GIF file using ImageMagick?
-delay
: value that matches the 60FPS offfmpeg
. Should not matter for conversion performance, but I don't want to risk it.The output GIFs have about the same size and look visually identical.
We get for ImageMagick:
and for ffmpeg:
from which we see that:
Test hardware: Lenovo ThinkPad P51 laptop, Intel Core i7-7820HQ, 32GB(16+16) DDR4 2400MHz SODIMM, 512GB SSD PCIe TLC OPAL2.
Instead of modifying file names you can use globbing to get your shell to expand file names
GIMP
You can easily do this with GIMP. First install it if it's not installed already with
Creating the gif
From GIMP go to File -> Open as Layers to open all the png's on their own layer.
From here you can perform edits on the layers and, once done, go to File -> Export As. From the dialog be sure to set the file type to GIF.
From there you will go to the GIF export options. Tick the 'As Animation' option and set the parameters as required.
To change the delay between frames
Modify the name of the layers, and include the delay in milliseconds between parenthesises, like this:
(1500ms)
To preview the animation before exporting
Click "Filters" menu, then "Animation", then "Animation Playback".
You can use a program called convert included in the imagemagick package. It is command line driven, but very easy to use. Install it either through the software center, or go to a command prompt and type
Now to create the .gif.
*Note the above example is straight from Image Magick Examples