How can I parse an MP3 file to get its all attributes? Also how to edit and the attributes of the MP3 file? Is there any class available in .NET v4.0?
Asked
Active
Viewed 1,386 times
2
-
have you started using .net 4.0? – Zaki Sep 29 '09 at 14:48
-
Yes, It is with Visual Studio 2010 Beta. – Sauron Sep 29 '09 at 16:37
-
Did any of the proposed solutions work? – Anders Rune Jensen Sep 30 '09 at 12:42
2 Answers
2
Those attributes are called ID3 tags. I do not think it is the scope of the .NET framework to provide reading them.
Here is some code from SourceForge.

Daniel A. White
- 187,200
- 47
- 362
- 445
2
You might have a look at the taglib library for .NET. It can do both reading and writing of id3 tags among other things.

Anders Rune Jensen
- 3,758
- 2
- 42
- 53