Ubuntu 製作 gif

本篇介紹如何在 Ubuntu 下製作 gif,
先安裝 imagemagick 套件

1
sudo apt-get install imagemagick

將圖片轉 gif 指令

1
2
3
convert -delay 30 -loop 0 *.JPG output.gif
# delay: 1 為 0.01 秒 (100 為 1秒)
# loop: 0 表示 infinite loop

合併多個 gif 指令

1
convert -delay 30 -loop 0 *.gif output.gif

將影片轉換為 gif 指令
參考如何在Ubuntu 16.04中創建GIF動圖

參考
如何在ubuntu中製作gif檔
如何在Ubuntu 16.04中創建GIF動圖