How To Install ladspa.x86_64 on Amazon Linux 2

In this tutorial we learn how to install ladspa.x86_64 in Amazon Linux 2. ladspa.x86_64 is Linux Audio Developer’s Simple Plug-in API, examples and tools

Introduction

In this tutorial we learn how to install ladspa.x86_64 on Amazon Linux 2.

What is ladspa.x86_64

There is a large number of synthesis packages in use or development on the Linux platform at this time. The Linux Audio Developer’s Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin’ audio processors in C/C++ and link them dynamically against a range of host applications. This package contains the example plug-ins and tools from the LADSPA SDK.

We can use yum to install ladspa.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install ladspa.x86_64.

Install ladspa.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install ladspa.x86_64 using yum by running the following command:

sudo yum -y install ladspa.x86_64

How To Uninstall ladspa.x86_64 on Amazon Linux 2

To uninstall only the ladspa.x86_64 package we can use the following command:

sudo yum remove ladspa.x86_64

ladspa.x86_64 Package Contents on Amazon Linux 2

/usr/bin/analyseplugin
/usr/bin/applyplugin
/usr/bin/listplugins
/usr/lib64/ladspa
/usr/lib64/ladspa/amp.so
/usr/lib64/ladspa/delay.so
/usr/lib64/ladspa/filter.so
/usr/lib64/ladspa/noise.so
/usr/lib64/ladspa/sine.so
/usr/share/doc/ladspa-1.13
/usr/share/doc/ladspa-1.13/COPYING
/usr/share/ladspa
/usr/share/ladspa/rdf

References

Summary

In this tutorial we learn how to install ladspa.x86_64 on Amazon Linux 2 using yum.