[[FrontPage]] ** After Effects [#x9577c1a] - SceneSplitter、Ver1.2 -- http://twitpic.com/5zilh5 -細かすぎて伝わらないプリレンダリング最適化選手権 - Qiita --http://qiita.com/yama_ko/items/e216e993ead894003268 ** バッチレンダリング [#f6827c37] #prettify{{ "C:\Program Files\Adobe\Adobe After Effects CC 2015.3\Support Files\aerender.exe" -project "W:\20161128_GLROWS_OPENIG2\Develop\Project.aep" }} ** バッチレンダリング その2 [#f8be28fd] 下のコードをautorender.batとして、レンダリングしたいaepファイルと同じフォルダに配置. autorender.bat your_project_xxx.aep #prettify{{ @echo off %~d0 cd %~d0%~p0 echo ************************ echo ** autorender run .. ** echo ************************ set AF_RENDER_EXE="C:\Program Files\Adobe\Adobe After Effects CC 2015.3\Support Files\aerender.exe" set CUR_DIR=%~d0%~p0 rem set AEP=id142_ver1.1.aep set AEP=%1 set TARGET_PATH=%CUR_DIR%%AEP% rem ** INFOMATION ** echo [ AF_RENDER_EXE ] echo %AF_RENDER_EXE% echo; echo [ target.aep ] echo %AEP% echo; echo [ current dir ] echo %CUR_DIR% echo; echo [ target.aep full path ] echo %TARGET_PATH% echo; rem ** RENDERING ** %AF_RENDER_EXE% -project %TARGET_PATH% }}