Houdini To After Effects in archive (python script)

   2872   4   1
User Avatar
Member
56 posts
Joined: June 2016
Offline
Hello,

I want to export Null positions and my camera from Houdini to After Effects. I found a link to this script [archive.sidefx.com], but unfortunately I am not able to download the “HoudiniToAE.py” anymore.

So I wonder if anyone has a backup of this file or something different that works.

Thanks!
User Avatar
Member
333 posts
Joined: Oct. 2012
Offline
please find attached the zip file including the python and menu script.

Hope this helps. I did not test. The last time I used it, it worked.

Attachments:
h2ae.zip (2.4 KB)

User Avatar
Member
56 posts
Joined: June 2016
Offline
Thank you! It still seems to work perfectly.
User Avatar
Member
174 posts
Joined: March 2014
Offline
Hi, This script don't works with an animated focal/aperture… Do someone already workaround it ?
User Avatar
Member
136 posts
Joined: July 2005
Offline
It works with an animated “focal” parameter, but does not take into account animated “aperture”
To fix this, find the line:

if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0):

and replace with:

if (objType == ‘cam’) and (len(obj.parm('focal').keyframes()) != 0) or (len(obj.parm('aperture').keyframes()) != 0):
  • Quick Links