normalize-audio command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
normalize-audio: command not found
or when using sudo you get the following error message
sudo: normalize-audio: command not found
Solutions to normalize-audio: command not found
How To Fix normalize-audio: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu normalize-audio is provided by normalize-audio package.
normalize-audio is:
normalize-audio is a tool for adjusting the volume of WAV, MP3 and OGG files to a standard volume level. This is useful for things like creating mix CDs and MP3 databases, where different recording levels on different albums can cause the volume to vary greatly from song to song.
To fix this problem, we can install more using the command below.
sudo apt-get -y install normalize-audio
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install normalize-audio.
sudo apt -y install normalize-audio
Or if you have aptitude installed you can use the following command.
sudo aptitude install normalize-audio
Summary
In this tutorial we learn how to fix normalize-audio command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.