jamp3
Version:
mp3, id3v1, id3v2 - reader & writer
41 lines (38 loc) • 1.09 kB
text/typescript
const ID3v2_ValuePicTypes: { [name: string]: string } = {
'0': 'Other',
'1': '32x32 pixels \'file icon\' (PNG only)',
'2': 'Other file icon',
'3': 'Cover (front)',
'4': 'Cover (back)',
'5': 'Leaflet page',
'6': 'Media (e.g. lable side of CD)',
'7': 'Lead artist/lead performer/soloist',
'8': 'Artist/performer',
'9': 'Conductor',
'10': 'Band/Orchestra',
'11': 'Composer',
'12': 'Lyricist/text writer',
'13': 'Recording Location',
'14': 'During recording',
'15': 'During performance',
'16': 'Movie/video screen capture',
'17': 'A bright coloured fish',
'18': 'Illustration',
'19': 'Band/artist logotype',
'20': 'Publisher/Studio logotype'
};
const ID3v2_ValueRelativeVolumeAdjustment2ChannelTypes: { [name: string]: string } = {
'0': 'Other',
'1': 'Master volume',
'2': 'Front right',
'3': 'Front left',
'4': 'Back right',
'5': 'Back left',
'6': 'Front centre',
'7': 'Back centre',
'8': 'Subwoofer'
};
export const ID3V2ValueTypes = {
pictureType: ID3v2_ValuePicTypes,
relativeVolumeAdjustment2ChannelTypes: ID3v2_ValueRelativeVolumeAdjustment2ChannelTypes
};