How To Install libebur128 on CentOS 7

In this tutorial we learn how to install libebur128 on CentOS 7. libebur128 is A library that implements the EBU R 128 standard for loudness

Introduction

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

What is libebur128

A library that implements the EBU R 128 standard for loudness normalization. It implements M, S and I modes, loudness range measurement (EBU - TECH 3342), true peak scanning and all sample-rates by recalculation of the filter coefficients.

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

Install libebur128 on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install libebur128

Install libebur128 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 libebur128 using dnf by running the following command:

sudo dnf -y install libebur128

How To Uninstall libebur128 on CentOS 7

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

sudo dnf remove libebur128

References

Summary

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