將一般動畫檔轉為 GIF 動畫 首先要有 ffmpeg,沒有的話到軟體中心安裝。啟動終端機,到動畫檔所在的目錄,輸入以下指令: ffmpeg -i input.avi output.gif input.avi 是要被轉換的檔案,output.gif 是輸出檔 擷取影片為單幅影像 ffmpeg -i input.mp4 -vf fps=1/60 img_%03d.png fps : 每隔多少時間擷取 1 幅 - 1/60 為每 60 秒擷取 1 幅 img_%03d.png : 影像命名規則 img_ : 編號前的名稱 %03d : 編號規則 - 三位數依序編號;%04d 則為四位數依序編號 References: video - Fastest way to extract frames using ffmpeg? - Stack Overflow FFMPEG An Intermediate Guide/image sequence - Wikibooks, open books for an open world