Skip to content

Latest commit

 

History

History
69 lines (38 loc) · 1.32 KB

IRiffChunk.md

File metadata and controls

69 lines (38 loc) · 1.32 KB

node-taglib-sharp / Exports / IRiffChunk

Interface: IRiffChunk

Interface for chunks that appear in a RIFF file.

Implemented by

Table of contents

Properties

Methods

Properties

chunkStart

chunkStart: number

Offset into the file where the chunk begins. This is undefined if the object was constructed directly from data.


fourcc

fourcc: string

FOURCC code for the chunk.


originalDataSize

originalDataSize: number

Size of just the data contained within the current instance. Does not include the header or padding byte. This value does not update if contents of the chunk changes.


originalTotalSize

originalTotalSize: number

Original size of the chunk, including header and padding byte. This value does not update if the contents of the chunk changes.

Methods

render

render(): ByteVector

Renders the chunk, including the header and padding byte.

Returns

ByteVector