How To Install fapg on Fedora 34

fapg is Fast Audio Playlist Generator

Introduction

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

What is fapg

FAPG means Fast Audio Playlist Generator. It is a tool to generate list of audio files (Wav, MP3, Ogg, etc) in various formats (M3U, PLS, HTML, etc). It is very useful if you have a large amount of audio files and you want to quickly and frequently build a playlist. It is coded in C to be as fast as possible, and does not use any specific audio library (like ID3Lib). This allow you to deploy it faster and easier, and to have better performances since the less informations are loaded. In the other hand, this tool is not (yet) compatible with all the known formats.

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

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

sudo dnf -y install fapg

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

sudo yum -y install fapg

How To Uninstall fapg on Fedora 34

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

sudo dnf remove fapg

fapg Package Contents on Fedora 34

/usr/bin/fapg
/usr/lib/.build-id
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/28d84c6751a4dc1745d8446ecfb76e4a55a45e
/usr/share/doc/fapg
/usr/share/doc/fapg/AUTHORS
/usr/share/doc/fapg/ChangeLog
/usr/share/doc/fapg/README
/usr/share/licenses/fapg
/usr/share/licenses/fapg/COPYING
/usr/share/man/man1/fapg.1.gz

References

Summary

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