ffmpeg: create a video from images
Posted
by vailen
on Stack Overflow
See other posts from Stack Overflow
or by vailen
Published on 2010-05-13T17:58:09Z
Indexed on
2010/05/13
18:04 UTC
Read the original article
Hit count: 171
Is it possible to use ffmpeg
create a video from a set of sequences, where the number does not start from zero?
For example, I have some images [test_100.jpg, test_101.jpg, test_102.jpg, ..., test_200.jpg], and I want to convert them to a video. I tried the following command, but it didn't work (it seems the number should start from zero):
ffmpeg -i test_%d.jpg -vcodec mpeg4 test.avi
Any advise?
© Stack Overflow or respective owner