Created
February 12, 2017 14:57
-
-
Save patriciogonzalezvivo/7d491ad543fd8f08d6d22c3f3181729e to your computer and use it in GitHub Desktop.
Frag Shader to gif
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SHADER=$1 | |
SEC=$1 | |
COUNTER=0 | |
for i in `seq -w 0.01 .031 $SEC`; do | |
echo $i | |
`glslViewer $SHADER -s $i -o frame-$COUNTER.png` | |
let COUNTER=COUNTER+1 | |
done | |
convert -delay 3.5 -loop 1 frame-*.png animated.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment