I have files named like alice.png
, bob.png
, charlie.png
(there are hundreds of them) and I would like to make video from those. What I try is
avconv -i alice.png -i bob.png -i charlie.png -r 25 -b:v 12M -y out.mp4
but I am only getting the first image blipping in the movie, the rest is ignored.
There is buch of tutorials how to use -i %03d.png
and similar wildcards, but is there a way to do without them, passing those files on the command line? mencoder
had the option mf://alice.png,bob.png,charlie.png
so I am looking for something similar.
Writing filenames to an external file would be OK as well.