soundstretch command not found

In this troubleshooting guide we learn how to fix soundstretch command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

soundstretch: command not found

or when using sudo you get the following error message

sudo: soundstretch: command not found

Solutions to soundstretch: command not found

How To Fix soundstretch: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu soundstretch is provided by soundstretch package.

soundstretch is:

This program can stretch and pitch-shift .wav-files independently. This is especially useful for musicians, who want to listen to a song played slowly, without having the pitch altered.

This program uses the SoundTouch shared library for the actual work.

To fix this problem, we can install more using the command below.

sudo apt-get -y install soundstretch

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install soundstretch.

sudo apt -y install soundstretch

Or if you have aptitude installed you can use the following command.

sudo aptitude install soundstretch

Summary

In this tutorial we learn how to fix soundstretch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.