first commit

This commit is contained in:
tth 2020-02-19 22:39:09 +01:00
parent a0a563dfa1
commit 155674e74b
1 changed files with 56 additions and 0 deletions

56
scripts/echomix.sh Normal file
View File

@ -0,0 +1,56 @@
#!/bin/bash
###############################
# ECHOMIX #
###############################
SRCDIR="Fist"
DSTDIR="Pong"
FTMP="/dev/shm/tmp.fimg"
FDST="/dev/shm/foo.fimg"
# ------------------------------------------------------------
# count the nomber of picz in the source directory
#
NBRE=$(ls -1 ${SRCDIR}/*.fimg | wc -l)
# compute the echo picz offset
#
OFFS=$(( NBRE / 4 ))
# ------------------------------------------------------------
# MAIN LOOP
for idx in $(seq 0 $NBRE)
do
# build the two input filenames ...
#
imgA=$(printf "$SRCDIR/%04d.fimg" $idx)
vb=$(( $(( idx + OFFS )) % NBRE))
imgB=$(printf "$SRCDIR/%04d.fimg" $vb)
# ... ant the output filename
#
dst=$(printf "%s/%05d.png" ${DSTDIR} $idx)
printf " %20s %20s %8df %20s\n" $imgA $imgB $vb $dst
# trying to autocompute the mixing coefficient
#
compute=" s(${idx} / 16) "
K=$(echo $compute | bc -l)
printf " %25s => %8.3f\n" "$compute" $K
# do the hard floating computation
#
fimgfx -v cos010 ${imgB} ${FTMP}
fimgops -k ${K} ${FTMP} ${imgA} mix ${FDST}
# write the output as PNG for video encoding
#
fimg2png ${FDST} ${dst}
done
# ------------------------------------------------------------