ID3V2.3 library 1.1-3 review
DownloadID3V2.3 library is a library written in C to provide read and write access to ID3 tags. ID3V2.3 library is designed to be very eas
|
|
ID3V2.3 library is a library written in C to provide read and write access to ID3 tags.
ID3V2.3 library is designed to be very easy to use, and is meant to be compiled directly into your project. You can only access the most commonly used tag fields.
The source code is easy to read and well documented.
Example:
#include "genre.h"
#include "lib_id3v1.h"
main()
{
id3Tag tag;
strcpy (tag.artist, "Myartist");
strcpy (tag.album, "Myalbum");
strcpy (tag.title, "Mysong");
strcpy (tag.track, "12");
strcpy (tag.year, "2002");
strcpy (tag.comment, "Mycomment");
strcpy (tag.genre, "Mygenre");
set_id3v2tag(&tag, "/home/sam/myfile.mp3");
}
If you need more info, look into the header file, it's really simple.
ID3V2.3 library 1.1-3 search tags