python FBX SDK bvh2fbx

from fbx import *

# Create
manager = FbxManager.Create()
scene = FbxScene.Create(manager, "fbxScene")
bvh_path = "test.bvh"
fbx_path = "sample.fbx"


import FbxCommon
result = FbxCommon.LoadScene(manager,scene,bvh_path)
result = FbxCommon.SaveScene(manager,scene,fbx_path,0)

scene.Destroy()
manager.Destroy()

你可能感兴趣的:(python,java,服务器)