TagLibUWP
No description available
Install / Use
/learn @Aftnet/TagLibUWPREADME
TagLibUWP
Port of TagLib to UWP WinRT component. Uses WinRT's new file IO API to work with the sandboxed app model. Right now, only basic tag data is exposed (Album, Artist, Genre, Title, Track number, Year).
TagLibUWP is distributed under the Mozilla Public License
Usage
IStorageFile file = GetFromWherever();
//Read tag from file
//IO operations are done synchronously, never use TagManager from the UI thread.
var fileInfo = await Task.Run(() => TagManager.ReadFile(file));
var tag = fileInfo.Tag;
string Album = tag.Album; //And so forth for other tag data
//Modify and save tags
tag.Album = "NewAlbum";
await Task.Run(() => TagManager.WriteFile(file, tag));
Related Skills
node-connect
336.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
336.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.0kCommit, push, and open a PR
