|
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: |
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 |
|
But the script will run before the render begins, there is a way to save the AE after the render completes? |
|
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 |
|
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? |

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