I'm trying to convert a series of JPEG images into a time lapse video. They're in the format IMGP0001.JPG, IMGP0002.JPG, etc. From the looks of things, this should match the pattern IMGP%04.JPG.
I've tried the following commands (modified from the 2nd entry at this page):
ffmpeg -f image2 -i IMGP%04d.jpg video.mpg
I get the error "IMGP%04d.JPG: No such file or directory".
What am I doing wrong? Perhaps the syntax "IMGP%04d.JPG" is *nix specific? If so what would be the Windows equivalent?
