16 lines
320 B
Bash
Executable File
16 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DDIR="frames/pick3d"
|
|
|
|
echo "Encoding from " $DDIR
|
|
|
|
ffmpeg -nostdin \
|
|
-loglevel warning \
|
|
-y -r 25 -f image2 -i $DDIR/%05d.png \
|
|
-metadata artist='---[ tTh ]---' \
|
|
-metadata title='---[ experiment ]---' \
|
|
-c:v libx264 -pix_fmt yuv420p \
|
|
clifford-evolv-0.mp4
|
|
|
|
|