kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Added OggTheora Metadata
OggTheora wasn't support up until now. Now the config is there and the import works fixes #216merge-requests/237/head
rodzic
b36ed8a699
commit
dc76283ebb
|
@ -97,6 +97,37 @@ CONF = {
|
|||
},
|
||||
}
|
||||
},
|
||||
'OggTheora': {
|
||||
'getter': lambda f, k: f[k][0],
|
||||
'fields': {
|
||||
'track_number': {
|
||||
'field': 'TRACKNUMBER',
|
||||
'to_application': convert_track_number
|
||||
},
|
||||
'title': {
|
||||
'field': 'title'
|
||||
},
|
||||
'artist': {
|
||||
'field': 'artist'
|
||||
},
|
||||
'album': {
|
||||
'field': 'album'
|
||||
},
|
||||
'date': {
|
||||
'field': 'date',
|
||||
'to_application': lambda v: arrow.get(v).date()
|
||||
},
|
||||
'musicbrainz_albumid': {
|
||||
'field': 'musicbrainz_albumid'
|
||||
},
|
||||
'musicbrainz_artistid': {
|
||||
'field': 'musicbrainz_artistid'
|
||||
},
|
||||
'musicbrainz_recordingid': {
|
||||
'field': 'musicbrainz_trackid'
|
||||
},
|
||||
}
|
||||
},
|
||||
'MP3': {
|
||||
'getter': get_id3_tag,
|
||||
'fields': {
|
||||
|
|
Ładowanie…
Reference in New Issue