melt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
melt: command not found
or when using sudo you get the following error message
sudo: melt: command not found
Solutions to melt: command not found
How To Fix melt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu melt is provided by melt package.
melt is:
melt was meant as a test tool for the MLT framework, but it is also a powerful multitrack command line oriented video editor. It could also used as an minimalistic media player for audio and video files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install melt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install melt.
sudo apt -y install melt
Or if you have aptitude installed you can use the following command.
sudo aptitude install melt
Summary
In this tutorial we learn how to fix melt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.