From 20571675766209ad1251f07e687d29a6791afc8b Mon Sep 17 00:00:00 2001 From: C4illin Date: Sat, 28 Sep 2024 13:13:48 +0200 Subject: [PATCH] fix: add support for usd for assimp, #144 --- src/converters/assimp.ts | 194 ++++++++++++++++++++------------------- 1 file changed, 99 insertions(+), 95 deletions(-) diff --git a/src/converters/assimp.ts b/src/converters/assimp.ts index ea44b6d..b3c9f1a 100644 --- a/src/converters/assimp.ts +++ b/src/converters/assimp.ts @@ -4,104 +4,109 @@ import { exec } from "node:child_process"; export const properties = { from: { muxer: [ - "3d", - "3ds", - "3mf", - "ac", - "ac3d", - "acc", - "amf", - "ase", - "ask", - "assbin", - "b3d", - "blend", - "bsp", - "bvh", - "cob", - "csm", - "dae", - "dxf", - "enff", - "fbx", - "glb", - "gltf", - "hmp", - "ifc", - "ifczip", - "iqm", - "irr", - "irrmesh", - "lwo", - "lws", - "lxo", - "md2", - "md3", - "md5anim", - "md5camera", - "md5mesh", - "mdc", - "mdl", - "mesh", - "mesh.xml", - "mot", - "ms3d", - "ndo", - "nff", - "obj", - "off", - "ogex", - "pk3", - "ply", - "pmx", - "prj", - "q3o", - "q3s", - "raw", - "scn", - "sib", - "smd", - "step", - "stl", - "stp", - "ter", - "uc", - "vta", - "x", - "x3d", - "x3db", - "xgl", - "xml", - "zae", - "zgl", + "3d", + "3ds", + "3mf", + "ac", + "ac3d", + "acc", + "amf", + "ase", + "ask", + "assbin", + "b3d", + "blend", + "bsp", + "bvh", + "cob", + "csm", + "dae", + "dxf", + "enff", + "fbx", + "glb", + "gltf", + "hmp", + "ifc", + "ifczip", + "iqm", + "irr", + "irrmesh", + "lwo", + "lws", + "lxo", + "md2", + "md3", + "md5anim", + "md5camera", + "md5mesh", + "mdc", + "mdl", + "mesh.xml", + "mesh", + "mot", + "ms3d", + "ndo", + "nff", + "obj", + "off", + "ogex", + "pk3", + "ply", + "pmx", + "prj", + "q3o", + "q3s", + "raw", + "scn", + "sib", + "smd", + "step", + "stl", + "stp", + "ter", + "uc", + "usd", + "usda", + "usdc", + "usdz", + "vta", + "x", + "x3d", + "x3db", + "xgl", + "xml", + "zae", + "zgl", ], }, to: { muxer: [ - "collada", - "x", - "stp", - "obj", - "objnomtl", - "stl", - "stlb", - "ply", - "plyb", - "3ds", - "gltf2", - "glb2", - "gltf", - "glb", - "assbin", - "assxml", - "x3d", - "fbx", - "fbxa", - "m3d", - "m3da", - "3mf", - "pbrt", - "assjson", + "3ds", + "3mf", + "assbin", + "assjson", + "assxml", + "collada", + "dae", + "fbx", + "fbxa", + "glb", + "glb2", + "gltf", + "gltf2", + "m3d", + "m3da", + "obj", + "objnomtl", + "pbrt", + "ply", + "plyb", + "stl", + "stlb", + "stp", + "x", + "x3d", ], }, }; @@ -116,7 +121,6 @@ export async function convert( ): Promise { // let command = "ffmpeg"; - const command = `assimp export "${filePath}" "${targetPath}"`; return new Promise((resolve, reject) => {