Multiple FBX Export
November 16, 2010 - 6:51am
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
November 16, 2010 - 9:33am
#2
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))
November 16, 2010 - 10:19am
#3
it works fine !
thanks
jerome
it works fine !
thanks
jerome

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