rclaudio: process the Group tag
This commit is contained in:
parent
57d47e6784
commit
50b64caf5e
@ -28,6 +28,11 @@ re_pairnum = re.compile(b'''[([]*([0-9]+),\s*([0-9]+)''')
|
||||
# TRCK,TRK,trkn TRACKNUMBER/TOTALTRACKS
|
||||
# The conversions here are consistent with the ones in MinimServer (2019-03),
|
||||
# including the rating stuff and TXXX. Lacking: Itunes '----' handling ?
|
||||
|
||||
# The 'GROUP' tag is a specific minimserver tag used to create
|
||||
# sub-containers inside a folder. We used to use 'CONTENTGROUP' for
|
||||
# this, which was wrong, the latter is a vaguely defined "music
|
||||
# category" thing.
|
||||
tagdict = {
|
||||
'ALBUM ARTIST': 'ALBUMARTIST',
|
||||
'ALBUM' : 'ALBUM',
|
||||
@ -53,6 +58,7 @@ tagdict = {
|
||||
'ENCODEDBY' : 'ENCODEDBY',
|
||||
'ENSEMBLE' : 'ORCHESTRA',
|
||||
'GENRE' : 'GENRE',
|
||||
'GROUP' : 'GROUP',
|
||||
'ISRC' : 'ISRC',
|
||||
'LABEL' : 'LABEL',
|
||||
'LANGUAGE' : 'LANGUAGE',
|
||||
@ -141,7 +147,7 @@ tagdict = {
|
||||
'TXXX:ORCHESTRA' : 'ORCHESTRA',
|
||||
'TXX:ORCHESTRA' : 'ORCHESTRA',
|
||||
'TYE' : 'DATE',
|
||||
'TYER' : 'DATE', # wikipedia id3: YEAR
|
||||
'TYER' : 'DATE',# wikipedia id3: YEAR
|
||||
'ULT' : 'LYRICS',
|
||||
'USLT' : 'LYRICS',
|
||||
'YEAR' : 'DATE',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user