How To Install opusfile on Fedora 34
Introduction
In this tutorial we learn how to install opusfile
on Fedora 34.
What is opusfile
libopusfile provides a high-level API for decoding and seeking within .opus files. It includes * Support for all files with at least one Opus stream (including multichannel files or Ogg files where Opus is muxed with something else). * Full support, including seeking, for chained files. * A simple stereo downmixing API (allowing chained files to be decoded with a single output format, even if the channel count changes). * Support for reading from a file, memory buffer, or over HTTP(S) (including seeking). * Support for both random access and streaming data sources. opusfile 0.12 3.fc34 x86_64 54 k opusfile-0.12-3.fc34.src.rpm fedora A high-level API for decoding and seeking within .opus files https BSD libopusfile provides a high-level API for decoding and seeking within .opus files. It includes * Support for all files with at least one Opus stream (including multichannel files or Ogg files where Opus is muxed with something else). * Full support, including seeking, for chained files. * A simple stereo downmixing API (allowing chained files to be decoded with a single output format, even if the channel count changes). * Support for reading from a file, memory buffer, or over HTTP(S) (including seeking). * Support for both random access and streaming data sources.
We can use yum
or dnf
to install opusfile
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install opusfile.
Install opusfile 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 opusfile
using dnf
by running the following command:
sudo dnf -y install opusfile
Install opusfile 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 opusfile
using yum
by running the following command:
sudo yum -y install opusfile
How To Uninstall opusfile on Fedora 34
To uninstall only the opusfile
package we can use the following command:
sudo dnf remove opusfile
opusfile Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/03
/usr/lib/.build-id/03/a2bd849fbc5b496ebbd679341ff004d5f236c2
/usr/lib/.build-id/56
/usr/lib/.build-id/56/05b501c219f5a1c2d245f7f36d803dde943cd0
/usr/lib/libopusfile.so.0
/usr/lib/libopusfile.so.0.4.5
/usr/lib/libopusurl.so.0
/usr/lib/libopusurl.so.0.4.5
/usr/share/doc/opusfile
/usr/share/doc/opusfile/AUTHORS
/usr/share/licenses/opusfile
/usr/share/licenses/opusfile/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/b1
/usr/lib/.build-id/b1/b79345df335e99b3da47ca939e1dd874741200
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/3ca12a8979a4c47e17bc414402487ee22a5863
/usr/lib64/libopusfile.so.0
/usr/lib64/libopusfile.so.0.4.5
/usr/lib64/libopusurl.so.0
/usr/lib64/libopusurl.so.0.4.5
/usr/share/doc/opusfile
/usr/share/doc/opusfile/AUTHORS
/usr/share/licenses/opusfile
/usr/share/licenses/opusfile/COPYING
References
- [opusfile website](https://www.opus-codec.org/ https://www.opus-codec.org/)
Summary
In this tutorial we learn how to install opusfile
on Fedora 34 using yum and dnf.