I am using avconv
to convert images into video, but i am facing some issue in it that is. I have thousands of images in a directory and named as video_clip_0_0_0_0_0_0_0_0_09_0_102.jpeg
and images did not follow any particular sequence some times add 100 in last field and some times 103(but sure add aprox 100). While using avconv
command:
- I have to make a temp directory.
- Copy all the images into that directory.
convert temp/*.jpeg -delay 10 -morph 10 temp/%05d.jpg.
avconv -f image2 -i temp/%05d.jpeg output.mkv
All this Stuff is taking too much time. I did not want to do all the stuff and want to make video without making any temp directory, or renaming clips etc..For the sake of convenience and save time for the same.