mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-03 23:15:23 +00:00
14 lines
220 B
Bash
Executable File
14 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILE=$1
|
|
SEC=$2
|
|
|
|
COUNTER=0
|
|
for i in `seq -w 0.01 .031 $SEC`; do
|
|
echo $i
|
|
`glslViewer $FILE -s $i -o frame-$COUNTER.png`
|
|
let COUNTER=COUNTER+1
|
|
done
|
|
|
|
convert -delay 3.5 -loop 1 frame-*.png animated.gif
|