is extracteur ready for the prime time ?

This commit is contained in:
tth
2021-04-10 23:04:18 +02:00
parent 7718ca0f62
commit 9cf60526d7
2 changed files with 66 additions and 14 deletions

View File

@@ -1,9 +1,19 @@
#!/bin/bash
make assemblage
make extracteur
grabvidseq -vv -n 4 -p 3.3333 -o foo.fimg
IMGS="foo.fimg"
./assemblage -v
for idx in $(seq 0 69)
do
outf=$(printf "%s/X%04d.png" "/tmp" $idx)
echo $outf
x=$(( idx * 4 ))
y=$(( idx + 80 ))
./extracteur $IMGS 320,200,${x},${y} $outf
done
convert -delay 10 /tmp/X????.png foo.gif
display out.pnm