Skip to content

Instantly share code, notes, and snippets.

@seblavoie
Last active December 11, 2015 11:38
Show Gist options
  • Save seblavoie/4595388 to your computer and use it in GitHub Desktop.
Save seblavoie/4595388 to your computer and use it in GitHub Desktop.
After Effects command line aliases for Windows
# Adobe After Effects command line aliases
# Change this according to your version
AEVERSION="CS6"
# OSX
AEPATH="/Applications/Adobe After Effects ${AEVERSION}/aerender"
# Windows
AEPATH="C:/Program Files/Adobe/Adobe After Effects ${AEVERSION}/Support Files/aerender.exe"
# $ aerenderproject name-of-file.aep
aerenderproject() {
PATH=$(pwd)/$*
"${AEPATH}" -project "${PATH}"
}
# $ aerenderallprojects
aerenderallprojects() {
for file in $(pwd)/*.aep
do
"${AEPATH}" -project "${file}"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment