Applescript to rate elements, including videos
The below script allows to rate videos whose editing is barred from C1 UI.
Tested on Mac / Monterey
use AppleScript version "2.4" -- Yosemite (10.10) or later
use scripting additions
set optionList to {"0", "1", "2", "3", "4", "5"}
set theAnswer to choose from list optionList with prompt "What rating ?"
if theAnswer is false then
log "process cancelled"
else
set theAnswer to theAnswer's item 1 (* extract choice from list *)
tell application "Capture One 21"
set theRating to theAnswer
set theVariantList to selected variants
repeat with theProcessVariant in theVariantList
tell theProcessVariant
set rating to theRating
end tell
end repeat
log "process over"
end tell
end if
A similar script can be done for color rating.
0
Please sign in to leave a comment.
Comments
0 comments