Multiple FBX Export

3 replies [Last post]
lexis
Offline
Last seen: 1 year 15 weeks ago
Joined: 16 Nov 2010

Hello,

In order to validate our pipeline including the batch analysis feature, once all the animation are generated and located in a specific animation group, We would like to export them into fbx to use them in 3dsmax.
Of course, we would like to automatise this process and right now we didn't find an easy way to do that.
So is there a way to export into multiple fbx files all the animations of a specific group without many manipulations?

Thanks

jamie
Offline
Last seen: 3 days 6 hours ago
Joined: 29 Apr 2009
Set up Python callbacks (see

Set up Python callbacks (see postanalysis: http://www.facefx.com/documentation/2010/W91#toc_4) and export the fbx as soon as the analysis is complete.

- Jamie

doug
Offline
Last seen: 1 hour 23 min ago
Joined: 29 Apr 2009
A python sctipt works too if
A python sctipt works too if you want to be able to tweak animations before exporting.

for group in getAnimationNames():
  for anim in group[1]:
    outputFile = "C:\\Users\\Me\\" + group[0] + "_" + anim + ".fbx";
    issueCommand('fbx -reducekeys "true" -file "%s" -group "%s" -anim "%s";'%(outputFile, group[0], anim))






lexis
Offline
Last seen: 1 year 15 weeks ago
Joined: 16 Nov 2010
it works fine ! thanks jerome

it works fine !
thanks

jerome