Advertisement
para_bellum

ffmpeg timelaps

Sep 2nd, 2023
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ffmpeg timelaps reading files in natural order instead of lexicographic:
  2. ```sh
  3. cat $(find photos/ -maxdepth 1 -name "*.jpg" -print | sort -V) | ffmpeg -framerate 30 -i - -s:v 1280x720 -c:v libx264 -crf 17 -pix_fmt yuv420p timelapsv2.mp4
  4. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement