music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
8 lines (7 loc) • 342 B
TypeScript
import { CommonTagMapper } from '../../common/GenericTagMapper.js';
import type { IRating, ITag } from '../../type.js';
export declare class VorbisTagMapper extends CommonTagMapper {
static toRating(email: string | undefined | null, rating: string, maxScore: number): IRating;
constructor();
protected postMap(tag: ITag): void;
}