5

What is the current status of TagLib# (TagLib sharp)?

The official homepage www.taglib-sharp.com (link removed due to the NSFW nature of the new site that's parked at that address. -BtL) doesn't exist anymore!

I've found the project on ohloh where the old homepage is still linked. Also the download link points to the old site.

BUT the ohloh development pages are linked to a mono-project SVN repository, which seems to be under active development (last commit date: 2009/02/20, current version number: 2.0.3.2).

Furthermore, on the developer.novell.com wiki the same SVN repo is linked.

So, is there any up-to-date homepage or, at least, any up-to-date binary+documentation releases?

Jason Plank
  • 2,336
  • 5
  • 31
  • 40
ulrichb
  • 19,610
  • 8
  • 73
  • 87
  • 1
    In a recent post on his long-defunct blog, Brian Nickel, the original author, mentions the places that the Banshee team is supporting the library: Downloads (even Windows still!): http://download.banshee-project.org/taglib-sharp/ Bug Reporting: https://bugzilla.gnome.org/browse.cgi?product=taglib-sharp Source Code Repository: http://anonsvn.mono-project.com/viewvc/trunk/taglib-sharp/ – Tao Jun 20 '10 at 21:10

3 Answers3

5

The page at Novell (http://www.novell.com/products/linuxpackages/opensuse11.1/taglib-sharp.html) is no longer updated.

The source code is now hosted at https://github.com/mono/taglib-sharp and the best way to install and use the latest version is using NuGet. Open the Package Manager Console in Visual Studio and type:

PM> Install-Package taglib

This question is also answered at TagLib# Windows distribution? Or another good ID3 reader?

Community
  • 1
  • 1
Jacob Hamacher
  • 574
  • 7
  • 13
  • There was a new binary release (v2.2.0, july 2019) on : https://www.nuget.org/packages/TagLibSharp – Bruno Jun 15 '20 at 12:57
2

Looks like it moved here: http://www.novell.com/products/linuxpackages/opensuse11.1/taglib-sharp.html

Chris Frederick
  • 5,482
  • 3
  • 36
  • 44
Hewins
  • 111
  • 1
  • 7
  • 2
    To download, click the link to the homepage(http://download.banshee-project.org/taglib-sharp/), then the link to the latest version (2.0.3.7), and then there's taglib-sharp-2.0.3.7-windows.zip in there. – Matt Frear Jan 24 '11 at 14:48
  • The latest version is 2.1.0.0 since 2012-Jul-03. It seems that actually no one really maintain it? – PeterCo Nov 09 '16 at 09:01
0

As everyone seems to focus on the release versions either from NuGet or Novell, I'd simply suggest you to download the whole project from GitHub to get the latest version.

  1. Open up the solution
  2. Build -> BuildSolution
  3. Use the class library in your project

I hope not everyone is still loading the old binaries, there is a wider support of container formats (opus \o/) in newer versions, as well as fixes and one or another additional supported tag.

Malte N.
  • 1
  • 2