11 lines
232 B
Bash
11 lines
232 B
Bash
|
ffmpeg \
|
||
|
-r 60000/1001 \
|
||
|
-i 'frames/dither-%04d.png' \
|
||
|
-i 'rickroll-audio.wav' \
|
||
|
-ac 2 \
|
||
|
-ar 48000 \
|
||
|
-vf 'pad=w=534,setsar=9/10' \
|
||
|
-pix_fmt yuv420p \
|
||
|
-movflags +faststart \
|
||
|
-y rickroll-dither.mp4
|