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 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 ?