Time Lapse Batch Capture or Intervalometer?
Hi there,
I'm creating a time lapse video on a large format screen using a Phase One P65 digital back and Phase One 645DF body. Is there some sort of batch capture tool or script to allow me to do this? I've been trying to find an intervalometer for the body, but can't seem to find one.
Thanks for your time,
Garrett
I'm creating a time lapse video on a large format screen using a Phase One P65 digital back and Phase One 645DF body. Is there some sort of batch capture tool or script to allow me to do this? I've been trying to find an intervalometer for the body, but can't seem to find one.
Thanks for your time,
Garrett
0
-
Garrett,
What do you mean by script?
If you're shooting with a DF and P65+ you don't need any script from the software end as the body already has a 'intervalometer' built in. Just set your Capture Timer for the delay you want and the Capture Repeat to "rP" and the camera will shoot continuously with the interval you set in the timer.
http://i53.tinypic.com/23vcoib.png0 -
Perfect thank you very much Drew!
By Script I meant and Apple Script with the Phase One software to program it to shoot continuously without having to keep on clicking it on the computer.0 -
I see...
You could always do Keyboard Script but in reality the hardware option is the way to go. More reliable and much less complicated.0 -
For sure Hardware is the way to go but here is an applescript. -- take this many frames
set theNumber to text returned of (display dialog "number of shots" default answer "10")
-- time between shots
set delaySeconds to text returned of (display dialog "number of seconds between shots" default answer "10")
tell application "Capture One" to activate
tell application "System Events"
tell process "Capture One"
repeat with i from 1 to theNumber
keystroke "k" using command down
delay delaySeconds
end repeat
end tell
end tell
Save it to the scripts folder for C1 and run from within C1.
Think you need to turn on Enable assistive devices under Universal Access in System Prefs.0
投稿コメントは受け付けていません。
コメント
4件のコメント