mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
Add album and track exporter fields
* album.formats and album.subformats * album.hasSonicAnalysis and track.hasSonicAnalysis
This commit is contained in:
parent
91e0d4b403
commit
94ef9b30c7
1 changed files with 17 additions and 2 deletions
|
@ -840,11 +840,16 @@ class Export(object):
|
|||
'name': None,
|
||||
'locked': None
|
||||
},
|
||||
'formats': {
|
||||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'genres': {
|
||||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'guid': None,
|
||||
'hasSonicAnalysis': None,
|
||||
'index': None,
|
||||
'key': None,
|
||||
'labels': {
|
||||
|
@ -862,6 +867,7 @@ class Export(object):
|
|||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'musicAnalysisVersion': None,
|
||||
'originallyAvailableAt': partial(helpers.datetime_to_iso, to_date=True),
|
||||
'parentGuid': None,
|
||||
'parentKey': None,
|
||||
|
@ -875,6 +881,10 @@ class Export(object):
|
|||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'subformats': {
|
||||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'summary': None,
|
||||
'thumb': None,
|
||||
'thumbBlurHash': None,
|
||||
|
@ -914,6 +924,7 @@ class Export(object):
|
|||
'grandparentThumb': None,
|
||||
'grandparentTitle': None,
|
||||
'guid': None,
|
||||
'hasSonicAnalysis': None,
|
||||
'index': None,
|
||||
'key': None,
|
||||
'lastRatedAt': helpers.datetime_to_iso,
|
||||
|
@ -1006,6 +1017,7 @@ class Export(object):
|
|||
'id': None,
|
||||
'tag': None
|
||||
},
|
||||
'musicAnalysisVersion': None,
|
||||
'originalTitle': None,
|
||||
'parentGuid': None,
|
||||
'parentIndex': None,
|
||||
|
@ -1419,10 +1431,12 @@ class Export(object):
|
|||
'rating', 'userRating', 'studio', 'year',
|
||||
'summary', 'guid', 'type', 'index',
|
||||
'parentTitle', 'parentRatingKey', 'parentGuid',
|
||||
'hasSonicAnalysis',
|
||||
'tracks'
|
||||
],
|
||||
2: [
|
||||
'collections.tag', 'genres.tag', 'labels.tag', 'moods.tag', 'styles.tag',
|
||||
'collections.tag', 'formats.tag', 'genres.tag', 'labels.tag',
|
||||
'moods.tag', 'styles.tag', 'subformats.tag',
|
||||
'fields.name', 'fields.locked'
|
||||
],
|
||||
3: [
|
||||
|
@ -1443,7 +1457,8 @@ class Export(object):
|
|||
'userRating', 'ratingCount',
|
||||
'summary', 'guid', 'duration', 'durationHuman', 'type', 'trackNumber',
|
||||
'parentTitle', 'parentRatingKey', 'parentGuid', 'parentIndex',
|
||||
'grandparentTitle', 'grandparentRatingKey', 'grandparentGuid'
|
||||
'grandparentTitle', 'grandparentRatingKey', 'grandparentGuid',
|
||||
'hasSonicAnalysis'
|
||||
],
|
||||
2: [
|
||||
'collections.tag', 'moods.tag',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue