How To Install dvdauthor on Fedora 34

dvdauthor is Command line DVD authoring tool

Introduction

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

What is dvdauthor

DVDAuthor is a set of tools to help you author the file and directory structure of a DVD-Video disc, including programmatic commands for implementing interactive behavior. It is driven by command lines and XML control files, though there are other programs that provide GUI-based front ends if you prefer.

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

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

sudo dnf -y install dvdauthor

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

sudo yum -y install dvdauthor

How To Uninstall dvdauthor on Fedora 34

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

sudo dnf remove dvdauthor

dvdauthor Package Contents on Fedora 34

/usr/bin/dvdauthor
/usr/bin/dvddirdel
/usr/bin/dvdunauthor
/usr/bin/mpeg2desc
/usr/bin/spumux
/usr/bin/spuunmux
/usr/lib/.build-id
/usr/lib/.build-id/1d
/usr/lib/.build-id/1d/9d07f482f47d59fd9ec05cbe6a04c2cea786f0
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/d6549dc287448f0aa7e0d711f3616dfadc102b
/usr/lib/.build-id/79
/usr/lib/.build-id/79/9ec2c8f977954ae7402311734e9cb3728e4d01
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/dfa6a72f355aaaa61e893b144d48f2b0f17505
/usr/lib/.build-id/c3
/usr/lib/.build-id/c3/170fbd0be2bacdd6c66e2b670140179f3fd1d2
/usr/share/doc/dvdauthor
/usr/share/doc/dvdauthor/AUTHORS
/usr/share/doc/dvdauthor/ChangeLog
/usr/share/doc/dvdauthor/README
/usr/share/doc/dvdauthor/TODO
/usr/share/dvdauthor
/usr/share/dvdauthor/common.xsd
/usr/share/dvdauthor/dvdauthor.xsd
/usr/share/dvdauthor/spumux.xsd
/usr/share/licenses/dvdauthor
/usr/share/licenses/dvdauthor/COPYING
/usr/share/man/man1/dvdauthor.1.gz
/usr/share/man/man1/dvddirdel.1.gz
/usr/share/man/man1/dvdunauthor.1.gz
/usr/share/man/man1/mpeg2desc.1.gz
/usr/share/man/man1/spumux.1.gz
/usr/share/man/man1/spuunmux.1.gz
/usr/share/man/man7/video_format.7.gz

References

Summary

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