Hi,
I wanted to ask whether nexrender can just run the AE script without actually rendering the AE file, Is there any possibility to do this ?
Thanks :)
Hi,
I have found the solution.
By adding 'skipRender: true' within settings and then passing the setting the nexrender function.
Thanks :)
@darshak-gosar Can you show an example of your solution?)
Sure @SMakc
const settings = init({
logger: console,
skipRender: true,
});
let project = {
"template": {
"src": "http://example.com/assets/myproject.aep",
"composition": "main"
},
"assets": [{
"src": "file:///C:/sample/sampleParamInjection.jsx",
"type": "script"
}]
};
const data = await nexrender(project, settings)
.catch(renderError => {
console.error(renderError);
throw renderError;
})
Cheers :)
Most helpful comment
Sure @SMakc
Cheers :)