Trap focus - delay between shots

Started by Karavanen, April 17, 2013, 07:05:11 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Karavanen

I need a delay of about 30 sek betweeen shots when using trap focus, as it is now the camera is taking pictures with about a 1sek interval when an object stays in focus. I would like the camera to wait 30sek before firing another shot even if the object stays in focus. 
Is it possible to implement this function?

This is for a danceperformance in Sweden in november 2013.
I am prepared to pay someone for implementing it.

Kind regards

Daniel Andersson

g3gg0

camera model?
which release do you use?

just curious - what is your use case/scenario?
Help us with datasheets - Help us with register dumps
magic lantern: 1Magic9991E1eWbGvrsx186GovYCXFbppY, server expenses: [email protected]
ONLY donate for things we have done, not for things you expect!

Karavanen

Hi!
Release 2.3
Right now I'm on a 60D, but the performance will be made with three 600d and 70-300 tamron zoom lenses.

In a big open room:
Camera is on a tripod, focus is approx 10-15m away. When someone steps in to focus, camera should fire.

Then wait atleast 30sec before firing again.

Best
Daniel

a1ex

This is quite easy with a PicoC script.

Karavanen

ok, great!
Could you help me write it?

Karavanen

Anyone who could help me with the PicoC script?

Best

D

Francis

/*
@title Trap Focus loop
*/


while (TRUE)
{

while (TRUE)
{
press(SHOOT_HALF);
if (get_focus_confirm()) break;
};

takepic();
sleep(30);
}


Something like that should work. No way to stop it though ;)