Difference between revisions of "Nuke Batch Render"
Jump to navigation
Jump to search
(Created page with "Nuke .bat Batch Render Scripts= === Writes Render - Windows === <pre> // Set frame range at the end of the line // Add a line for each comp you want to render // If you have m...") |
|||
Line 4: | Line 4: | ||
// Set frame range at the end of the line | // Set frame range at the end of the line | ||
// Add a line for each comp you want to render | // Add a line for each comp you want to render | ||
− | // If you have multi Writes nodes in each comp, check limit to range in the node, specify your range in the node and specify a largest range in the .bat. | + | // If you have multi Writes nodes in each comp, check "limit to range" in the node, specify your range in the node and specify a largest range in the .bat. |
@echo off | @echo off |
Latest revision as of 23:14, 11 November 2021
Nuke .bat Batch Render Scripts=
Writes Render - Windows
// Set frame range at the end of the line // Add a line for each comp you want to render // If you have multi Writes nodes in each comp, check "limit to range" in the node, specify your range in the node and specify a largest range in the .bat. @echo off "C:\NUKE_PATH\NUKE_FOLDER\NUKE.exe" -x -i "D:\YOUR_PROJECT\Your_comp.nk" 1,100 pause()