Convert Qubism Android JSON models into Wavefront OBJ files that can be opened in Blender or any OBJ-compatible 3D viewer.
| Qubism Android model | Converted OBJ model |
|---|---|
![]() |
![]() |
Install dependencies once:
npm installPut your exported Qubism .json files in:
src/input/
Run the converter:
npm startGenerated .obj files are written to:
src/output/
The converter scans every .json file in src/input/ and creates a matching .obj file in src/output/.
Example:
src/input/my-model.json -> src/output/my-model.obj
If the matching .obj already exists, the script leaves it untouched. Delete the existing output file first if you want to regenerate it.
- Create your model in the Qubism Android app.
- Export the model as a Qubism JSON file.
- Copy the JSON file into
src/input/. - Run
npm start. - Import the generated OBJ from
src/output/into Blender or another OBJ-compatible viewer.
This project is licensed under the GNU General Public License v3.0 or later.
That means it is open source copyleft software: if you distribute modified versions of this project, those versions must also remain open source under the same license terms.

