Answered
How to set Hue vs Hue curve value with extendscript ?
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;
}
};
var huevshue = effect.properties[59].getValue();
$.writeln(effect.properties[59].displayName + " " + huevshue);
This code is giving the value - Hue vs Hue
Can someone please tell me what is this and how to decode it. Or is there any other or better way to set HuevsHue curve value. I want to set the value of Huevs hue curve.
