Convert USD to GLTF via Python

Export USD & other 3D files using .NET Framework, .NET Core and Mono

Export USD Scene as GLTF with C#

  1. Load USD file using a from_file of Scene class
  2. Call Scene.save method
  3. Pass output file name with .gltf extension as first parameter
  4. Specify GLTF field value from FileFormat class

3D Format Conversion API for Python via .NET

Install from command line as pip install aspose-3d .

Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .

C# Code for USD to GLTF Conversion

# load the USD in an object of Scene 
scene = aspose.threed.Scene.from_file("template.usd");
# save USD as a GLTF 
scene.save("output.gltf", aspose.threed.FileFormat.GLTF);

Other Conversion Options

USD TO DRC (Google Draco File Format)
USD TO GLTF (GL Transmission Format File)
USD TO FBX (Autodesk FBX Interchange File)
USD TO 3DS (3D Studio Scene)
USD TO DAE (Digital Asset Exchange File)
USD TO RVM (AVEVA RVM)
USD TO PDF (Portable Document Format)
USD TO JT (JT Open CAD File)

USD What is USD File Format?

A file with .usd extension is a Universal Scene Description file format that encodes data for the purpose of data interchanging and augmenting between digital content creation applications. Developed by Pixar, USD provides the ability to interchange elemental assets (such as models) or animation.

Read More

GLTF What is GLTF File Format?

glTF (GL Transmission Format) is a 3D file format that stores 3D model information in JSON format. The use of JSON minimizes both the size of 3D assets and the runtime processing needed to unpack and use those assets. It was adopted for the efficient transmission and loading of 3D scenes and models by applications. glTF was developed by the Khronos Group 3D Formats Working Group and is also described as JPEG of 3D by its creators. The format defines an extensible, common publishing format for 3D content tools and services that streamlines authoring workflows and enables interoperable use of content across the industry. The intention behind the creation of glTF file format was to define an extensible, common publishing format for 3D content tools and services that should streamline authoring workflows and enable interoperable use of content across the industry. It minimizes runtime processing by applications using WebGL and other APIs.

Read More