Comment convertir un fichier DAE en GLB en ligne de commande
D’abord, installez assimp :
install_assimp.sh
sudo apt-get install -y assimp-utilsEnsuite, convertissez le fichier :
convert_dae_to_glb.sh
assimp export input.dae output.glbou convertissez tous les fichiers dans le dossier courant :
convert_all_dae.sh
for i in *.dae ; do assimp export "$i" "${i%.dae}.glb" ; doneCheck out similar posts by category:
3D
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow