company logo

MP3Frame :: id - MP3 frame identifier

(copied from http://id3.org/id3v2.4.0-structure)

The frame ID is made out of the characters capital A-Z and 0-9. Identifiers beginning with "X", "Y" and "Z" are for experimental frames and free for everyone to use, without the need to set the experimental bit in the tag header. Bear in mind that someone else might have used the same identifier as you. All other identifiers are either used or reserved for future use.

When the frame is invalid, the function throws an exception.

Return value:  Name ( odaba::String & )

Implementation overview

Implementation details

  1. Get frame identifier
    odaba::String MP3Frame  :: id (  )

    The function returns the frame identifier. When no MP3Frame reference object is assigned or when the assigned object is invalid, the function throws an exception.

  2. to list
  3. Set frame identifier
    odaba::String MP3Frame  :: id ( odaba::String &sName )

    The frame identifier passed must contain exactly four characters.

    When no MP3Frame reference object is assigned or when the assigned object is invalid, the function throws an exception.

    • sName - Name
  4. to list