welcome: please sign in
location: Diff for "FAQ"
Differences between revisions 3 and 4
Revision 3 as of 2007-01-06 23:38:25
Size: 3004
Editor: Jud
Comment: Id3->ID3, o->and, versins->versions, lanugage->language
Revision 4 as of 2012-10-08 22:15:41
Size: 3007
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 * '''Q: Where is an ID3v2 tag located in an MP3 file?'''[[BR]]  * '''Q: Where is an ID3v2 tag located in an MP3 file?'''<<BR>>
Line 6: Line 6:
 * '''Q: Where is an ID3v1 tag located in an MP3 file?'''[[BR]]  * '''Q: Where is an ID3v1 tag located in an MP3 file?'''<<BR>>
Line 8: Line 8:
 * '''Q: Are ID3 tags only available in MP3 audio format?'''[[BR]]  * '''Q: Are ID3 tags only available in MP3 audio format?'''<<BR>>
Line 12: Line 12:
  * Ogg Vorbis uses "Xiph Comments" (same as later versions of FLAC and Speex), which are embedded into the Ogg container. You can find information on these in the comment and container specs on [http://www.xiph.org www.xiph.org]   * Ogg Vorbis uses "Xiph Comments" (same as later versions of FLAC and Speex), which are embedded into the Ogg container. You can find information on these in the comment and container specs on [[http://www.xiph.org|www.xiph.org]]
Line 15: Line 15:
 * '''Q: Why does ID3v2 not make use of XML?'''[[BR]]  * '''Q: Why does ID3v2 not make use of XML?'''<<BR>>
Line 17: Line 17:
 * '''Q: Could you add the genre X to the genre list?'''[[BR]]  * '''Q: Could you add the genre X to the genre list?'''<<BR>>
Line 19: Line 19:
 * '''Q: How do I implement support for ID3v2 in C/Java/VB/my-favourite-language?'''[[BR]]
 Take a look at
the [:Implementations:implementations page] and see if there is any library available that your language can use.
 * '''Q: How do I implement support for ID3v2 in C/Java/VB/my-favourite-language?'''<<BR>>
 Take a look at the
[[Implementations|implementations page]] and see if there is any library available that your language can use.

Frequently Asked Questions

This is a "true" frequently asked questions list (as opposed to list-of-things-I-think-you-should-know named as FAQ).

  • Q: Where is an ID3v2 tag located in an MP3 file?
    It is most likely located at the beginning of the file. Look for the marker "ID3" in the first 3 bytes of the file. If it's not there, it could be at the end of the file (if the tag is ID3v2.4). Look for the marker "3DI" 10 bytes from the end of the file, or 10 bytes before the beginning of an ID3v1 tag. Finally it is possible to embed ID3v2 tags in the actual MPEG stream, on an MPEG frame boundry. Almost nobody does this.

  • Q: Where is an ID3v1 tag located in an MP3 file?
    An ID3v1 tag is in the last 128 bytes of an MP3 file. Look for the marker "TAG" 128 bytes from the end of the file.

  • Q: Are ID3 tags only available in MP3 audio format?
    Yes. ID3 tags were designed with the MP3 file format in mind. ID3v2 tags will break formats which are container-based such as Ogg Vorbis and WMA. Here is some information on specific formats:

    • ID3 tags work in MP3 and MP3pro files
    • WAV has no tags and WMA has its own tagging format, which is specified in the WMA spec, available in the MSDN (which unfortunately, basically does not allow Open Source implementations)
    • Ogg Vorbis uses "Xiph Comments" (same as later versions of FLAC and Speex), which are embedded into the Ogg container. You can find information on these in the comment and container specs on www.xiph.org

    • AAC uses yet another tagging format, which does not at present have a published spec as of 3/1/2006.
  • Q: Why does ID3v2 not make use of XML?
    The first reason is that many types of information in ID3v2 are by nature binary data, a data type that does not mix easily with XML. The second reason is parsing speed. The structure of ID3v2 makes it possible to skip over portions of the tag that are not interesting for an application. An XML-based structure would make that substantially more difficult. The third reson is that if ID3v2 should be remade in XML it would be incompatible with all existing versions of ID3v2. We think that we have had enough of incompatible changes. Finally, if one wishes to include XML-based information within in ID3v2 tag, it is perfectly possible. ID3v2 puts no limitations on the data types that can be embedded within its structure, so a frame that contains XML information is entirely feasible.

  • Q: Could you add the genre X to the genre list?
    No. The ID3v1 genre list is obsolete and inconsistent and was no good to begin with. All genres above 79 has been added by Nullsoft and is not really part of the "ID3v1 standard", if such thing existed.

  • Q: How do I implement support for ID3v2 in C/Java/VB/my-favourite-language?
    Take a look at the implementations page and see if there is any library available that your language can use.

FAQ (last edited 2013-12-02 20:28:53 by DanONeill)

Copyright © 1998-2024 by their respective owners