Pre-requisites:
- File list preparation
# Make sure to change to the directory # where your image files are located ls -1v *.jpg > input.txt awk '{print "file '\''" $0 "'\''"}' input.txt > files.txt
ffmpeg -f concat -safe 0 -r 30 -i files.txt -c:v libx264 -pix_fmt yuv420p timelapse.mp4