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

How to Listen to Rendering Progress in Adobe Media Encoder Using ExtendScript?

Community Beginner ,
Sep 16, 2023 Sep 16, 2023

I'm currently developing an ExtendScript script for Adobe After Effects that handles the rendering of compositions in Adobe Media Encoder (AME). While the rendering part functions correctly in AME, I'm encountering challenges in monitoring the rendering progress.


This is the code i'm using 

 

var rqItem = app.project.renderQueue.items.add(comp);

var module = rqItem.outputModule(1);
module.file = File (path+"/"+comp.name);
app.project.renderQueue.queueInAME(true);

 


I found this code for listening to the progress; however, it seems to be monitoring the After Effects internal renderer instead of the Adobe Media Encoder rendering process.

 

var item = renderQueue.item(1);
if (item.status == RQItemStatus.DONE) {
    $.writeln("Rendering is complete!");
}

 

Any references or assistance would be greatly appreciated.Thank you

TOPICS
FAQ , Scripting
127
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
no replies

Have something to add?

Join the conversation