Home

Awesome

Fbx Format Converter

This project allows you to convert binary fbx files to asciis and vice versa. This is especially useful when trying to import fbx files into blender since blender cannot read ascii FBX files.

Features

To build:

Conversion:

If you want to convert an ascii file into a binary one or vice versa.

FbxFormatConverter.exe -c <filepath|folderpath> [-o <filepath|folderpath>] {-ascii|-binary}

Query:

If you want to find out if an FBX file is an ascii or a binary file.

FbxFormatConverter.exe -q <filepath|folderpath>

Examples

If you want to covert file "anim_temp_final_0_v2.fbx" to binary.

FbxFormatConverter.exe -c "c:\anim_temp_final_0_v2.fbx" -binary

If you want to convert all the files in folder a to ascii and store the converted files in folder b:

FbxFormatConverter.exe -c "c:\a" -o "c:\b" -ascii

If you want to know if file "dancingbaby.fbx" is a binary file.

FbxFormatConverter.exe -q "c:\dancingbaby.fbx"

Notes:

This project uses CmdParser ( https://github.com/FlorianRappl/CmdParser )