music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
15 lines (14 loc) • 642 B
TypeScript
import { CaseInsensitiveTagMap } from '../common/CaseInsensitiveTagMap.js';
import type { INativeMetadataCollector } from '../common/MetadataCollector.js';
import type { IRating, ITag } from '../type.js';
import type { IPopularimeter } from './FrameParser.js';
export declare class ID3v24TagMapper extends CaseInsensitiveTagMap {
static toRating(popm: IPopularimeter): IRating;
constructor();
/**
* Handle post mapping exceptions / correction
* @param tag to post map
* @param warnings Wil be used to register (collect) warnings
*/
protected postMap(tag: ITag, warnings: INativeMetadataCollector): void;
}