mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-01 21:40:27 +00:00
14 lines
221 B
Bash
14 lines
221 B
Bash
|
#!/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
|