a lot a better things

This commit is contained in:
Tonton Th 2025-01-26 19:32:18 +01:00
parent 9962480356
commit b344d0b762
4 changed files with 37 additions and 21 deletions

9
tools/config.sh Normal file
View File

@ -0,0 +1,9 @@
Img_Width=1024
Img_Height=768
TEXTCOL="orange"
STROKOL="darkblue"
NBFRAMES=360

View File

@ -2,13 +2,13 @@
set -e ; set -u
source tools/config.sh
IDX=0
SPOOL="frames/Spool"
SEQNAME="none"
TMP="WS/tmp.png"
FONTE="Helvetica-Bold"
TEXTCOL="yellow"
STROKOL="darkblue"
source tools/fonctions.sh
@ -72,7 +72,7 @@ faire_le_titre ()
{
echo "faire le titre"
local NBRE=240
local NBRE=280
local SRC="frames/passage/00099.png"
local GRAY="/dev/shm/tmp-titre.png"
@ -84,7 +84,7 @@ do
convert ${GRAY} \
-gravity north \
-font $FONTE \
-pointsize 172 \
-pointsize 146 \
-kerning 6 \
-fill $TEXTCOL \
-strokewidth 3 -stroke $STROKOL \
@ -103,10 +103,14 @@ local NBRE=180
datetime=$(LANG=fr date -u +"%Y/%m/%d")
echo $datetime | tee -a WS/log
local SRC="frames/escadrille/00299.png"
local GRAY="/dev/shm/tmp-titre.png"
convert -colorspace gray -colors 27 $SRC $GRAY
for foo in $(seq 0 $NBRE)
do
Ypos=$(( foo + 20 ))
convert "WS/negatif.png" \
convert ${GRAY} \
-gravity north \
-font $FONTE \
-pointsize 86 \
@ -118,7 +122,7 @@ do
-pointsize 48 \
-strokewidth 1 \
-gravity south \
-annotate +0+170 "${datetime}" \
-annotate +0+140 "${datetime}" \
${TMP}
# identify ${TMP}
copy_a_file ${TMP}
@ -132,7 +136,6 @@ figlet "Link farmer"
rm -f frames/Spool/*.png
# tools/plot-timing.sh
faire_le_titre
linkfarm hexabenz

View File

@ -1,15 +1,15 @@
#!/bin/bash
set -e ; set -u
source tools/config.sh
source tools/fonctions.sh
SEQNAME="$1"
NBFRAMES=360
echo "Running $0 $SEQNAME" >> WS/log
DIMS="-W1280 -H1024"
DIMS="-W$Img_Width -H$Img_Height"
POVOPT="+q9 +A -d ${DIMS} -WT6"
echo $POVOPT ; echo ; sleep 2
@ -30,12 +30,12 @@ do
continue
fi
set -e
txt=$(printf "%s %03d" ${SEQNAME} $frame | tr '0' 'o')
txt=$(printf "%s %03d" ${SEQNAME} $frame | tr '01' 'ol')
# echo $frame $img $txt
convert ${TMPIMG} \
-font Courier-Bold \
-pointsize 18 \
-fill Gray80 \
-pointsize 16 \
-fill ${TEXTCOL} \
-gravity south \
-annotate +0+5 "$txt" \
${img}

View File

@ -2,6 +2,8 @@
set -ue
source tools/config.sh
TMPFILE="/dev/shm/plot-timing.tmp"
IMAGE="timing.png"
@ -12,12 +14,14 @@ else
sequence="escadrille"
fi
echo "plot timing $sequence" >> WS/log
# echo "plot timing $sequence" >> WS/log
grep $sequence WS/mp4.timing | tail -3600 | awk ' \
grep $sequence WS/mp4.timing | tail -3600 | awk \
-v nbframes=$NBFRAMES \
' \
BEGIN { \
nbrames=360; \
for (foo=0; foo<nbrames; foo++) { \
# print "nb frames = ", nbframes; \
for (foo=0; foo<nbframes; foo++) { \
mini[foo] = 666; \
maxi[foo] = -42; \
count[foo] = 0; \
@ -32,7 +36,7 @@ BEGIN { \
} \
\
END { \
for (foo=0; foo<nbrames; foo++) { \
for (foo=0; foo<nbframes; foo++) { \
if (count[foo] > 0) { \
mean = accu[foo] / count[foo]; \
printf "%4d %4f %4d %4d\n", foo, mean, \
@ -42,10 +46,10 @@ END { \
} \
' > $TMPFILE
# cat -n $TMPFILE | tail # ; exit
# head $TMPFILE ; exit
gnuplot << __EOC__
set term png size 1280,1024
set term png size $Img_Width,$Img_Height
set output "timing.png"
set grid
set xrange [:360]
@ -58,5 +62,5 @@ gnuplot << __EOC__
"/dev/shm/plot-timing.tmp" u 1:2 w l lc "#000000" t "moyenne",
__EOC__
convert -negate -colorspace gray -level -33% $IMAGE WS/negatif.png
convert -negate -level -33% $IMAGE WS/negatif.png