How To Install ccrtp on Fedora 34
Introduction
In this tutorial we learn how to install ccrtp
on Fedora 34.
What is ccrtp
ccRTP is a generic, extensible and efficient C++ framework for developing applications based on the Real-Time Transport Protocol (RTP) from the IETF. It is based on Common C++ and provides a full RTP/RTCP stack for sending and receiving of realtime data by the use of send and receive packet queues. ccRTP supports unicast, multi-unicast and multicast, manages multiple sources, handles RTCP automatically, supports different threading models and is generic as for underlying network and transport protocols. ccrtp 2.1.2 6.fc34 x86_64 101 k ccrtp-2.1.2-6.fc34.src.rpm fedora Common C++ class framework for RTP/RTCP http GPLv2+ ccRTP is a generic, extensible and efficient C++ framework for developing applications based on the Real-Time Transport Protocol (RTP) from the IETF. It is based on Common C++ and provides a full RTP/RTCP stack for sending and receiving of realtime data by the use of send and receive packet queues. ccRTP supports unicast, multi-unicast and multicast, manages multiple sources, handles RTCP automatically, supports different threading models and is generic as for underlying network and transport protocols.
We can use yum
or dnf
to install ccrtp
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ccrtp.
Install ccrtp 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 ccrtp
using dnf
by running the following command:
sudo dnf -y install ccrtp
Install ccrtp 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 ccrtp
using yum
by running the following command:
sudo yum -y install ccrtp
How To Uninstall ccrtp on Fedora 34
To uninstall only the ccrtp
package we can use the following command:
sudo dnf remove ccrtp
ccrtp Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/29
/usr/lib/.build-id/29/a39931dfec212cf59cfc231bbaa7aeb8e91a04
/usr/lib/libccrtp.so.3
/usr/lib/libccrtp.so.3.0.1
/usr/share/doc/ccrtp
/usr/share/doc/ccrtp/README
/usr/share/licenses/ccrtp
/usr/share/licenses/ccrtp/COPYING
/usr/share/licenses/ccrtp/COPYING.addendum
/usr/lib/.build-id
/usr/lib/.build-id/42
/usr/lib/.build-id/42/f475084896beb19bd981405146294883278157
/usr/lib64/libccrtp.so.3
/usr/lib64/libccrtp.so.3.0.1
/usr/share/doc/ccrtp
/usr/share/doc/ccrtp/README
/usr/share/licenses/ccrtp
/usr/share/licenses/ccrtp/COPYING
/usr/share/licenses/ccrtp/COPYING.addendum
References
Summary
In this tutorial we learn how to install ccrtp
on Fedora 34 using yum and dnf.