9

I'm trying to figure out if this is possible:

  • web server running PHP collects a number of images from user input
  • web server takes those images, runs AfterEffects which uses the images instead of placeholders in a template video to create a personalised video for the user
  • web server makes the video available for download to the user.

Cheers, Mark.

koosa
  • 2,966
  • 3
  • 31
  • 46

2 Answers2

9

This would be mighty complex, but I think it might be possible. Here's how I think the process might go down:

  1. Make your After Effects project, importing some placeholder images. Save the project.
  2. Client uploads images. Those images need to be converted to the same image filetype (PNG, JPEG, TIFF, whatever) as your placeholder images, renamed to the same name as your placeholder images, and placed in the same directory as the placeholder images that were referenced in your After Effects project.
  3. Run After Effects from the command line using aerender. More info on that here.
  4. Render to a public directory and give the link to the client.
  5. Delete the client's uploaded images to make room for the next client.

Heres where things would get tricky:

  • I don't think it's feasible to edit the After Effects project file, so I think the client would be limited to the exact number of images you made in your template. Any more would not appear in the rendered movie, and any less would give a media offline error. I do not think it is possible to have After Effects import media via a script.
winduptoy
  • 5,366
  • 11
  • 49
  • 67
0

Yes. It is possible, our stack is fairly involved. We are doing it at my startup, lumin8.me. Doable but complex, yet fun :)

ariestav
  • 2,799
  • 4
  • 28
  • 56
  • 5
    Should have updated this, my apologies. Unfortunately, due to current licensing restrictions from Adobe, end users of After Effects are not allowed to deploy AE on a server to be controlled by a remote machine. As a result, lumin8.me has shut down. – ariestav Mar 13 '14 at 21:43
  • Ignore the license then. – Sebastian Mar 02 '21 at 16:14