node-taglib-sharp / Exports / Mpeg4BoxHeader
Provides support for reading and writing headers for ISO/IEC 14496-12 boxes.
• get
boxType(): ByteVector
Gets the type of box represented by the current instance.
• get
dataSize(): number
Gets the size of the data in the box described by the current instance.
number
• get
extendedType(): ByteVector
Gets the extended type of the box represented by the current instance.
• get
headerSize(): number
Gets the size of the header represented by the current instance.
number
• get
position(): number
Gets the position box represented by the current instance in the file it comes from.
number
• get
totalBoxSize(): number
Gets the total size of the box described by the current instance.
number
▸ render(): ByteVector
Renders the header represented by the current instance.
ByteVector Rendered version of the current instance.
▸ Static
fromFileAndPosition(file
, position
): Mpeg4BoxHeader
Constructs and initializes a new instance of Mpeg4BoxHeader by reading it from a specified seek position in a specified file.
Name | Type | Description |
---|---|---|
file |
File |
A File object to read the new instance from. |
position |
number |
A value specifying the seek position in File at which to start reading. |
▸ Static
fromType(type
, extendedType?
): Mpeg4BoxHeader
Constructs and initializes a new instance of Mpeg4BoxHeader with a specified box type and optionally extended type.
Name | Type | Description |
---|---|---|
type |
ByteVector |
A ByteVector object containing the four byte box type. |
extendedType? |
ByteVector |
A ByteVector object containing the four byte box type. |