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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -