- Description:
- id3r is a small program to read only id3v1 tags. Neither the extended tag nor id3v2 formats are supported
- Owner:
- Thomas Böhler
- Last Change:
- Clone URL:
ssh://anonymous@got.wtchr.de:61459/id3r.git
Commit Briefs
updated Makefile
changed compiler from tcc to cc since most people do not have tcc changed compiler flags to check for c99 fixed mistake of not including main .c-file for compilation
corrected checkid3v1
checkid3v1 now only checks for "TAG" instead of also checking for "TAG+" since "TAG+" is an enhanced tag placed _before_ the id3v1 tag, not replacing it.
empty buffer before writing
empty the buffer the temporary music information is stored in to prevent corrupted text. this only has to be done when less bytes are read than before since otherwise these will only be overwritten.
Branches
Tree
| Makefile | commits | blame |
| README | commits | blame |
| id3r.c | commits | blame |
| id3v1.c | commits | blame |
| id3v1.h | commits | blame |
README
id3r - simple id3v1 tag reader ============================== id3r is a small program to read id3v1 tags. Requirements ------------ To build id3r you need only the compiler, cc. Running id3r ------------ id3r takes only 1 argument, the filename of the mp3 file to show the id3v1 tag.
