another try...

This commit is contained in:
Tonton Th 2026-02-16 23:53:20 +01:00
parent 27b37f17dd
commit b246f3ba23

View File

@ -13,7 +13,7 @@ set -e ; set -u
source tools/config.sh source tools/config.sh
source tools/fonctions.sh source tools/fonctions.sh
START=50 START=1
if [ $# == 1 ] if [ $# == 1 ]
then then
START=$1 START=$1
@ -32,9 +32,10 @@ do
imgB=$(printf "frames/Spool/%05d.png" $((frame-1))) imgB=$(printf "frames/Spool/%05d.png" $((frame-1)))
imgC=$(printf "frames/TMP/%05d.png" $frame) imgC=$(printf "frames/TMP/%05d.png" $frame)
# echo $imgA $imgB # echo $imgA $imgB
printf "%d " $frame printf "%8d" $frame
composite $imgA $imgB \ composite $imgA $imgB \
-blend 70% \ -blend 50% \
-blur 1x1 \
$imgC $imgC
done done