How To Install taglib on Fedora 34
Introduction
In this tutorial we learn how to install taglib
on Fedora 34.
What is taglib
TagLib is a library for reading and editing the meta-data of several popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 tags and Vorbis comments in FLAC, MPC, Speex, WavPack, TrueAudio files, as well as APE Tags. taglib 1.12 4.fc34 x86_64 356 k taglib-1.12-4.fc34.src.rpm fedora Audio Meta-Data Library http LGPLv2 or MPLv1.1 TagLib is a library for reading and editing the meta-data of several popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 tags and Vorbis comments in FLAC, MPC, Speex, WavPack, TrueAudio files, as well as APE Tags.
We can use yum
or dnf
to install taglib
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install taglib.
Install taglib 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 taglib
using dnf
by running the following command:
sudo dnf -y install taglib
Install taglib 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 taglib
using yum
by running the following command:
sudo yum -y install taglib
How To Uninstall taglib on Fedora 34
To uninstall only the taglib
package we can use the following command:
sudo dnf remove taglib
taglib Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/13
/usr/lib/.build-id/13/6f4564c4db8582aac48cbc0b6fcc734ed08bde
/usr/lib/.build-id/87
/usr/lib/.build-id/87/dc8b0e2b40a5fe3b78d742a547802e84591639
/usr/lib/libtag.so.1
/usr/lib/libtag.so.1.18.0
/usr/lib/libtag_c.so.0
/usr/lib/libtag_c.so.0.0.0
/usr/share/doc/taglib
/usr/share/doc/taglib/AUTHORS
/usr/share/doc/taglib/NEWS
/usr/share/licenses/taglib
/usr/share/licenses/taglib/COPYING.LGPL
/usr/share/licenses/taglib/COPYING.MPL
/usr/lib/.build-id
/usr/lib/.build-id/24
/usr/lib/.build-id/24/8ad572a075359a97aad540f1c3f87534800948
/usr/lib/.build-id/35
/usr/lib/.build-id/35/5a0f813fb75cb613dc448ca1cf59afe94a6139
/usr/lib64/libtag.so.1
/usr/lib64/libtag.so.1.18.0
/usr/lib64/libtag_c.so.0
/usr/lib64/libtag_c.so.0.0.0
/usr/share/doc/taglib
/usr/share/doc/taglib/AUTHORS
/usr/share/doc/taglib/NEWS
/usr/share/licenses/taglib
/usr/share/licenses/taglib/COPYING.LGPL
/usr/share/licenses/taglib/COPYING.MPL
References
- [taglib website](http://taglib.github.io/ http://taglib.github.io/)
Summary
In this tutorial we learn how to install taglib
on Fedora 34 using yum and dnf.