LoginSignup
14
10

More than 5 years have passed since last update.

mov -> gif

Posted at

よく QuickTime Player で iPhone の動画とって gif にして社内で共有することがあるので、その時に使ってるコマンドをメモ。

必要なもの: ffmpeg, gifsicle (どっちも brew で入る)

ffmpeg -i input.mov -vf "scale=320:-1" -pix_fmt rgb24 -r 30 -f gif - | gifsicle --delay=3 --optimize=3 > output.gif

これでバグ報告するの捗る……ような気がしてます。

参考

14
10
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
14
10