I was looking for software to create timelapse from a collection of pictures, that is compatible with Ubuntu. It would good if it could make HD videos and also has an option to add a background score.
|
|
Ffmpeg will do it. If you have images
There are more options given in |
|||
|
|
|
First we rename all *.JPG files based on their creation date. Sometimes cameras change the file name or just ordering them is somehow not what we want. However, renaming them by the creation date always work:
After that we put this list in a file:
And then use
I usually take pictures for timelapse with the lowest resolution of my camera (5 MP), which has a 4:3 aspec ratio. To generate a proper 1080p video the image is first re-scalled to 1920 pixels of width and then I crop it to 1080 of height. This way I am not changing the photos' content, just cropping:
The reason I use mencoder to put the photos together is because I got a |
|||
|
|
|
You can do this with either mencoder or avidemux. There's a tutorial fr avidemux here: http://www.avidemux.org/admWiki/doku.php?id=tutorial:create_video_from_still_image_and_from_audio_file |
|||
|
|
