release of the official "full-v2" video

This commit is contained in:
Tonton Th
2025-02-14 19:47:29 +01:00
parent 14a03b78eb
commit cd65855f2c
18 changed files with 137 additions and 62 deletions

View File

@@ -2,11 +2,12 @@
set -e ; set -u
# set default value's)
srcdir="essai"
if [ $# == 1 ]
then
srcdir=$1
else
srcdir="essai"
fi
source tools/fonctions.sh

View File

@@ -7,11 +7,11 @@ visual_sleep ()
msg="$1"
nbre="$2"
# echo $msg ; echo $nbre
# echo $msg ; echo $nbre
for foo in $(seq 0 $nbre) ; do
local bar=$(( $nbre - $foo ))
printf "XXXX %-20s %3d\r" "$msg" $bar
local bar=$(( $nbre - $foo ))
printf "======== %-20s %3d\r" "$msg" $bar
sleep 1
done
echo

View File

@@ -36,17 +36,18 @@ echo "linkfarm $SRC" | tee -a WS/log
local INTER="/dev/shm/tmp-intertitre.png"
tools/plot-timing.sh $1
local NBRE=90
local NBRE=75
convert "WS/negatif.png" \
-gravity north \
-font $FONTE \
-pointsize 96 \
-kerning 6 \
-kerning 8 \
-fill $TEXTCOL \
-strokewidth 2 -stroke $STROKOL \
-annotate +0+530 "$1" \
${INTER}
for foo in $(seq 0 $NBRE)
do
copy_a_file $INTER
@@ -142,6 +143,7 @@ linkfarm hexabenz
linkfarm hexacone
linkfarm escadrille
linkfarm survol
linkfarm cutoff
linkfarm topview
linkfarm passage
linkfarm scene

View File

@@ -40,8 +40,8 @@ do
# echo $frame $img $txt
convert ${TMPIMG} \
-font Courier-Bold \
-pointsize 14 \
-kerning 3 \
-pointsize 15 \
-kerning 7 \
-fill ${TEXTCOL} \
-gravity north \
-annotate +12+5 "$txt" \

View File

@@ -66,7 +66,7 @@ gnuplot << __EOC__
"/dev/shm/plot-timing.tmp" u 1:3 w l \
lc "#0000ff" t "minimum", \
"/dev/shm/plot-timing.tmp" u 1:2 w l \
lc "#00ff00" t "moyenne", \
lc "#00aa00" t "moyenne", \
"/dev/shm/plot-timing.tmp" u 1:5 w l \
lc "#000000" t "last"
__EOC__