mpg123_id3v1

Data structure for ID3v1 tags (the last 128 bytes of a file). * Don't take anything for granted (like string termination)! * Also note the change ID3v1.1 did: comment[28] = 0; comment[29] = track_number * It is your task to support ID3v1 only or ID3v1.1 ...

Members

Variables

album
char[30] album;

< Artist string.

artist
char[30] artist;

< Title string.

comment
char[30] comment;

< Year string.

genre
ubyte genre;

< Comment string.

title
char[30] title;

< Always the string "TAG", the classic intro.

year
char[4] year;

< Album string.

Meta