Thanks for the tip on CHDK and scripts you mentioned.
Yours is probably not the first post on CHDK in this forum, but it was the first I read when I browsed the forum yesterday (my first time around).
It was really a BIG surprise to know that my old, humble PowerShot A3100 could be hacked and improved!!
I'm not new to hacking equipment like routers, but I simply never thought it could be also possible on these little cameras. (better thinking, why shouldn't it?...)
With CHDK, I could finally override the poor intervalometer that comes with the camera and make an unlimited number of sequential exposures.
And here's my first nightly 8 sec time lapse video:
http://youtu.be/dKFr7HogXsM (too much polution, few stars, but I love it, since it's my first acceptable one

)
For the records, since I'm over an Ubuntu 14.04 laptop, the video was produced this way:
A - ShootingI shoot 88 10 sec exposure pictures using CHDK default intervalometer.
B - Post-production1) I gathered the photos in a specific directory;
2) I renamed the file names so that they start from 0001 upwards. To do this, I ran this smal script, adapted from the reference at the bottom of this post:
Code:
#!/bin/sh
x=1; for i in *.JPG; do counter=$(printf %04d $x); ln -sv "/your_time_lapse_directory/$i" /your_time_lapse_directory/tmp/img"$counter".jpg; x=$(($x+1)); done
exit 0
3) I joined the photos in a video. I executed the following command line from the /tmp directory (the directory where the renamed images stay, see script above):
Code:
avconv -f image2 -r 10 -i img%04d.jpg -vcodec libx264 time-lapse-10fps.mp4
(The -r option let you set up the video frame rate, the -f option I don't know what it means)
Reference:
http://ubuntuforums.org/showthread.php?t=2022316Btw, nice sunrise video in Gdansk. I soon will try to use the script you mentioned and see what happens.
Thanks once more.