Create video at 1 fps -
i have sequence of files names img-001.png
, img-002.png
etc. want assemble them video 1 image per second (fps=1). how can avconv ? have tried using
avconv -i img-%03d.png -r 1 a.avi avconv -i img-%03d.png -framerate 1 a.avi avconv -i img-%03d.png -framerate 1 -r 1 a.avi
neither of these work properly. seems video produced @ fps=24 , takes img-001.png
, img-025.png
... , skips every image in between.
try
avconv -framerate 1 -i img-%03d.png -r 1 a.avi
(this syntax works ffmpeg; should work here too)
Comments
Post a Comment