3

I would love to have a fix metadata function for my music player, but as I know there is no library that could do such. However I found that some C# application could accomplish this.

Example

I need some advice and probably a good sources to get start this projects. Any help will be appreciated.

Thanks.

Edit: I also found this, this is very similar to what I want to do, but there is so few sources. http://wmpoweruser.com/finally-mp3-tag-editor-for-windows-mobile-available/

Nghia Nguyen
  • 2,585
  • 4
  • 25
  • 38

2 Answers2

2

You need direct access to the file via an IsolatedStorage because there is no built-in support to change id3v2 tags.

Then you can use these libraries:

  1. http://sourceforge.net/projects/audiogenie/
  2. http://github.com/mono/taglib-sharp
Skomski
  • 4,827
  • 21
  • 30
  • yes, there are a lot library to work in windows form platform. But the problem is I can't get direct access to a song like a file in my PC. Except that Song's in IsoloateStorage or such. – Nghia Nguyen Aug 09 '11 at 00:57
2

Currently, the Windows Phone Platform doesn't provide a way to modify song data for songs on the device. There's no way to access the file system from a restricted Silverlight application, and the current XNA Media classes only provide read-only access to song data.

Yousef
  • 876
  • 6
  • 13