Question
Is it possible to use ExtendScript to apply a LUT in AME?
Is it possible to use ExtendScript to apply a LUT in AME?
The idea would go something like this...
SourcePath="/Path/To/SourceFile";
DestPath="/Path/To/DestFile";
Format="H.264";
Preset="/Path/To/Preset.epr";
ThisLut="/Path/To/Lut.cube";
FrontEnd=app.getFrontend();
Rslts=ThisFrontEnd.addFileToBatch(ThisSourcePath,ThisFormat,ThisPreset,ThisDestPath);
Rslts.SomehowAddALut(ThisLut);
