10 lines
236 B
Bash
10 lines
236 B
Bash
ffmpeg \
|
|
-r 60000/1001 \
|
|
-i 'frames/dither-%04d.png' \
|
|
-i 'colamath-audio.wav' \
|
|
-ac 2 \
|
|
-ar 48000 \
|
|
-vf 'pad=w=640:h=360:x=52:y=20' \
|
|
-pix_fmt yuv420p \
|
|
-movflags +faststart \
|
|
-y colamath-dither.mp4
|