Zum Hauptinhalt gehen

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Time Lapse Batch Capture or Intervalometer?

Kommentare

4 Kommentare

  • Drew Altdo
    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.png
    0
  • NNN634493727951393868
    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
  • Drew Altdo
    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
  • rap_digital
    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

Post ist für Kommentare geschlossen.