Hello!
I have recently figured out how to write a script that I've been meaning to do for a while.
It allows you to take any number of pictures, each with an exposure between 1 and 60 seconds (you pick the number of seconds)
This is useful for star trails or other astrophotography uses.
It was tested on the
SD960IS, firmware 1.01d, but it should work on any camera.
This is written in LUA, so if you want it, copy it, paste it into a text editor (not a word editor), and save it as "whatever_you_want_to_call_it.lua"
Or, you can download the attachment.
--[[
@title Long-Exposure Continous Shooting
@param a Exposure Time (Seconds)
@default a 10
@param b Number of Shots
@default b 10
]]
--This is an array of TV96 values for exposure tomes 1-60 seconds.
--It is indexed by the exposure time in seconds.
expVAL = {0, -96, -152, -192, -223, -248, -270, -288, -304, -319, -332, -344, -355, -366, -375, -384, -392, -400, -408, 415, -422, -428, -434, -440, -446, -451, -456, -462, -466, -471, -476, -480, -484, -488, -492, -496, -500, -504, -507, -511, -514, -518, -521, -524, -527, -530, -533, -536, -539, -542, -545, -547, -550, -552, -555, -558, -560, -562, -565, -567}
--This is the main part of the script.
for i = 1,b do
print( "Shot", i)
set_tv96_direct( expVAL[a] )
sleep( 100 )
shoot()
sleep( 1000 )
end
Hope you enjoy it!