inlife / nexrender

📹 Data-driven render automation for After Effects

Home Page:https://www.nexrender.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

0kb Image Sequence

mengozq opened this issue · comments

Hey Vlad!

I'm trying to render jpg sequence and am having issues with it at the moment. Hoping I can get some assistance on it. The .jpg gets rendered, but it's a single 0kb file. I tried to render .mp4 with it and it's fine. Tried using different versions but it comes out the same.

Here's my json.
{ "template": { "src": "file:///C:\\path\\file.aep", "composition": "compName", "frameStart": "0", "frameEnd": "1", "continueOnMissing": "Boolean", "settingsTemplate": "Best Settings", "outputModule": "Jpg Sequence", "outputExt": "jpg" }, "actions": { "postrender": [ { "module": "@nexrender/action-copy", "output": "C:\\file.jpg" } ] } }

And... it's solved! (Magically after posting it here. It must be the magic of github. haha)

Here's the solution. Since I only needed one jpg. I could target the one frame with "00000" suffix, to copy it.
{
"module": "@nexrender/action-copy",
"input": "result_00000.jpg",
"output": "file.jpg"
}