I’ve made a gallery on my site where you can find a lot of my pictures. At the moment only pictures of concerts (Eurosonic and London Calling festivals) but over time I will extend this. So watch that space!
If you have shot the images for a time lapse video you probably want to resize the images and make a video from it. Linux is the way to go to automate this easy.
You can resize multiple image files (jpg/png/gif….) stored in a folder by the imagemagick package. Here is step-by-step guideline:
1. Install imagemagick from Ubuntu Software Center
Or, in the terminal:
sudo apt-get install imagemagick
2. Put all your image files in a single directory.
3. Open a terminal and go to this directory:
cd
4. Now, enter following command to resize all of the images to a specific percentage. For examples, for the following command, all of the images will be reduced to 50% of their dimension maintaining the ratio.
mogrify -resize 50% -format jpg *
Where -format jpg specifies: the resultant format will be JPG.
You may also specify width and height by the following command:
mogrify -resize 800×600 -format jpg *
You can easily guess, the resultant images will be of width 800 px and height of 600 px, keeping the original ratio.
Convert the jpg files using mencoder
1. Install mencoder from Ubuntu Software Center
Or, in the terminal:
sudo apt-get install mencoder
2. Put all your image files in a single directory.
3. Open a terminal and go to this directory:
cd
4. To convert a series of jpg files to an avi movie that can be displayed by, for example, Quicktime Player with no add-ons, use:
What a better way to start my first wordpress blog with a ‘Hello World’?
Thanks for viewing this page, as you have noticed there is still a lot needed to be made. But I will try to share a lot of nice pictures here with you. If you want to use them, please ask nicely.