How To Install libebur128 on AlmaLinux 8
Introduction
In this tutorial we learn how to install libebur128
on AlmaLinux 8.
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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libebur128.
Install libebur128 on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libebur128
using dnf
by running the following command:
sudo dnf -y install libebur128
Install libebur128 on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libebur128
using yum
by running the following command:
sudo yum -y install libebur128
How To Uninstall libebur128 on AlmaLinux 8
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 AlmaLinux 8 using yum and dnf.