a lot a better things
This commit is contained in:
parent
9962480356
commit
b344d0b762
9
tools/config.sh
Normal file
9
tools/config.sh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Img_Width=1024
|
||||||
|
Img_Height=768
|
||||||
|
|
||||||
|
TEXTCOL="orange"
|
||||||
|
STROKOL="darkblue"
|
||||||
|
|
||||||
|
NBFRAMES=360
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
set -e ; set -u
|
set -e ; set -u
|
||||||
|
|
||||||
|
source tools/config.sh
|
||||||
|
|
||||||
IDX=0
|
IDX=0
|
||||||
SPOOL="frames/Spool"
|
SPOOL="frames/Spool"
|
||||||
SEQNAME="none"
|
SEQNAME="none"
|
||||||
TMP="WS/tmp.png"
|
TMP="WS/tmp.png"
|
||||||
FONTE="Helvetica-Bold"
|
FONTE="Helvetica-Bold"
|
||||||
TEXTCOL="yellow"
|
|
||||||
STROKOL="darkblue"
|
|
||||||
|
|
||||||
source tools/fonctions.sh
|
source tools/fonctions.sh
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ faire_le_titre ()
|
|||||||
{
|
{
|
||||||
echo "faire le titre"
|
echo "faire le titre"
|
||||||
|
|
||||||
local NBRE=240
|
local NBRE=280
|
||||||
local SRC="frames/passage/00099.png"
|
local SRC="frames/passage/00099.png"
|
||||||
local GRAY="/dev/shm/tmp-titre.png"
|
local GRAY="/dev/shm/tmp-titre.png"
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ do
|
|||||||
convert ${GRAY} \
|
convert ${GRAY} \
|
||||||
-gravity north \
|
-gravity north \
|
||||||
-font $FONTE \
|
-font $FONTE \
|
||||||
-pointsize 172 \
|
-pointsize 146 \
|
||||||
-kerning 6 \
|
-kerning 6 \
|
||||||
-fill $TEXTCOL \
|
-fill $TEXTCOL \
|
||||||
-strokewidth 3 -stroke $STROKOL \
|
-strokewidth 3 -stroke $STROKOL \
|
||||||
@ -103,10 +103,14 @@ local NBRE=180
|
|||||||
datetime=$(LANG=fr date -u +"%Y/%m/%d")
|
datetime=$(LANG=fr date -u +"%Y/%m/%d")
|
||||||
echo $datetime | tee -a WS/log
|
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)
|
for foo in $(seq 0 $NBRE)
|
||||||
do
|
do
|
||||||
Ypos=$(( foo + 20 ))
|
Ypos=$(( foo + 20 ))
|
||||||
convert "WS/negatif.png" \
|
convert ${GRAY} \
|
||||||
-gravity north \
|
-gravity north \
|
||||||
-font $FONTE \
|
-font $FONTE \
|
||||||
-pointsize 86 \
|
-pointsize 86 \
|
||||||
@ -118,7 +122,7 @@ do
|
|||||||
-pointsize 48 \
|
-pointsize 48 \
|
||||||
-strokewidth 1 \
|
-strokewidth 1 \
|
||||||
-gravity south \
|
-gravity south \
|
||||||
-annotate +0+170 "${datetime}" \
|
-annotate +0+140 "${datetime}" \
|
||||||
${TMP}
|
${TMP}
|
||||||
# identify ${TMP}
|
# identify ${TMP}
|
||||||
copy_a_file ${TMP}
|
copy_a_file ${TMP}
|
||||||
@ -132,7 +136,6 @@ figlet "Link farmer"
|
|||||||
|
|
||||||
rm -f frames/Spool/*.png
|
rm -f frames/Spool/*.png
|
||||||
|
|
||||||
# tools/plot-timing.sh
|
|
||||||
faire_le_titre
|
faire_le_titre
|
||||||
|
|
||||||
linkfarm hexabenz
|
linkfarm hexabenz
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e ; set -u
|
set -e ; set -u
|
||||||
|
|
||||||
|
source tools/config.sh
|
||||||
source tools/fonctions.sh
|
source tools/fonctions.sh
|
||||||
|
|
||||||
SEQNAME="$1"
|
SEQNAME="$1"
|
||||||
NBFRAMES=360
|
|
||||||
|
|
||||||
|
|
||||||
echo "Running $0 $SEQNAME" >> WS/log
|
echo "Running $0 $SEQNAME" >> WS/log
|
||||||
|
|
||||||
DIMS="-W1280 -H1024"
|
DIMS="-W$Img_Width -H$Img_Height"
|
||||||
POVOPT="+q9 +A -d ${DIMS} -WT6"
|
POVOPT="+q9 +A -d ${DIMS} -WT6"
|
||||||
echo $POVOPT ; echo ; sleep 2
|
echo $POVOPT ; echo ; sleep 2
|
||||||
|
|
||||||
@ -30,12 +30,12 @@ do
|
|||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
txt=$(printf "%s %03d" ${SEQNAME} $frame | tr '0' 'o')
|
txt=$(printf "%s %03d" ${SEQNAME} $frame | tr '01' 'ol')
|
||||||
# echo $frame $img $txt
|
# echo $frame $img $txt
|
||||||
convert ${TMPIMG} \
|
convert ${TMPIMG} \
|
||||||
-font Courier-Bold \
|
-font Courier-Bold \
|
||||||
-pointsize 18 \
|
-pointsize 16 \
|
||||||
-fill Gray80 \
|
-fill ${TEXTCOL} \
|
||||||
-gravity south \
|
-gravity south \
|
||||||
-annotate +0+5 "$txt" \
|
-annotate +0+5 "$txt" \
|
||||||
${img}
|
${img}
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
set -ue
|
set -ue
|
||||||
|
|
||||||
|
source tools/config.sh
|
||||||
|
|
||||||
TMPFILE="/dev/shm/plot-timing.tmp"
|
TMPFILE="/dev/shm/plot-timing.tmp"
|
||||||
IMAGE="timing.png"
|
IMAGE="timing.png"
|
||||||
|
|
||||||
@ -12,12 +14,14 @@ else
|
|||||||
sequence="escadrille"
|
sequence="escadrille"
|
||||||
fi
|
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 { \
|
BEGIN { \
|
||||||
nbrames=360; \
|
# print "nb frames = ", nbframes; \
|
||||||
for (foo=0; foo<nbrames; foo++) { \
|
for (foo=0; foo<nbframes; foo++) { \
|
||||||
mini[foo] = 666; \
|
mini[foo] = 666; \
|
||||||
maxi[foo] = -42; \
|
maxi[foo] = -42; \
|
||||||
count[foo] = 0; \
|
count[foo] = 0; \
|
||||||
@ -32,7 +36,7 @@ BEGIN { \
|
|||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
END { \
|
END { \
|
||||||
for (foo=0; foo<nbrames; foo++) { \
|
for (foo=0; foo<nbframes; foo++) { \
|
||||||
if (count[foo] > 0) { \
|
if (count[foo] > 0) { \
|
||||||
mean = accu[foo] / count[foo]; \
|
mean = accu[foo] / count[foo]; \
|
||||||
printf "%4d %4f %4d %4d\n", foo, mean, \
|
printf "%4d %4f %4d %4d\n", foo, mean, \
|
||||||
@ -42,10 +46,10 @@ END { \
|
|||||||
} \
|
} \
|
||||||
' > $TMPFILE
|
' > $TMPFILE
|
||||||
|
|
||||||
# cat -n $TMPFILE | tail # ; exit
|
# head $TMPFILE ; exit
|
||||||
|
|
||||||
gnuplot << __EOC__
|
gnuplot << __EOC__
|
||||||
set term png size 1280,1024
|
set term png size $Img_Width,$Img_Height
|
||||||
set output "timing.png"
|
set output "timing.png"
|
||||||
set grid
|
set grid
|
||||||
set xrange [:360]
|
set xrange [:360]
|
||||||
@ -58,5 +62,5 @@ gnuplot << __EOC__
|
|||||||
"/dev/shm/plot-timing.tmp" u 1:2 w l lc "#000000" t "moyenne",
|
"/dev/shm/plot-timing.tmp" u 1:2 w l lc "#000000" t "moyenne",
|
||||||
__EOC__
|
__EOC__
|
||||||
|
|
||||||
convert -negate -colorspace gray -level -33% $IMAGE WS/negatif.png
|
convert -negate -level -33% $IMAGE WS/negatif.png
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user