How To Install aubio on Fedora 34
Introduction
In this tutorial we learn how to install aubio
on Fedora 34.
What is aubio
aubio is a tool and library for audio labeling. Its features include segmenting a sound file before each of its attacks, performing pitch detection, tapping the beat and producing midi streams from live audio. The name aubio comes from ‘audio’ with a typo transcription errors are likely to be found in the results too. The aim of this project is to provide these automatic labeling features to other audio software. Functions can be used offline in sound editors and software samplers, or online in audio effects and virtual instruments. This package contains the aubio tool.
We can use yum
or dnf
to install aubio
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install aubio.
Install aubio 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 aubio
using dnf
by running the following command:
sudo dnf -y install aubio
Install aubio 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 aubio
using yum
by running the following command:
sudo yum -y install aubio
How To Uninstall aubio on Fedora 34
To uninstall only the aubio
package we can use the following command:
sudo dnf remove aubio
aubio Package Contents on Fedora 34
/usr/bin/aubio
/usr/bin/aubiocut
/usr/bin/aubiomfcc
/usr/bin/aubionotes
/usr/bin/aubioonset
/usr/bin/aubiopitch
/usr/bin/aubioquiet
/usr/bin/aubiotrack
/usr/lib/.build-id
/usr/lib/.build-id/08
/usr/lib/.build-id/08/4012d63ddab09b70dd5e310f369a7973d3855a
/usr/lib/.build-id/09
/usr/lib/.build-id/09/ad24e62853ad54f5129c3a23d1a7883f4afb72
/usr/lib/.build-id/13
/usr/lib/.build-id/13/a7a00b96c1ca8797825e1d9fcc4a1ed4111f81
/usr/lib/.build-id/13/d455cce90a9ca68424b4db632791024bcb6f91
/usr/lib/.build-id/b5
/usr/lib/.build-id/b5/6e90e1bed4560497eaa40cb5e6fcc0492705a6
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/a4d5dd24e611e96e296c217abfa4bad161b277
/usr/share/doc/aubio
/usr/share/doc/aubio/AUTHORS
/usr/share/doc/aubio/ChangeLog
/usr/share/doc/aubio/README.md
/usr/share/licenses/aubio
/usr/share/licenses/aubio/COPYING
/usr/share/man/man1/aubio.1.gz
/usr/share/man/man1/aubiocut.1.gz
/usr/share/man/man1/aubiomfcc.1.gz
/usr/share/man/man1/aubionotes.1.gz
/usr/share/man/man1/aubioonset.1.gz
/usr/share/man/man1/aubiopitch.1.gz
/usr/share/man/man1/aubioquiet.1.gz
/usr/share/man/man1/aubiotrack.1.gz
References
Summary
In this tutorial we learn how to install aubio
on Fedora 34 using yum and dnf.