How To Install soundtouch on CentOS 7

In this tutorial we learn how to install soundtouch on CentOS 7. soundtouch is Audio Processing library for changing Tempo, Pitch and Playback

Introduction

In this tutorial we learn how to install soundtouch on CentOS 7.

What is soundtouch

SoundTouch is a LGPL-licensed open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or files. The SoundTouch library is suited for application developers writing sound processing tools that require tempo/pitch control functionality, or just for playing around with the sound effects. The SoundTouch library source kit includes an example utility SoundStretch which allows processing .wav audio files from a command-line interface. SoundTouch is a LGPL-licensed open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or files. The SoundTouch library is suited for application developers writing sound processing tools that require tempo/pitch control functionality, or just for playing around with the sound effects. The SoundTouch library source kit includes an example utility SoundStretch which allows processing .wav audio files from a command-line interface.

We can use yum or dnf to install soundtouch on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install soundtouch.

Install soundtouch on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install soundtouch using yum by running the following command:

sudo yum -y install soundtouch

Install soundtouch on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install soundtouch using dnf by running the following command:

sudo dnf -y install soundtouch

How To Uninstall soundtouch on CentOS 7

To uninstall only the soundtouch package we can use the following command:

sudo dnf remove soundtouch

References

Summary

In this tutorial we learn how to install soundtouch on CentOS 7 using yum and dnf.