Skip to main content

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

Automated f-stops

Comments

2 comments

  • Emory Dunn

    That's quite the bracket!

    The easiest option is probably to use the increment command, which will change the camera settings by the exposure increments set in the camera (most likely 1/3 or 1/2 stops). You can call the command three (or two) times to get a full stop. 

    You can do something like this, which will iterate through all ISOs until the camera returns an error when it can't increment further. ISO Speed may need to be changed to something else, not all cameras have the same name for ISO. Then you can do something similar for the aperture. 

     

    use application "Capture One"

    set ISO of camera of current document to 100

    try

        repeat while true

            increment attribute named "ISO Speed" of camera of current document

            increment attribute named "ISO Speed" of camera of current document

            capture

            delay 1

        end repeat

    end try

    1
  • FirstName LastName

    Hi Emory,

    Thanks for your quick setup, I've managed to get our ranges working this way!

    0

Post is closed for comments.