Page 1 of 1

5000 unique video files generation of 2MB each

Posted: 2015-07-13T02:49:02-07:00
by choudhary.sushil
Hi all,

I want to generate 5000 unique video files either avi / Mp4 / wmv / mpg / mpeg /flv or any other real video format file. Can anyone please suggest how to achieve it?

Regards,
Sushil Kumar

Re: 5000 unique video files generation of 2MB each

Posted: 2015-07-13T09:32:20-07:00
by fmw42
If you already have the images or videos in one format, then I would suggest that you use FFMPEG directly either to create a new video or convert from one format to another.

Re: 5000 unique video files generation of 2MB each

Posted: 2015-07-13T12:24:20-07:00
by snibgo
If you already have a video, the obvious answer is to make 5000 copies, each with a different serial number on all the frames, eg:

Code: Select all

ffmpeg -i in.mpg -vf drawtext=fontfile=annifont.ttf:fontsize=50:text="#00001" out_00001.mpg

Re: 5000 unique video files generation of 2MB each

Posted: 2015-07-29T03:14:27-07:00
by choudhary.sushil
Thanks Fred & Snibgo.
In that case i can take one video and will try to create 5000 unique videos.

Regards,
Sushil Kumar