Update Anymate/utils/ui_utils.py
Browse files
Anymate/utils/ui_utils.py
CHANGED
@@ -252,7 +252,7 @@ def process_input(mesh_file):
|
|
252 |
os.makedirs(f"Anymate/tmp/{mesh_file.split('/')[-1].replace('.glb', '')}", exist_ok=True)
|
253 |
abs_path = os.path.abspath(mesh_file)
|
254 |
|
255 |
-
os.system(f"python Convert.py --path {abs_path}")
|
256 |
|
257 |
mesh_file = abs_path.replace('.glb', '.obj')
|
258 |
while not os.path.exists(mesh_file):
|
|
|
252 |
os.makedirs(f"Anymate/tmp/{mesh_file.split('/')[-1].replace('.glb', '')}", exist_ok=True)
|
253 |
abs_path = os.path.abspath(mesh_file)
|
254 |
|
255 |
+
os.system(f"python Convert.py --path '{abs_path}'")
|
256 |
|
257 |
mesh_file = abs_path.replace('.glb', '.obj')
|
258 |
while not os.path.exists(mesh_file):
|