Может кто знает как это сделать...
Нашел скрипт для макса, но поставить не смог
-- After Effects Camera Export -- script by George Polevoy. June 01, 2001 -- comments -- select your camera (must be target camera) -- run this script (Ctrl+E) -- analyse output for AE keyframe data -- select everything from \"Adobe After Effects.... to ... End Of Keyframe Data\" -- copy to clipboard (Ctrl+C), select your camera in AE and paste (Ctrl+V) -- that's it myCam = $ a = \"\" st = StringStream a fn outLine l = format \"%n\" l to:st outLine \"\" outLine \"Adobe After Effects 5.0 Keyframe Data\" outLine \"tUnits Per Second 25\" outLine \"tSource Width 768\" outLine \"tSource Height 576\" outLine \"tSource Pixel Aspect Ratio 1\" outLine \"tComp Pixel Aspect Ratio 1\" outLine \"Point of Interest\" outLine \"tFrametX pixelstY pixelstZ pixels\" for iTime = animationRange.start to animationRange.end do ( i = (iTime as integer) / ticksPerFrame at time iTime ( outLine (\"t\" + (i as string) + \"t\" + (myCam.target.pos.x as string) + \"t\" + ((-myCam.target.pos.z) as string) + \"t\" + (myCam.target.pos.y as string) ) ) ) outLine \"Position\" outLine \"tFrametX pixelstY pixelstZ pixels\" for iTime = animationRange.start to animationRange.end do ( i = (iTime as integer) / ticksPerFrame at time iTime ( outLine (\"t\" + (i as string) + \"t\" + (myCam.pos.x as string) + \"t\" + ((-myCam.pos.z) as string) + \"t\" + (myCam.pos.y as string) ) ) ) outLine \"Z Rotation\" outLine \"tFrametdegrees\" for iTime = animationRange.start to animationRange.end do ( i = (iTime as integer) / ticksPerFrame at time iTime ( outLine (\"t\" + (i as string) + \"t\" + ((-myCam.controller.roll_angle) as string) ) ) ) outLine \"Zoom\" outLine \"tFrametpixels\" for iTime = animationRange.start to animationRange.end do ( i = (iTime as integer) / ticksPerFrame at time iTime ( outLine (\"t\" + (i as string) + \"t\" + ((384./tan(myCam.FOV/2.)) as string) ) ) ) outLine \"End of Keyframe Data\" st -- the end

Помощь















