How to convert DAE file to OBJ on the command line
Converting one or multiple DAE files to OBJ format can be done easily using the assimp
command line tool.
First, install assimp
:
sudo apt-get install -y assimp-utils
Then, to convert only a single file
assimp export input.dae output.obj
or to convert all files in the current folder:
for i in *.dae ; do assimp export "$i" "${i%.dae}.obj" ; 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