Script to convert screenshot images to mp4

main
Jeff Moe 2023-02-25 16:25:10 -07:00
parent 2d02c1770e
commit 7a416f8ba7
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
rm -f output.mp4
ffmpeg \
-framerate 1/2 \
-pattern_type glob \
-i 'bm6k-ss-*.jpg' \
-c:v libx264 \
-vf "fps=2,format=yuv420p" \
bm6k-ss-001.mp4