How To Install libgdither on Fedora 34

libgdither is Library for applying dithering to PCM audio sources Library for applying dithering to PCM audio sources

Introduction

In this tutorial we learn how to install libgdither on Fedora 34.

What is libgdither

Libgdither is a GPL’d library library for performing audio dithering on PCM samples. The dithering process should be carried out before reducing the bit width of PCM audio data (eg. float to 16 bit int conversions) to preserve audio quality. libgdither 0.6 24.fc34 x86_64 24 k libgdither-0.6-24.fc34.src.rpm fedora Library for applying dithering to PCM audio sources http GPLv2+ Libgdither is a GPL’d library library for performing audio dithering on PCM samples. The dithering process should be carried out before reducing the bit width of PCM audio data (eg. float to 16 bit int conversions) to preserve audio quality.

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

Install libgdither on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install libgdither

Install libgdither on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install libgdither

How To Uninstall libgdither on Fedora 34

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

sudo dnf remove libgdither

libgdither Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/1f
/usr/lib/.build-id/1f/5e210211cf8d1c4b4a388c9e4d0ceed0b7d46d
/usr/lib/libgdither.so.1
/usr/lib/libgdither.so.1.0
/usr/share/doc/libgdither
/usr/share/doc/libgdither/README
/usr/share/licenses/libgdither
/usr/share/licenses/libgdither/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/b1a3b4be4bb3ffb7234f38ba5bc78f15f9bf2c
/usr/lib64/libgdither.so.1
/usr/lib64/libgdither.so.1.0
/usr/share/doc/libgdither
/usr/share/doc/libgdither/README
/usr/share/licenses/libgdither
/usr/share/licenses/libgdither/COPYING

References

Summary

In this tutorial we learn how to install libgdither on Fedora 34 using yum and dnf.