node-taglib-sharp / Exports / AsfMetadataLibraryObject
This class provides a representation of an ASF metadata library object which can be read from and written to disk.
-
↳
AsfMetadataLibraryObject
- addRecord
- getRecords
- initializeFromFile
- initializeFromGuid
- removeRecords
- render
- renderInternal
- setRecords
- fromEmpty
- fromFile
• get
guid(): UuidWrapper
Gets the GUID that identifies the current instance.
BaseObject.guid
• get
isEmpty(): boolean
Gets whether the current instance contains any records.
boolean
true
if the current instance does not contain any records, false
otherwise.
• get
objectType(): AsfObjectType
Gets the type of the object for easy comparison.
BaseObject.objectType
• get
originalSize(): number
Gets the original size of the current instance.
number
BaseObject.originalSize
• get
records(): AsfMetadataDescriptor
[]
Gets all records stored in the current instance.
▸ addRecord(record
): void
Adds a record to the current instance.
Name | Type | Description |
---|---|---|
record |
AsfMetadataDescriptor |
Record to add to the current instance |
void
▸ getRecords(languageListIndex
, streamNumber
, ...names
): AsfMetadataDescriptor
[]
Gets all records with a given language, stream, and any of a collection of names from the current instance.
Name | Type | Description |
---|---|---|
languageListIndex |
number |
Index of the desired language in the language list |
streamNumber |
number |
Index of the stream in the file the desired records applies to |
...names |
string [] |
List of names of the records to return |
▸ Protected
initializeFromFile(file
, position
): void
Initializes a new instance by reading the contents from a specified position in a specified file.
Name | Type | Description |
---|---|---|
file |
File |
File which contains the details of the new instance to create |
position |
number |
Position in file where the object begins |
void
AsfBaseObject.initializeFromFile
▸ Protected
initializeFromGuid(guid
): void
Initializes a new instance with a specified GUID.
Name | Type | Description |
---|---|---|
guid |
UuidWrapper |
GUID to use for the new instance. |
void
AsfBaseObject.initializeFromGuid
▸ removeRecords(languageListIndex
, streamNumber
, name
): void
Removes all records with a given language, stream, and name from the current instance.
Name | Type | Description |
---|---|---|
languageListIndex |
number |
Language list index of the records to be removed |
streamNumber |
number |
Index of the stream in the file the desired records to remove |
name |
string |
Name of the records to remove |
void
▸ render(): ByteVector
Renders the current instance as a raw ASF object.
▸ Protected
renderInternal(data
): ByteVector
Renders the current instance as a raw ASF object containing the specified data.
Remarks
Child classes implementing () should render their contents and then send the data through this method to produce the final output.
Name | Type | Description |
---|---|---|
data |
ByteVector |
Data to store in the rendered version of the current instance. |
▸ setRecords(languageListIndex
, streamNumber
, name
, ...records
): void
Sets a collection of records for a given language, language, ane name, removing the existing records that match.
Remarks
All added entries in records
should match the provided languageListIndex
,
streamNumber
, and name
, but this will not be verified by the method. The records
will be added with their own values and not those provided in the method arguments. The
arguments are only used for removing existing values and determining where to position
the new records.
Name | Type | Description |
---|---|---|
languageListIndex |
number |
Index of the desired language in the language list |
streamNumber |
number |
Index of the stream in the file the desired records applies to |
name |
string |
Names of the records to remove |
...records |
AsfMetadataDescriptor [] |
Records to insert into the current instance |
void
▸ Static
fromEmpty(): AsfMetadataLibraryObject
Constructs and initializes a new instance that does not contain any records.
▸ Static
fromFile(file
, position
): AsfMetadataLibraryObject
Constructs and initializes a new instance by reading the object from a file.
Name | Type | Description |
---|---|---|
file |
File |
File to read the instance from |
position |
number |
Offset into the file where the object begins |