覆盖 Windows Phone 7 中音频文件的元数据
我希望为我的音乐播放器提供修复元数据功能,但据我所知,没有库可以做到这一点。不过我发现一些 C# 应用程序可以完成此任务。
我需要一些建议,可能还需要一个好的资源来开始这个项目。任何帮助将不胜感激。
谢谢。
编辑:我也发现了这个,这与我想做的非常相似,但是来源太少了。 http://wmpoweruser.com/finally-mp3-tag-适用于 Windows 移动设备的编辑器可用/
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.
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/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前,Windows Phone 平台不提供修改设备上歌曲的歌曲数据的方法。无法从受限的 Silverlight 应用程序访问文件系统,并且当前的 XNA Media 类 仅提供对歌曲数据的只读访问。
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.
您需要通过isolatedStorage直接访问文件,因为没有内置支持更改id3v2标签。
然后你可以使用这些库:
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: