HexaCone/fonctions.sh
2024-12-29 04:56:10 +01:00

32 lines
696 B
Bash

set -eu
ff_encodage()
{
SRCDIR="$1"
FILMNAME="$2"
ffmpeg -nostdin \
-y -r 30 -f image2 -i frames/${SRCDIR}/%05d.png \
-metadata artist='--[ tTh ]--' \
-metadata title='-- HexaCone --' \
-c:v libx264 \
-pix_fmt yuv420p \
-tune film \
$FILMNAME
echo "$SRCDIR encoded to $FILNAME" | tee -a WS/log
wc -c full.mp4 | tee -a WS/log
}
mp_encodage()
{
mencoder 'mf://frames/*.png' \
-mf \
fps=24 \
-ovc lavc \
-lavcopts vcodec=mpeg4 \
-o output.avi
}