HexaCone/fonctions.sh

32 lines
696 B
Bash
Raw Normal View History

2024-12-16 03:53:42 +11:00
set -eu
ff_encodage()
{
2024-12-29 14:56:10 +11:00
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
2024-12-16 03:53:42 +11:00
}
mp_encodage()
{
mencoder 'mf://frames/*.png' \
-mf \
2024-12-20 05:13:31 +11:00
fps=24 \
2024-12-16 03:53:42 +11:00
-ovc lavc \
-lavcopts vcodec=mpeg4 \
-o output.avi
}