About the FBX binary file format

I want to read the FBX binary format, but I do not want to use the FBX sdk for Autodesk.

Please teach when someone knows that websites are in fbx binary file format.

+3
source share
2 answers

According to Wikipedia - http://en.wikipedia.org/wiki/FBX - Blender includes a Python script for export to FBX format. This is probably the closest thing you will find to document it. Sounds like a painful RTFS task.

+1
source

Currently, the FBX binary format is not documented.

I'm currently working on a loader, although based on the work, assimpboth parsers are roughly equivalent.

https://github.com/ideasman42/pyfbx_i42/https://github.com/ideasman42/pyfbx_i42/blob/master/pyfbx/parse_bin.py p >

https://github.com/assimp/assimp/https://github.com/assimp/assimp/blob/master/code/FBXBinaryTokenizer.cpp p >

pyfbx, Python3 ++, fbx2json.

, , - XML/JSON ( ), . , , .., .

+1
source

Source: https://habr.com/ru/post/1752830/


All Articles