Similar question here, but not yet answered.
Problem:
I'm combining images (.png) of same resolution/size (they all came from the same matplotlib.pyplot), but the resulting video is missing several frames.
Command:
ffmpeg -f image2 -r 1 -i .\\images\\image%02d.png -c:v libx264 -r 30 .\\images\\output.mp4 Resulting Video
- Length of 0:09
- Missing more than half the images
Images
- .\images
- image00.png
- image01.png
- image02.png
- image03.png
- image04.png
- image05.png
- image06.png
- image07.png
- . . .
Notes:
I followed examples from here. I'm new to using ffmpeg, so I may not be completely sure of what each of the command line options I've used means, though I have a pretty good idea.
Thanks, any help/advice/suggestions will be greatly appreciated. I am also perfectly willing to provide further information that may help resolve this issue.