How to batch process many clips for adding pixel motion blur
Pretty simple problem here, but maybe without a simple solution. I have a large collection of short (~5 seconds or less) clips (~300 in total), and need to apply pixel motion blur to all of them.
The problem is that pixel motion blur creates a massive volume of cached data (several GB for a 5s clip). So I need an automated solution to:
- loop through each clip
- apply pixel motion blur
- render the clip out
- clear the cache
- move on to the next clip
I could do this manually, but it would take absolutely forever.
I tried to automate the process with AE scripting in JavaScript, but it seems that pixel motion blur in particular cannot be applied in a scripting environment (?)
Any suggestions?
