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

AE2024 Display Color Space Shortcut

New Here ,
Mar 27, 2024 Mar 27, 2024

If you set the color engine to [OCIO] in After Effects 2024, you will be able to use [Display Color Space], but this [Display Color Space] cannot be assigned to shortcuts, etc.
Is there any way to toggle between color spaces A and B as shown in the image below?

TOPICS
FAQ , How to , Scripting , SDK , User interface or workspaces
446
Translate
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
Community Expert ,
Mar 27, 2024 Mar 27, 2024

using the C SDK AEGP_SetWorkingColorSpace will do the job.

with javascript you can set: app.project.workingSpace = "Rec.709 Gamma 2.4";

Translate
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 ,
Mar 27, 2024 Mar 27, 2024

Thank you, shachar carmi

I'm not familiar with javascript, but the part I want to change is "Display Color Space".
Attached is an image of the project settings.

Or, if the "Display Color Space" can be changed using the javascript below, I would like to know if I should write the same.

app.project.workingSpace = "Rec.709 Gamma 2.4"

Translate
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
Community Expert ,
Mar 31, 2024 Mar 31, 2024
LATEST

to tell the string for the color space you need, read the content of "app.project.workingSpace" while that color space is the active one. then you can copy it to the assignment operation.

Translate
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