dither4/mp4.sh

8 lines
147 B
Bash
Raw Normal View History

2022-12-08 00:12:15 +00:00
fps=60000/1001
2022-12-05 01:49:52 +00:00
ffmpeg \
-r $fps -i "$1.%01d.png" \
2022-12-11 19:58:37 +00:00
-vf scale=w=800:h=480:sws_flags=neighbor,format=yuv420p \
2022-12-05 01:49:52 +00:00
-g 480 \
-y "$1.mp4"