How To Install taglib-sharp on CentOS 7

In this tutorial we learn how to install taglib-sharp on CentOS 7. taglib-sharp is Provides tag reading and writing for Banshee and other Mono apps

Introduction

In this tutorial we learn how to install taglib-sharp on CentOS 7.

What is taglib-sharp

TagLib# is a FREE and Open Source library for the .NET 2.0 and Mono frameworks which will let you tag your software with as much or as little detail as you like without slowing you down. It supports a large variety of movie and music formats which abstract away the work, handling all the different cases, so all you have to do is access file.Tag.Title, file.Tag.Lyrics, or my personal favorite file.Tag.Pictures. But don’t think all this abstraction is gonna keep you from tagging’s greatest gems. You can still get to a specific tag type’s features with just a few lines of code.

We can use yum or dnf to install taglib-sharp on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install taglib-sharp.

Install taglib-sharp on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install taglib-sharp using yum by running the following command:

sudo yum -y install taglib-sharp

Install taglib-sharp on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install taglib-sharp using dnf by running the following command:

sudo dnf -y install taglib-sharp

How To Uninstall taglib-sharp on CentOS 7

To uninstall only the taglib-sharp package we can use the following command:

sudo dnf remove taglib-sharp

References

Summary

In this tutorial we learn how to install taglib-sharp on CentOS 7 using yum and dnf.