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. ⚠️

changing a batch of RAW files from one film simu to another?

Comments

1 comment

  • Eric Valk
    Since I do nat have any Fuji files I have some limits of how I can help you.

    Try this command on a variant before you change it, and again after you change it, and see if this is the thing you want to change


    tell application "Capture One 12" to tell primary variant to tell adjustments to get film curve
    If that's not it then try this

    tell application "Capture One 12" to tell primary variant to tell adjustments to get its properties


    Once you have discovered or decided what it is that you need to change on each variant, then make a loop like this:
    e.g. suppose the name of the new film curve is FujiCurve2

    set newFilmCurve to "FujiCurve2"
    tell application "Capture One 12"
    set theVariantList to get variants whose selected is true
    repeat with someVariant in theVariantList
    tell someVariant to tell adjustments to set film curve to newFilmCurve
    end repeat
    end tell
    0

Post is closed for comments.