Forensicswiki.org has moved to this site, forensicswiki.xyz. For information, please join the Google Group forensicswiki-reborn
Difference between revisions of "ID3"
imported>User24 (→External Links: pasted some links from metadata) |
imported>User24 m (→External Links: removed my sloppy code, changed for something better) |
||
Line 16: | Line 16: | ||
:* [http://search.cpan.org/dist/MP3-Info/ MP3::Info] (Perl) | :* [http://search.cpan.org/dist/MP3-Info/ MP3::Info] (Perl) | ||
:* [http://search.cpan.org/dist/MPEG-ID3v2Tag/ MPEG::ID3v2Tag] (Perl) | :* [http://search.cpan.org/dist/MPEG-ID3v2Tag/ MPEG::ID3v2Tag] (Perl) | ||
:* [http:// | :* [http://getid3.sourceforge.net/ getID3() - The PHP media file parser] |
Revision as of 19:41, 16 March 2007
ID3 is a standard for encoding metadata into MP3 files.
Header
Version 1
ID3 version provides minimal information. The first 128 bytes of the file contain title, artist, album, year, genre and comment information. The header begins with the string "TAG".
Version 2.xx
ID3 Version 2+ is much more complicated than v1, and may contain a wide variety of information, including attached pictures, lyrics, encoding software, file owner and payment data. In practice, the most commonly used fields however tend only to list such information as album, artist and track details.
The header may be placed anywhere in the file, being preceded by the string "ID3".
External Links
- ID3 Standard Homepage
- id3lib, a widely-used open source C/C++ ID3 implementation.
- Java library MP3
- MP3::Info (Perl)
- MPEG::ID3v2Tag (Perl)
- getID3() - The PHP media file parser