music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
11 lines (10 loc) • 391 B
TypeScript
import type { INativeTagMap } from '../common/GenericTagTypes.js';
import { CommonTagMapper } from '../common/GenericTagMapper.js';
/**
* RIFF Info Tags; part of the EXIF 2.3
* Ref: http://owl.phy.queensu.ca/~phil/exiftool/TagNames/RIFF.html#Info
*/
export declare const riffInfoTagMap: INativeTagMap;
export declare class RiffInfoTagMapper extends CommonTagMapper {
constructor();
}