Copy link to clipboard
Copied
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
Have something to add?
Find more inspiration, events, and resources on the new Adobe Community
Explore Now