How To Install ogmtools on Fedora 34

ogmtools is Tools for Ogg media streams

Introduction

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

What is ogmtools

These tools allow information about (ogminfo) or extraction from (ogmdemux) or creation of (ogmmerge) OGG media streams. Note that OGM is used for “OGG media streams”.

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

Install ogmtools 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 ogmtools using dnf by running the following command:

sudo dnf -y install ogmtools

Install ogmtools 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 ogmtools using yum by running the following command:

sudo yum -y install ogmtools

How To Uninstall ogmtools on Fedora 34

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

sudo dnf remove ogmtools

ogmtools Package Contents on Fedora 34

/usr/bin/dvdxchap
/usr/bin/ogmcat
/usr/bin/ogmdemux
/usr/bin/ogminfo
/usr/bin/ogmmerge
/usr/bin/ogmsplit
/usr/lib/.build-id
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/f26a63a1050b881b9ecae85e533a805da63171
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/c71e8cf3ae443054e29aec818d5892d1c1d3e8
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/94638d1409a809e9f7e05e8394922849c1dfaf
/usr/lib/.build-id/ba
/usr/lib/.build-id/ba/5327b1c6b6c87a5f49962e70290f5a02ca0e65
/usr/lib/.build-id/c7
/usr/lib/.build-id/c7/51eb6917f0dbb44bfaddd8e615b488c6191158
/usr/lib/.build-id/de
/usr/lib/.build-id/de/028d7c56f897af57d6542cad05390dd8c888fe
/usr/share/doc/ogmtools
/usr/share/doc/ogmtools/COPYING
/usr/share/doc/ogmtools/ChangeLog
/usr/share/doc/ogmtools/README
/usr/share/doc/ogmtools/TODO
/usr/share/man/man1/dvdxchap.1.gz
/usr/share/man/man1/ogmcat.1.gz
/usr/share/man/man1/ogmdemux.1.gz
/usr/share/man/man1/ogminfo.1.gz
/usr/share/man/man1/ogmmerge.1.gz
/usr/share/man/man1/ogmsplit.1.gz

References

Summary

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