How To Install libtheora on Fedora 34
Introduction
In this tutorial we learn how to install libtheora
on Fedora 34.
What is libtheora
Theora is Xiph.Org’s first publicly released video codec, intended for use within the Ogg’s project’s Ogg multimedia streaming system. Theora is derived directly from On2’s VP3 codec; Currently the two are nearly identical, varying only in encapsulating decoder tables in the bitstream headers, but Theora will make use of this extra freedom in the future to improve over what is possible with VP3. libtheora 1 1.1.1 29.fc34 x86_64 163 k libtheora-1.1.1-29.fc34.src.rpm fedora Theora Video Compression Codec http BSD Theora is Xiph.Org’s first publicly released video codec, intended for use within the Ogg’s project’s Ogg multimedia streaming system. Theora is derived directly from On2’s VP3 codec; Currently the two are nearly identical, varying only in encapsulating decoder tables in the bitstream headers, but Theora will make use of this extra freedom in the future to improve over what is possible with VP3.
We can use yum
or dnf
to install libtheora
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libtheora.
Install libtheora 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 libtheora
using dnf
by running the following command:
sudo dnf -y install libtheora
Install libtheora 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 libtheora
using yum
by running the following command:
sudo yum -y install libtheora
How To Uninstall libtheora on Fedora 34
To uninstall only the libtheora
package we can use the following command:
sudo dnf remove libtheora
libtheora Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/00
/usr/lib/.build-id/00/46d64ce0c8df8773df02d8215795669246499f
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/a8b1ee19b47b2b11ee12ef37adc4f8107bd987
/usr/lib/.build-id/49
/usr/lib/.build-id/49/1bea7e91376966242d4093db418d33b48d919f
/usr/lib/libtheora.so.0
/usr/lib/libtheora.so.0.3.10
/usr/lib/libtheoradec.so.1
/usr/lib/libtheoradec.so.1.1.4
/usr/lib/libtheoraenc.so.1
/usr/lib/libtheoraenc.so.1.1.2
/usr/share/doc/libtheora
/usr/share/doc/libtheora/COPYING
/usr/share/doc/libtheora/README
/usr/lib/.build-id
/usr/lib/.build-id/48
/usr/lib/.build-id/48/6763481ada9a48d38be28b59f822afeb3ef56d
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/765f243e394b32f06bd98b15b77f1f57f6e461
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/c85bf8ae5374c792c927f38f2eaf43f175b172
/usr/lib64/libtheora.so.0
/usr/lib64/libtheora.so.0.3.10
/usr/lib64/libtheoradec.so.1
/usr/lib64/libtheoradec.so.1.1.4
/usr/lib64/libtheoraenc.so.1
/usr/lib64/libtheoraenc.so.1.1.2
/usr/share/doc/libtheora
/usr/share/doc/libtheora/COPYING
/usr/share/doc/libtheora/README
References
- [libtheora website](http://www.theora.org http://www.theora.org)
Summary
In this tutorial we learn how to install libtheora
on Fedora 34 using yum and dnf.