How To Install libaudiomask1 on Kali Linux
Introduction
In this tutorial we learn how to install libaudiomask1
on Kali Linux.
What is libaudiomask1
libaudiomask1 is:
Evaluates the simultaneous masking threshold for audio. The masking threshold is a psychoacoustics property of the perception of sound. This threshold determines the cut-off in perception. Any Fourier signal below the threshold is not perceived by listeners.
Simultaneous masking is the basis of mp3 audio compression. This GPL implementation allows arbitrary sample rate and window sizes. It is extremely simple to use, rather cheap in computation complexity and gives great results. To alter the degree of masking (quality of the playback after compression), simply shift the threshold this library generates up and down.
There are three methods to install libaudiomask1
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libaudiomask1 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libaudiomask1
using apt-get
by running the following command:
sudo apt-get -y install libaudiomask1
Install libaudiomask1 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libaudiomask1
using apt
by running the following command:
sudo apt -y install libaudiomask1
Install libaudiomask1 Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libaudiomask1
using aptitude
by running the following command:
sudo aptitude -y install libaudiomask1
How To Uninstall libaudiomask1 on Kali Linux
To uninstall only the libaudiomask1
package we can use the following command:
sudo apt-get remove libaudiomask1
Uninstall libaudiomask1 And Its Dependencies
To uninstall libaudiomask1
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libaudiomask1
Remove libaudiomask1 Configurations and Data
To remove libaudiomask1
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libaudiomask1
Remove libaudiomask1 configuration, data, and all of its dependencies
We can use the following command to remove libaudiomask1
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libaudiomask1
Dependencies
libaudiomask1 have the following dependencies:
References
Summary
In this tutorial we learn how to install libaudiomask1
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.