How To Install oggvideotools on Fedora 34

oggvideotools is Toolbox for manipulating Ogg video files

Introduction

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

What is oggvideotools

A toolbox for manipulating Ogg video files, which usually consist of a video stream (Theora) and an audio stream (Vorbis). It includes a number of handy command line tools for manipulating these video files, such as for splitting the different streams.

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

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

sudo dnf -y install oggvideotools

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

sudo yum -y install oggvideotools

How To Uninstall oggvideotools on Fedora 34

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

sudo dnf remove oggvideotools

oggvideotools Package Contents on Fedora 34

/usr/bin/mkSlideshow
/usr/bin/mkThumbs
/usr/bin/oggCat
/usr/bin/oggCut
/usr/bin/oggDump
/usr/bin/oggJoin
/usr/bin/oggLength
/usr/bin/oggSilence
/usr/bin/oggSlideshow
/usr/bin/oggSplit
/usr/bin/oggThumb
/usr/bin/oggTranscode
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/c00b1d7223fc320123a003645aa3200c1d5d1f
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/b3137285c6aa72e7729168e002fa9120b05534
/usr/lib/.build-id/2b
/usr/lib/.build-id/2b/11c738519f0b69a9b52f319d7e180092357d42
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/13786b4df537aca156c362bb61264478377abd
/usr/lib/.build-id/5a
/usr/lib/.build-id/5a/d696488d0499e91724eebd51c0b6b74779cda3
/usr/lib/.build-id/ab
/usr/lib/.build-id/ab/c87a9ec36f659fd396d0a08f2123c2edc9df93
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/e223e31752e1b0f41f482c6b0fc104e9ffcfa9
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/e99781ce87264083b52d030f03770715f73ec0
/usr/lib/.build-id/f0
/usr/lib/.build-id/f0/4ee5236a6d13732ca3e31a8e0d620b4510c96e
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/b8967bf9aa01af75345c32b10d2d500f1e9516
/usr/share/doc/oggvideotools
/usr/share/doc/oggvideotools/ChangeLog
/usr/share/doc/oggvideotools/DocuOggVideoTools.pdf
/usr/share/doc/oggvideotools/README
/usr/share/licenses/oggvideotools
/usr/share/licenses/oggvideotools/COPYING
/usr/share/man/man1/mkThumbs.1.gz
/usr/share/man/man1/oggCat.1.gz
/usr/share/man/man1/oggCut.1.gz
/usr/share/man/man1/oggDump.1.gz
/usr/share/man/man1/oggJoin.1.gz
/usr/share/man/man1/oggLength.1.gz
/usr/share/man/man1/oggSilence.1.gz
/usr/share/man/man1/oggSlideshow.1.gz
/usr/share/man/man1/oggSplit.1.gz
/usr/share/man/man1/oggThumb.1.gz
/usr/share/man/man1/oggTranscode.1.gz

References

Summary

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