• 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 Hue vs Hue curve value with 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;
    }
};
 
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.
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

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
New Here ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

Thank you for your reply. But we can set or change the other values in Lumetri Color like saturation, temperature with extendscript. The properties which have type  - number , boolean can be manipulated using the above code then why not the values of RGB curves.

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
Adobe Employee ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

LATEST

Because the data behind those RGB curves is proprietary, and not available for manipulation via API.

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