Garrett
Garrett

Reputation: 5630

How can I set album art for a song in a Windows App (e.g. without tag-lib#)?

I had thought that my Windows App was finished and ready for release. However, during the certification process, ACK told me Tag-Lib# uses API that the Windows Store does not support. Now I need to find some other way that the Windows Store DOES support to be able to programmatically set the album art for songs. Any ideas? (I would also be happy if anyone knew of a way to modify Tag-Lib# to comply with the Windows Store restrictions.)

Upvotes: 4

Views: 385

Answers (1)

CodeCaster
CodeCaster

Reputation: 151586

Use the Windows App Certification Kit to see which API's are called. Then try to modify the Tag-Lib# source to not use those API's, or pick the relevant code and build your own library.

Though I think, given it's used for reading and writing files, it relies on System.IO which will require quite some rewriting to Windows.Storage.

Upvotes: 1

Related Questions