BatchProcessor

Version: 2.0 Sign up to be notified by email when a new version of this script is posted
This script allows to batch process the selected project items. For instance, it can be used to apply the same preset to a collection of movies or comps. You can add multiple output modules if you want different types of output for each rendered item.
- BatchProcessor UI










Looks like a real time saver. Is it safe to assume this works fine with Nucleo Pro 2?
Great Script as usual
..
i have a suggestion i don’t know if it’s possible as i don’t have scripting background .. but can u add one more batch order to extend Comps to a certain Length ?!?
i would be a great Great great help .. : )
it’s a pain in the butt having to go through all Comps u made and extend the duration manually
thank you So much ,
Sandra
Sandra, save the following lines as a jsx file, then select the comps to extend and run the script.
var compDur = prompt("Comps duration in seconds:",30);if (parseInt(compDur) > 0)
{
var comps = app.project.selection;
app.beginUndoGroup("Change Comps Duration");
for (var i = 0; i < comps.length; i++)
if (comps[i] instanceof CompItem)
comps[i].duration = parseInt(compDur);
app.endUndoGroup();
}
thank you !!!!
you saved my life !
Charles, Great script!
You’ve saved us hours in the workflow! I do have a question….we export edited shots out of AE in PNG sequences…problem is we’re trying to find a way for AECS4 to export each of the PNG sequences into their own folders out of AE.
I was hoping BatchProcessor would have an option like that…that could create a folder for each of the numbered tasks in the render queue.
Is there is a function like that? I’m not a scripter…well have tried…but with no success
Thanks a lot and great job on the script!
- Brad
Fantastic!!