Re: [FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Michael Koch
Have a look at the image2 demuxer and its "-loop" option. "-loop 1" should also work for the concat demuxer, which takes a list of input files (instead of following a pattern). That's exactly what I need. Thank you very much! Michael ___

Re: [FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Rob Hallam
On 5 December 2017 at 19:21, Michael Koch wrote: > Let's assume I have a sequence of 100 images. Is it possible to let ffmpeg > loop over this input sequence again and again? > I mean the input should be 0, 1, 2, ... , 99, 0, 1, 2, ... , 99, 0, 1, 2 > and so on. Is

Re: [FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Moritz Barsnick
On Tue, Dec 05, 2017 at 20:21:48 +0100, Michael Koch wrote: > Is this possible? Yes. Oh, you want more info? ;-) > Let's assume I have a sequence of 100 images. Is it possible to let > ffmpeg loop over this input sequence again and again? > I mean the input should be 0, 1, 2, ... , 99, 0, 1,

[FFmpeg-user] loop over a sequence of images again and again

2017-12-05 Thread Michael Koch
Let's assume I have a sequence of 100 images. Is it possible to let ffmpeg loop over this input sequence again and again? I mean the input should be 0, 1, 2, ... , 99, 0, 1, 2, ... , 99, 0, 1, 2  and so on. Is this possible? Thanks, Michael ___