]> kaliko git repositories - mpd-sima.git/commitdiff
Expose musicbrainz_albumartistid in track objects
authorkaliko <kaliko@azylum.org>
Sun, 23 Nov 2014 12:14:47 +0000 (13:14 +0100)
committerkaliko <kaliko@azylum.org>
Sun, 23 Nov 2014 12:14:47 +0000 (13:14 +0100)
sima/lib/track.py

index 5b25bd33527bad5e94ef2eb043990a1eb4dc755b..706c125fba03d97c22db9d8de712075601c23f40 100644 (file)
@@ -33,7 +33,7 @@ class Track:
 
     def __init__(self, file=None, time=0, pos=-1, **kwargs):
         self.title = self.artist = self.album = self.albumartist = ''
-        self.musicbrainz_artistid = None
+        self.musicbrainz_artistid = self.musicbrainz_albumartistid = None
         self.pos = int(pos)
         self._empty = False
         self._file = file
@@ -129,9 +129,12 @@ class Track:
     def get_artist(self):
        """Get artist object from track"""
        name = self.artist
-       if self.albumartist and self.albumartist != 'Various Artists':
+       mbid = self.musicbrainz_artistid
+       if self.albumartist != 'Various Artists':
            name = self.albumartist
-       return Artist(name=name, mbid=self.musicbrainz_artistid)
+       if self.musicbrainz_albumartistid != '89ad4ac3-39f7-470e-963a-56509c546377':
+           mbid = self.musicbrainz_albumartistid
+       return Artist(name=name, mbid=mbid)
 
 # VIM MODLINE
 # vim: ai ts=4 sw=4 sts=4 expandtab