Load extended ID3 data from current stream. Only in version 2.00 and above. (UNICODE version)
function LoadID3ExW(out Info: TID3InfoExW; fDecodeEmbededPicture: Boolean): Boolean;
Parameters |
Description |
out Info: TID3InfoExW |
Reference to TID3InfoExW receiving extended ID3 data. |
fDecodeEmbededPicture: Boolean |
Set to true to decode attached picture. See Remarks section. |
Return Values |
Description |
True |
All OK. |
False |
Error. To get error message read here. |
Check supported formats for info tag support. Some formats can support some sort of "Info tags", but not all.
libZPlay library implements "ID3 tag" interface to different info tags (VORBIS comment, RIFF Info, ...). So, you can retrieve ID3 informations from different streams (mp3, ogg, flac, wav) because library will convert "format specific tag" to ID3 tag info.
Note: |
This function can retrieve attached picture from info tag. If you need to draw this picture on screen, set fDecodeEmbededPicture parameter to true to decode attached picture into Bitmap class. See TID3PictureW. |
Note: If you juste need ID3 data from file, use LoadFileID3ExW.
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |