Make sure ffmpeg is up-to-date:
brew update
brew upgrad ffmpeg
Optional: crop the frames to 600x400px using 824,690 as top/left
mkdir cropped
convert ??.png -crop 600x400+824+690 cropped/Create the pallete.gif
ffmpeg -i cropped/%02d.png -vf palettegen pallete.pngAaaand create the GIF
ffmpeg -v warning -i cropped/%02d.png -i pallete.png -lavfi "paletteuse,setpts=6*PTS" -y out.gif
Hello,
How to Add Transparent of the GIF ?
The PNG images have transparency and the output GIF does not have transparent. Any fix ?