UNPKG

music-metadata

Version:

Music metadata parser for Node.js, supporting virtual any audio and tag format.

21 lines (20 loc) 532 B
import type { IGetToken } from 'strtok3'; /** * 6.2 Identification Header * Ref: https://theora.org/doc/Theora.pdf: 6.2 Identification Header Decode */ export interface IIdentificationHeader { id: string; vmaj: number; vmin: number; vrev: number; vmbw: number; vmbh: number; nombr: number; nqual: number; } /** * 6.2 Identification Header * Ref: https://theora.org/doc/Theora.pdf: 6.2 Identification Header Decode */ export declare const IdentificationHeader: IGetToken<IIdentificationHeader>;