How To Install rtaudio on Fedora 34

rtaudio is Real-time Audio I/O Library Real-time Audio I/O Library

Introduction

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

What is rtaudio

RtAudio is a set of C++ classes that provide a common API for realtime audio input/output across different operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives * object-oriented C++ design * simple, common API across all supported platforms * allow simultaneous multi-api support * support dynamic connection of devices * provide extensive audio device parameter control * allow audio device capability probing * automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping rtaudio 5.0.0 9.fc34 x86_64 58 k rtaudio-5.0.0-9.fc34.src.rpm fedora Real-time Audio I/O Library http MIT RtAudio is a set of C++ classes that provide a common API for realtime audio input/output across different operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives * object-oriented C++ design * simple, common API across all supported platforms * allow simultaneous multi-api support * support dynamic connection of devices * provide extensive audio device parameter control * allow audio device capability probing * automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping

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

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

sudo dnf -y install rtaudio

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

sudo yum -y install rtaudio

How To Uninstall rtaudio on Fedora 34

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

sudo dnf remove rtaudio

rtaudio Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/12
/usr/lib/.build-id/12/ba52b54cc9a33c4a839cbb0b204791e1296966
/usr/lib/librtaudio.so.6
/usr/lib/librtaudio.so.6.0.0
/usr/share/doc/rtaudio
/usr/share/doc/rtaudio/readme
/usr/share/doc/rtaudio/release.txt
/usr/share/licenses/rtaudio
/usr/share/licenses/rtaudio/license.txt
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/9b33bd4d21eea73e6c204b3a2c40fd1d852848
/usr/lib64/librtaudio.so.6
/usr/lib64/librtaudio.so.6.0.0
/usr/share/doc/rtaudio
/usr/share/doc/rtaudio/readme
/usr/share/doc/rtaudio/release.txt
/usr/share/licenses/rtaudio
/usr/share/licenses/rtaudio/license.txt

References

Summary

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