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
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
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))
it works fine !
thanks
jerome