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

Can I use the C++ SDK to edit the panels in Effect Controls.

New Here ,
Oct 08, 2023 Oct 08, 2023

Copy link to clipboard

Copied

I have used the sdk to edit the Lumetri panels,but i cann't find the api about the effect controls,

so where can I find the C++ version of the SDK for controlling the Effect Controls panel?

TOPICS
SDK

Views

529

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 2 Correct answers

Adobe Employee , Oct 09, 2023 Oct 09, 2023

Premiere Pro provides no API for manipulating existing effects.

Votes

Translate

Translate
Adobe Employee , Oct 10, 2023 Oct 10, 2023

Votes

Translate

Translate
Adobe Employee ,
Oct 09, 2023 Oct 09, 2023

Copy link to clipboard

Copied

Premiere Pro provides no API for manipulating existing effects.

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 ,
Oct 09, 2023 Oct 09, 2023

Copy link to clipboard

Copied

sorry,I probably have a problem with my expression.I want to change the value of the pannel。like the picture,I want to change the value like as anchor point or position。

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 ,
Oct 10, 2023 Oct 10, 2023

Copy link to clipboard

Copied

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 ,
Jan 07, 2025 Jan 07, 2025

Copy link to clipboard

Copied

Hello, I also need to develop a third-party tool recently to read and modify the values in the Effect control panel. Since I am a C++ programmer myself, I'm not very familiar with JavaScript. I want to ask if the firstClip.components in line 1458 of the example you provided stores the values I need to operate in the Effect control panel, such as numerical values for sport, volume, etc.

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 ,
Jan 08, 2025 Jan 08, 2025

Copy link to clipboard

Copied

Yes, access and manipulation of some (but definitely not all!) component parameter streams, as shown in the Effect Control Panel, is possible via ExtendScript.

 

 

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 ,
Jan 08, 2025 Jan 08, 2025

Copy link to clipboard

Copied

I understand now. So, what you're saying is that I can directly access certain parameters, like the data in the effect control panel, as shown in the JavaScript example code. Once I obtain this data, I can read and write values in the effect control panel by using WebSocket or other communication methods, right? Although I have tried this kind of programming approach before, I do have one question: why not provide a direct C/C++ interface for developers? I'm just curious because I think it could allow them to operate these values more efficiently and stably. If this is confidential information, you don't need to answer. I think I can solve the issue using the JavaScript method mentioned earlier, and I'm okay with that. Thank you very much!!

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 ,
Jan 08, 2025 Jan 08, 2025

Copy link to clipboard

Copied

LATEST

>Once I obtain this data, I can read and write values in the effect control panel by using WebSocket or other communication methods, right?

You would use the ExtendScript API for that, yes.

>why not provide a direct C/C++ interface for developers?

Because ExtendScript works fine? 😉 PPro is moving from ExtendScript to UXP (modern JavaScript), but we have no plans to add C++ APIs for doing those same things. 

 

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