What command would I use to convert an mp4 or mv4 video file to an animated gif, and vice versa. That is, convert a animated gif to a mp4 or mv4.
5 Answers
Here's what worked for me:
ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4
movflags – This option optimizes the structure of the MP4 file so the browser can load it as quickly as possible.
pix_fmt – MP4 videos store pixels in different formats. We include this option to specify a specific format which has maximum compatibility across all browsers.
vf – MP4 videos using H.264 need to have a dimensions that are divisible by 2. This option ensures that’s the case.
Source: http://rigor.com/blog/2015/12/optimizing-animated-gifs-with-html5-video

- 2,791
In my case, using ffmpeg
directly did the trick and provided the best result:
$ ffmpeg -f gif -i infile.gif outfile.mp4

- 1,101
-
9
-
2@Pykler you should probably increase verbosity and/or check the log file to understand what's happening. – BenC Jul 17 '16 at 19:02
-
2Me too, probably the "divisible by 2 dimensions" suggested in vico Vault's answer. (which worked for me) – lapo Oct 24 '16 at 11:20
-
This method worked perfectly for me. (The top answer caused 3 seconds to be cut off the end.) EDIT: oh but it doesn't play on iOS :( – callum Feb 22 '18 at 13:07
-
-
-
This showing
1 file you tried adding is not supported.
error if upload to WhatsApp. Need-pix_fmt yuv420p
and also-vf "scale=trunc(iw/2)*2:trunc(ih/2)*2"
(to fixnot divisible by 2
error) to work. – 林果皞 Dec 20 '19 at 15:51 -
A side note: the important thing is to specify -pix_fmt yuv420p
lest your video might seem a black rectangle in various tools:
$ ffmpeg -i animated.gif -pix_fmt yuv420p output.mp4
References

- 249
-
Not just Apple, but also Windows media player sometimes can't play the output if you don't specify that option. And if you try playing it with other players, it would be a comeple gray screen with artifacts showing on video. – Shayan Dec 01 '19 at 13:28
-
1I get
height not divisible by 2 (260x373)
andError initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
error message. But this answer works for me. – 林果皞 Dec 20 '19 at 15:36 -
1observation - isn't the OP about taking animated gif as input (and/or output)? your answer has no gif as input or output – nhed Jul 24 '20 at 03:31
-
1@nhed thanks, I slightly reworded it to put it back into the context – beefeather Jul 28 '20 at 12:14
If you want to make the output in "n loops", look at this solution in one shot
So, let's convert a normal.gif to loop.mp4
for 2 loops movie example:
ffmpeg -stream_loop 2 -i normal.gif loop.gif -y;ffmpeg -i loop.gif -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" loop.mp4 -y
for 5 loops movie example:
ffmpeg -stream_loop 5 -i my.gif loop.gif -y;ffmpeg -i loop.gif -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" loop.mp4 -y
be aware: There's a -y option, so the output files will be overwritten
the -vf option is to resolve the ratio proportionality [width vs height]

- 201
-
If you run the first
ffmpeg
command without-y
, you'll have much less chance of accidentally overwriting something you don't want to. (There's also probably a way to getffmpeg
to pipe video into itself, and do this in one piped command without the intermediate file and the overwrite.) – FeRD Sep 18 '19 at 19:15
Another way to convert GIF animation to video:
ffmpeg -i your_gif.gif -c:v libvpx -crf 12 -b:v 500K output.mp4
-crf values can go from 4 to 63. Lower values mean better quality. -b:v is the maximum allowed bitrate. Higher means better quality.

- 2,457
scale
withcrop
), as you're only going to be cutting off at most 1 pixel. Scaling might make things blurry – Jezzamon Feb 01 '18 at 08:12"trunc(iw/2)*2:-2"
and the height automatically becomes divisible by 2 while respecting the aspect ratio. (Except:crop
does not accept negative values …) – WoodrowShigeru Feb 12 '21 at 10:25