company logo

MP3Header :: size - MP3 Header size

The MP3 header size includes the size used for header frames and extended header, but not the 10 bytes header size.

Return value:  Size ( int32  )

Size of the instance or property area. For string objects, the size is usually measured in units.

Implementation overview

Implementation details

  1. Get current MP3 header size
    int32 MP3Header  :: size (  )

    The function returns the header size currently reserved for the MP3 header. When the header is invalid, the function throws an exception.

  2. to list
  3. Change header size
    int32 MP3Header  :: size ( int32 iSize )

    The function changes the header size to the value passed in iSize. When the MP3 header is not valid or when the size is less than 10, the function does nothing.

    • iSize - Size

      Size of the instance or property area. For string objects, the size is usually measured in units.

  4. to list