So I have a directory, where script ran by cron puts photos from my webcam. And I want to make a sort of timelapse. So i want to join this images to a video, one image = new frame (no delay).
So i have a jpg images filenamed
YYYY-MM-DD_HH_MM-webcamshot.jpg
And i want to join them into a mp4 video.
I found out that i can do it with FFMpeg for ex. with this command
ffmpeg -pattern_type glob -i '*.jpg' -c:v libx264 output.mp4
(from here)
But unfortunately this only joins the first 600 (or a bit more) of 2.5K images in the directory.
So i want to know:
Can FFMpeg join more images (maybe unlimited amount)?
Is it problem of using -pattern type glob instead of wildcard?
If it can't, how to split images into directories and make videos from these directories and then join or rename images to format like
img01729.jog
so wildcardimg%04.jpg
can be used?
FFMpeg on Linux Mint (ubuntu 16.04).