id3v2
Version:
Reads ID3v2 metadata
32 lines (31 loc) • 743 B
TypeScript
/// <reference types="node" />
export declare class ID3v2 {
private readonly flags?;
private readonly frames;
constructor(path: string);
private getFrameData;
readonly ufid: {
ownerIdentifier: string;
identifier: Buffer;
};
readonly genre: string;
readonly track: string;
readonly album: string;
readonly title: string;
readonly year: string;
readonly artist: string;
readonly popularimeter: {
email: string;
rating: number;
counter?: number;
};
readonly length: string;
readonly set: string;
readonly text: {
description: string;
value: string;
} | {
description: string;
value: string;
}[];
}