gphoto2_scripts/process_timelapse

5 lines
243 B
Plaintext
Raw Permalink Normal View History

2022-02-13 15:15:06 +01:00
#!/bin/sh
# https://medium.com/@sekhar.rahul/creating-a-time-lapse-video-on-the-command-line-with-ffmpeg-1a7566caf877
ffmpeg -framerate 30 -pattern_type glob -i "$1/*.jpg" -s:v 2592x1728 -c:v libx264 -crf 17 -pix_fmt yuv420p my-timelapse.mp4