Difference between pages "Global Positioning System" and "ID3"
From Forensics Wiki
(Difference between pages)
Littlewiki (Talk | contribs) m (→External Links) |
m (→External Links: removed my sloppy code, changed for something better) |
||
| Line 1: | Line 1: | ||
| − | + | 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 == | == External Links == | ||
| − | + | :* [http://www.id3.org ID3 Standard Homepage] | |
| − | * [http:// | + | :* [http://id3lib.sourceforge.net/ id3lib], a widely-used open source C/C++ ID3 implementation. |
| − | + | :* [http://www.vdheide.de/projects.html Java library MP3] | |
| − | + | :* [http://search.cpan.org/dist/MP3-Info/ MP3::Info] (Perl) | |
| − | * [http:// | + | :* [http://search.cpan.org/dist/MPEG-ID3v2Tag/ MPEG::ID3v2Tag] (Perl) |
| + | :* [http://getid3.sourceforge.net/ getID3() - The PHP media file parser] | ||
Revision as of 21:41, 16 March 2007
ID3 is a standard for encoding metadata into MP3 files.
Contents |
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