LoginSignup
24
21

More than 5 years have passed since last update.

動画からアニメーションGIFを高品質に素早く生成する

Posted at

何年も悩んでいたけど最終的にこれに落ち着いた。

ffmpeg -i input.mp4 -r 10 -f image2pipe -vcodec ppm - \
  | convert -layers Optimize - gif:- \
  | gifsicle -O3 --multifile - > output.gif

https://github.com/uiureo/videotogif
ffmpeg, imagemagick, gifsicleが必要。

ffmpegだけでもgif生成できるけどノイズがひどいので、imagemagickを使って減色処理をして、できたGIFをgifsicleを使って圧縮してファイル容量を削減している。

pipeしているので中間ファイルができなくて変なことを考える必要がない。

参考

24
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
21