Animate a series of images around a central point.
Each output frame that Gif Twist creates is a combination of all input frames offset by time.
This project was just an experiment and acts as a working example of the technique. It is not performant because it uses masking to merge each image slice into the out rather then iterating over the output pixels and simply selecting its value from one of the source images.
Install go-lang, avconv & gifsicle.
avconv -i time.mp4 -r 1.5 -an -y 'inputs/%04d.png'
go run giftwist.go
gifsicle --delay=4 --optimize --loop out/*.gif > ../out.gif
I saw this technique manually generated in this reddit post by Spiritgreen.