Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Way to generate video from a bunch of images?

Can anybody tell me the way of generating the video from the bunch of images(bitmap). May be open format of avi file or open-source library,

I used Splicer but it has some bugs in production using.

The BytesCount Image To Video SDK is best choice but it is commerce solution.

Do you now any alternative?

like image 480
Alexandr Avatar asked Jun 02 '11 07:06

Alexandr


People also ask

How do I make a bunch of pictures into a slideshow?

Start by opening Microsoft PowerPoint and adding your photos from your computer. You can then tweak the pictures, add text, add accompanying music, select transitions, and other effects. And finally, click on 'Create' when you're finished to get your completed photo slideshow in a new file.


1 Answers

We have used ffmpeg and achieved professional results.

FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video.

Also...

FFmpeg is free software licensed under the LGPL or GPL depending on your choice of configuration options. If you use FFmpeg or its constituent libraries, you must adhere to the terms of the license in question. You can find basic compliance information and get licensing help on our license and legal considerations page.

From the documentation:

For creating a video from many images:

ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

like image 117
maxbeaudoin Avatar answered Oct 21 '22 02:10

maxbeaudoin