How To Install celt051 on CentOS 8
Introduction
In this tutorial we learn how to install celt051
on CentOS 8.
What is celt051
CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). The CELT bitstream format is not yet stable, this package is a special version of 0.5.1 that has the same bitstream format, but symbols and files renamed from ‘celt*’ to ‘celt051*’ so that it is parallel installable with the normal celt for packages requiring this particular bitstream format. celt051 0.5.1.3 15.el8 x86_64 63 k celt051-0.5.1.3-15.el8.src.rpm appstream An audio codec for use in low-delay speech and audio communication http BSD CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). The CELT bitstream format is not yet stable, this package is a special version of 0.5.1 that has the same bitstream format, but symbols and files renamed from ‘celt*’ to ‘celt051*’ so that it is parallel installable with the normal celt for packages requiring this particular bitstream format.
We can use yum
or dnf
to install celt051
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install celt051.
Install celt051 on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install celt051
using dnf
by running the following command:
sudo dnf -y install celt051
Install celt051 on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install celt051
using yum
by running the following command:
sudo yum -y install celt051
How To Uninstall celt051 on CentOS 8
To uninstall only the celt051
package we can use the following command:
sudo dnf remove celt051
celt051 Package Contents on CentOS 8
/usr/bin/celtdec051
/usr/bin/celtenc051
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/30ac57b7be845ec49effc534596f2787418214
/usr/lib/.build-id/50
/usr/lib/.build-id/50/3f1e13f281adb2547a92c192856e0c33536415
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/cbb46a4c7279f6c23fed73d36d135c03c4dc66
/usr/lib/libcelt051.so.0
/usr/lib/libcelt051.so.0.0.0
/usr/share/doc/celt051
/usr/share/doc/celt051/COPYING
/usr/share/doc/celt051/README
/usr/share/doc/celt051/TODO
/usr/bin/celtdec051
/usr/bin/celtenc051
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/4cb0fb5c0b4cc682d69b7898e9fc8f99108e71
/usr/lib/.build-id/89/f65cb7738d3097cb51846093f73fae1df091a6
/usr/lib/.build-id/db
/usr/lib/.build-id/db/6a2a14ae73de19bbf82660eb852c71024ab6ad
/usr/lib64/libcelt051.so.0
/usr/lib64/libcelt051.so.0.0.0
/usr/share/doc/celt051
/usr/share/doc/celt051/COPYING
/usr/share/doc/celt051/README
/usr/share/doc/celt051/TODO
References
- [celt051 website](http://www.celt-codec.org/ http://www.celt-codec.org/)
Summary
In this tutorial we learn how to install celt051
on CentOS 8 using yum and dnf.