Reputation: 1156
Hi I would like to repeat the source video n times.
For example,
If the input source file duration is 5 seconds and repeat 4 times then final video should 20 seconds.
Please specify the command for this
ffmpeg -i D:\21-03-2018\15271618235b06a3df9d5cb.mp4 -loop 4 D:\21-03-2018\output.mp4
Upvotes: 7
Views: 5968
Reputation: 92928
The quickest way is via the stream_loop option,
ffmpeg -stream_loop 3 -i D:\21-03-2018\15271618235b06a3df9d5cb.mp4 -c copy D:\21-03-2018\output.mp4
Upvotes: 8