Smart Shooter 4 - scripting problem

Hi,
I have Sony a6400 and trial version of Smart Shooter 4 for mac

I need to use scripting for my task. I want to shoot 10 frames with different shutter setup.

Scripts shoot the shot but they do not change values of shutter between takes.

What to do?
Best
Kamil

I’d recommend trying to use a time interval (around 2~3 seconds) between shots and see if that solves the problem.

Oh thanks for reply!
Do you know how to do that?
Best
Kamil

Disclaimer: I am not related to the cuvacode team in any way, so I can’t guarantee this will do any difference, just something that has worked in my experience with other software.

“”"
{
“name”: “Pause timer test”,
“description”: “”,
“ui”: [ {
“name”: “time_interval”,
“label”: “Time between photos”,
“type”: “time”,
“ui”: “time”,
“value”: “00:00:03”,
“description”: “Amount of time between each photo”
} ]
}
“”"
import time
import smartshooter
ctx = smartshooter.Context()

#store original properties

#change properties
ctx.shoot()
ctx.wait(int(time_interval))

#change properties
ctx.shoot()
ctx.wait(int(time_interval))

#and so on

#restore original properties

Thank you!
Will try to implement it

Thanks a lot