• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to set RGB curve value in Lumetri Color in Premiere Pro using extendscript ?

New Here ,
Jun 10, 2024 Jun 10, 2024

Copy link to clipboard

Copied

var project = app.project;
var sequence = project.activeSequence;
var tracks = sequence.videoTracks;
var mainTrack = tracks[0];
var clips = mainTrack.clips;
var mainClip = clips[0];
var components = mainClip.components;
var effect;
for (var i = 0; i < components.numItems; i++) {
    if(components[i].displayName == "Lumetri Color") {
        effect = components[i];
        break;
    }
};
 
for(var i = 0; i < number; i++) {
    try {
        $.writeln("Property " + i + " : " + effect.properties[i].displayName + "   " +  " Value - " + effect.properties[i].getValue());
    }
    catch(e) {
        $.writeln(e);
    }
};
 
After executing the code I got this- 
Property 46 : Curves Value - false
Property 47 : Active Value - true
Property 48 : RGB Curves Value - false
Property 49 : Active Value - true
Property 50 : HDR Range Value - 100
Property 51 : Value -
Property 52 : Value - false
 
I am not able to access the RGB curve in lumetri color . Can someone please help in how to set RGB curves value in Lumetri Color using Extendscript ?
TOPICS
SDK

Views

172

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Jun 10, 2024 Jun 10, 2024

Not all data types are documented for 3rd party manipulation; Lumetri params are one such data type.

Votes

Translate

Translate
Adobe Employee ,
Jun 10, 2024 Jun 10, 2024

Copy link to clipboard

Copied

LATEST

Not all data types are documented for 3rd party manipulation; Lumetri params are one such data type.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines