music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
16 lines • 351 B
JavaScript
import { CommonTagMapper } from '../common/GenericTagMapper.js';
/**
* ID3v1 tag mappings
*/
const tagMap = {
NAME: 'title',
AUTH: 'artist',
'(c) ': 'copyright',
ANNO: 'comment'
};
export class AiffTagMapper extends CommonTagMapper {
constructor() {
super(['AIFF'], tagMap);
}
}
//# sourceMappingURL=AiffTagMap.js.map