What's possible?
Completely new but attracted by the idea of automation please let me ask that one simple question. If my workflow would be at first an auto white balance and after that an applying of a style and after that an auto exposure could all this be put in a script and where do I have to start to realize that. I am using version C1 Pro 11.3 on a mac high sierra.
0
-
I think this would be fairly simple Applescript, see below. (not tested)
The middle statement which sets the style might require some debugging to get exactly right
tell application "Capture One 11"
autoadjust primary variant with adjust white balance
set styles of primary variant to {"thestyle"}
autoadjust primary variant with adjust exposure
end tell0 -
If you want to change the Next Capture Adjustment to apply a specific style with each new capture use:
tell application "Capture One 11"
set apply styles of next capture settings of current document to "NAME OF STYLE"
end tell
Name of style needs to be in quotes.0
投稿コメントは受け付けていません。
コメント
2件のコメント