How To Install srt on Fedora 34

srt is Secure Reliable Transport protocol tools

Introduction

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

What is srt

Secure Reliable Transport (SRT) is an open source transport technology that optimizes streaming performance across unpredictable networks, such as the Internet.

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

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

sudo dnf -y install srt

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

sudo yum -y install srt

How To Uninstall srt on Fedora 34

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

sudo dnf remove srt

srt Package Contents on Fedora 34

/usr/bin/srt-ffplay
/usr/bin/srt-file-transmit
/usr/bin/srt-live-transmit
/usr/bin/srt-tunnel
/usr/bin/test-srt
/usr/lib/.build-id
/usr/lib/.build-id/2b
/usr/lib/.build-id/2b/ab85d7afd160f4512eb82f2c11b5571063c981
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/437e4d6896833923e2f621dcc09778f337d3eb
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/069ca034a8489fcdea644f71c0f83e7f43c8d0
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/d89cd6f06fb4dbd48fc84073afe53dfe8bdf16
/usr/share/doc/srt
/usr/share/doc/srt/README.md
/usr/share/doc/srt/docs
/usr/share/doc/srt/docs/API-functions.md
/usr/share/doc/srt/docs/API.md
/usr/share/doc/srt/docs/APISocketOptions.md
/usr/share/doc/srt/docs/AccessControl.md
/usr/share/doc/srt/docs/Android
/usr/share/doc/srt/docs/Android/Compiling.md
/usr/share/doc/srt/docs/Android/mkall
/usr/share/doc/srt/docs/Android/mksrt
/usr/share/doc/srt/docs/Android/mkssl
/usr/share/doc/srt/docs/Android/packjni
/usr/share/doc/srt/docs/Android/prepare_build
/usr/share/doc/srt/docs/BuildOptions.md
/usr/share/doc/srt/docs/DevelopersGuide.md
/usr/share/doc/srt/docs/SRT-Multiplex.md
/usr/share/doc/srt/docs/bonding-intro.md
/usr/share/doc/srt/docs/build-win.md
/usr/share/doc/srt/docs/build_iOS.md
/usr/share/doc/srt/docs/encryption.md
/usr/share/doc/srt/docs/gstreamer.md
/usr/share/doc/srt/docs/handshake.md
/usr/share/doc/srt/docs/images
/usr/share/doc/srt/docs/images/SRT_History_Good_Signal.png
/usr/share/doc/srt/docs/images/SRT_Transmission_Bad_Signal.png
/usr/share/doc/srt/docs/images/block-aligned-5rx10c.png
/usr/share/doc/srt/docs/images/block-aligned.png
/usr/share/doc/srt/docs/images/non-block-aligned-5rx10c-deleted-packets.png
/usr/share/doc/srt/docs/images/non-block-aligned-5rx10c.png
/usr/share/doc/srt/docs/images/non-block-aligned.png
/usr/share/doc/srt/docs/images/packet-filter-mechanism.png
/usr/share/doc/srt/docs/images/rebuild-missing-sequence.png
/usr/share/doc/srt/docs/images/srt-encryption-1.png
/usr/share/doc/srt/docs/images/srt-encryption-2.png
/usr/share/doc/srt/docs/images/staircase-pattern-5rx10c.png
/usr/share/doc/srt/docs/live-streaming.md
/usr/share/doc/srt/docs/packet-filtering-and-fec.md
/usr/share/doc/srt/docs/reporting.md
/usr/share/doc/srt/docs/socket-groups.md
/usr/share/doc/srt/docs/srt-live-transmit.md
/usr/share/doc/srt/docs/srt-tunnel.md
/usr/share/doc/srt/docs/statistics.md
/usr/share/doc/srt/docs/why-srt-was-created.md
/usr/share/licenses/srt
/usr/share/licenses/srt/LICENSE

References

Summary

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