resample command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
resample: command not found
or when using sudo you get the following error message
sudo: resample: command not found
Solutions to resample: command not found
How To Fix resample: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu resample is provided by resample package.
resample is:
The resample program “resamples” a soundfile to change its sampling rate. For example, it can be used to convert the sampling rate from 48 kHz (used by DAT machines) to 44.1 kHz (the standard sampling rate for Compact Discs).
The windowfilter program designs Finite-Impulse-Response (FIR) digital filters by the so-called “window method.” In this method, the ideal impulse response (a sinc function) is “windowed” by a Kaiser window (a popular window used in spectrum analysis).
To fix this problem, we can install more using the command below.
sudo apt-get -y install resample
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install resample.
sudo apt -y install resample
Or if you have aptitude installed you can use the following command.
sudo aptitude install resample
Summary
In this tutorial we learn how to fix resample command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.