THEOplayer > ID3AttachedPicture
Inherits from ID3BaseFrame. See parent page for inherited properties and methods.
Represents an attached picture ID3 frame.
Signature:
export interface ID3AttachedPicture extends ID3BaseFrame
Property |
Type |
Description |
---|---|---|
|
The data of the attached picture. |
|
|
The description of the attached picture. |
|
|
The identifier of the frame. |
|
|
The mime type of the attached picture. |
|
|
The type of the attached picture. |
The data of the attached picture.
Signature:
data: string | ArrayBuffer;
- If ID3AttachedPicture.mimeType is '-->'
the data is an URL for a picture resource as a string. Otherwise the data is an ArrayBuffer.
The description of the attached picture.
Signature:
description: string;
The identifier of the frame.
Signature:
id: 'APIC' | 'PIC';
The mime type of the attached picture.
Signature:
mimeType: string;
The type of the attached picture.
Signature:
pictureType: number;
- See section 4.14 of id3v2.4.0-frames - ID3.org.