I’ve developed a system that cranks out thousands of short videos. Currently, I have AE and AME on the same computer. I use ExtendScript to:
create a comp from various components
pop that comp into the AE render queue :
app.project.renderQueue.items.add(app.project.item(indexMain_Comp))
using BridgeTalk, AME is started if it isn’t already running
if (!BridgeTalk.isRunning(mediaEncoderName)) { BridgeTalk.launch(mediaEncoderName); }
call on AME to render the comp:
app.project.renderQueue.queueInAME(true)
;
This all works fine currently.
My Q: Can AME run on a separate server for my application? In the code above (where I'm using BridgeTalk to start AME), how would BridgeTalk know if AME is on a separate server?
(Note
: watch folders will not work for me)
Thanks!