How to convert DAE file to GLB on the command line
First, install assimp
:
sudo apt-get install -y assimp-utils
Then, convert the file:
assimp export input.dae output.glb
or convert all files in the current folder:
for i in *.dae ; do assimp export "$i" "${i%.dae}.glb" ; done
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow