c# - Any libraries that can parse ID3 chunks from aiff files? -


i learning aiff format , according wiki these files can contain id3 chunk. of tools have tried far not seem support aiff files. there libraries (preferably java or c#) capable of parsing/reading id3 chunks within aiff files?

taglib# this. it's .net wrapped version of taglib library (which supports reading aiff tags). it's maintained developers of banshee media player:

http://download.banshee.fm/taglib-sharp/

if want read more on taglib in general, here's taglib site: http://developer.kde.org/~wheeler/taglib.html

i took file in itunes, converted aiff, placed in root c:\ folder , renamed sample.aif. here's code used read it:

taglib.file file = taglib.file.create(@"c:\sample.aif"); string album = file.tag.album; string title = file.tag.title; 

seems work fine, taglib reports id3v2 tag.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -