I'm playing with timelapse video just now
I made one timelapse video with duration of 12 hours ( 06:00 - 18:00 ) shoot every 15 seconds
quite spectacular :-)
I liked falling stars, ghost automobiles and crows crawling on building construction site like ants
I had at least 9 days of cloudless weather
I would like to make night sky with moving stars and automobiles moving
but all shoots i could manage where dark
I'm not a photographer and don't know if native functionality of camera can do this (I own a630).
I have checked shutter override ~40-60 seconds (manual press on shot button).
it looks like it is what I want but it does not work in interval script
i used following script
@title Interval script
@param a Shoot count(*1000)
@default a 20
@param b pause (seconds)
@default b 10
sleep 1000
if a<1 then let a=10
if b<1 then let b=1
let b=b*1000
let a=a*1000
for s=1 to a
shoot
sleep b
next s
end
what I'm missing?
have I to switch to some mode? (I made it in auto :-) )
have I to check/uncheck something in alt menu?
have I to add some code into script?