fine tuning

This commit is contained in:
tTh 2022-12-05 12:47:51 +01:00
parent 2f2ae51352
commit f105d95571
1 changed files with 11 additions and 8 deletions

View File

@ -2,16 +2,20 @@
set -e
POVOPT=" -q9 +a -W1280 -H1024 +WT2 -d -v "
POVOPT=" -q9 +a -W1024 -H768 +WT2 -d -v "
SOURCE="vision.pov"
TMPF="/dev/shm/gravfield.png"
date > pov.stderr
# ---------------------------------------
une_passe ()
{
clock=$1
cp pov.stderr old.stderr
povray -i${SOURCE} -K${clock} $POVOPT -O${TMPF} 2> pov.stderr
timestamp=$(date -u +'%F %H:%M' | tr '01' 'Ol')
@ -20,14 +24,14 @@ outfile=$(printf "WS/troid/%05d.png" $clock)
echo $timestamp $texte $outfile
convert ${TMPF} \
-pointsize 16 \
-pointsize 24 \
-font Courier-Bold \
-fill Orange \
-annotate +10+16 "$timestamp" \
-annotate +10+34 "$texte" \
-pointsize 8 \
-annotate +15+16 "$timestamp" \
-annotate +15+38 "$texte" \
-pointsize 16 \
-gravity south-west \
-annotate +10+6 "tTh & Konrad" \
-annotate +15+6 "tTh & Konrad" \
${outfile}
}
@ -37,12 +41,11 @@ for foo in $(seq 0 1999)
do
echo '............' $foo
une_passe $foo
exit
done
ffmpeg -nostdin \
-loglevel warning \
-y -r 30 -f image2 -i WS/trid/%05d.png \
-y -r 30 -f image2 -i WS/troid/%05d.png \
-metadata artist='---{ tTh and Konrad }---' \
-metadata title="Experiment on Gravity Field" \
-c:v libx264 -pix_fmt yuv420p \