inlife / nexrender

📹 Data-driven render automation for After Effects
https://www.nexrender.com
MIT License
1.62k stars 326 forks source link

0kb Image Sequence #970

Closed mengozq closed 8 months ago

mengozq commented 8 months ago

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" } ] } }

mengozq commented 8 months ago

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" }