I have a collection of mp3, wma's etc that may or may not have the correct song information.

Is there a service or an API that I can use in .NET to find the correct song title / artist for each file?

link|improve this question

An API based on the Id3 tags, file hashes, or what? – NullUserException Sep 3 '10 at 22:58
feedback

3 Answers

up vote 4 down vote accepted

I know of Last.fm Fingerprint API. That should help you.

You could call their client app from within a C# app to automate the whole process of going through your media library and storing the returned results. You can even change your mp3 metadata on the fly.

More links to the stack:

25 Music APIs

link|improve this answer
feedback

Windows Media Player (WMP) is pretty good at downloading album art and titles and such when you rip a CD, but it's far from perfect. If such an API existed in any location, let alone the highly public and well-used .NET platform, WMP would have a better track record.

Therefore it is logical to conclude that the answer is quite simply, "No."

I doubt such an API exists in any form, but if it might, it would likely be a web service.

link|improve this answer
feedback

freedb.org has what you need. I used it some years ago and it worked out great.

Download the file 'freedb howto v1.07' to get the details of how to implement this into your program.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.