• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Multi-machine rendering from command line

New Here ,
Apr 03, 2017 Apr 03, 2017

Copy link to clipboard

Copied

Hi,

We are planning to use After Effects for automatic rendering and thus run it from command line.

In order to render the content faster we use multi-machine mode ( as described here: Automated rendering and network rendering in After Effects ).

Now we need to make it automatically - run it from command line by a script (without UI).

How can we do it?

Any method or tip helps

Thanks

TOPICS
SDK

Views

1.3K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 04, 2017 Apr 04, 2017

Copy link to clipboard

Copied

the link you have included seems to have all the info.

what "missing links" do you have in the process?

On Mon, Apr 3, 2017 at 4:55 PM, erezo41320762 <forums_noreply@adobe.com>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 06, 2017 Apr 06, 2017

Copy link to clipboard

Copied

Hey there!

Have you gotten an answer to this? There are certainly some ways to make this kind of thing happen. I have an Automator droplet I've created on my Mac that accepts an AE project and runs the AERender application.

It looks like this:

https://cl.ly/411N081e1P22

The code is this: 

on run {input, parameters}

 

  set aeRender to (quoted form of ("/Applications/Adobe After Effects CC 2017/aerender"))

  set aepInput to (quoted form of (POSIX path of input))

 

  tell application "Terminal"

  activate

  --tell application "System Events" to keystroke "n" using {command down}

  do script (aeRender & " -project " & aepInput)

  end tell

 

end run

Reading Material:

Automated rendering and network rendering in After Effects

There are then ways to make folders do things, but I'm thinking maybe that would be through a PHP watcher app.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 23, 2017 Apr 23, 2017

Copy link to clipboard

Copied

LATEST

Hi guys,

Thanks for your replies.

I found some way to make the process work automatically and now have new issue:

Network rendering issue - not all agents are working

Please help.

Thank you.

Erez

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines