-
Hello, I would like to know if there is a built-in option to copy the after-effect file created for the render with all the changes (for example, the replaced images or video, etc.) to a specific location, like the option to copy the final render to a specific location. When I use this code in myJob.json file it copies the ae file without the changes:
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 9 replies
-
Yeah, you did it all perfectly correctly. One minor thing is that nexrender does not save the project after the render is done, so you would need to call a js script that would do that. Make sure to create a script.jsx with this content: app.project.save(); and then provide that file as an asset with "script" type |
Beta Was this translation helpful? Give feedback.
-
But the script will run before the render begins, there is a way to save the AE after the render completes? |
Beta Was this translation helpful? Give feedback.
-
I now have a weird bug. |
Beta Was this translation helpful? Give feedback.
-
It did indeed save the ae file but the images/videos files were missing. My method to solve this is to tell the script directly to save the file in the desired location: static method or
script.jsx
|
Beta Was this translation helpful? Give feedback.
-
Another problem I had was that the old image file was not deleted from the after-effect file. I've fixed it, would you like me to add it as a pull request? |
Beta Was this translation helpful? Give feedback.
Yeah, you did it all perfectly correctly. One minor thing is that nexrender does not save the project after the render is done, so you would need to call a js script that would do that.
Make sure to create a script.jsx with this content:
and then provide that file as an asset with "script" type