assimp

Command-line client for the Open Asset Import Library. Supports loading of 40+ 3D file formats, and exporting to several popular 3D formats. More information: <https://assimp-docs.readthedocs.io/>.

Install

All systems
curl cmd.cat/assimp.sh
Debian Debian
apt-get install assimp-utils
Ubuntu
apt-get install assimp-utils
Arch Arch Linux
pacman -S assimp
image/svg+xml Kali Linux
apt-get install assimp-utils
Fedora
dnf install assimp
Windows (WSL2)
sudo apt-get update sudo apt-get install assimp-utils
OS X
brew install assimp
Raspbian
apt-get install assimp-utils

Command-line client for the Open Asset Import Library. Supports loading of 40+ 3D file formats, and exporting to several popular 3D formats. More information: <https://assimp-docs.readthedocs.io/>.

  • List all supported import formats:
    assimp listext
  • List all supported export formats:
    assimp listexport
  • Convert a file to one of the supported output formats, using the default parameters:
    assimp export input_file.stl output_file.obj
  • Convert a file using custom parameters (the dox_cmd.h file in assimp's source code lists available parameters):
    assimp export input_file.stl output_file.obj parameters
  • Display a summary of a 3D file's contents:
    assimp info path/to/file
  • List all supported subcommands ("verbs"):
    assimp help
  • Get help on a specific subcommand (e.g. the parameters specific to it):
    assimp subcommand --help

© tl;dr; authors and contributors