mirror of
				https://github.com/KevinMidboe/spotify-downloader.git
				synced 2025-10-29 18:00:15 +00:00 
			
		
		
		
	first artist from album object for album artist
This commit is contained in:
		@@ -146,7 +146,7 @@ class EmbedMetadata:
 | 
				
			|||||||
    def _embed_basic_metadata(self, audiofile, preset=TAG_PRESET):
 | 
					    def _embed_basic_metadata(self, audiofile, preset=TAG_PRESET):
 | 
				
			||||||
        meta_tags = self.meta_tags
 | 
					        meta_tags = self.meta_tags
 | 
				
			||||||
        audiofile[preset["artist"]] = meta_tags["artists"][0]["name"]
 | 
					        audiofile[preset["artist"]] = meta_tags["artists"][0]["name"]
 | 
				
			||||||
        audiofile[preset["albumartist"]] = meta_tags["artists"][0]["name"]
 | 
					        audiofile[preset["albumartist"]] = meta_tags["album"]["artists"][0]["name"]
 | 
				
			||||||
        audiofile[preset["album"]] = meta_tags["album"]["name"]
 | 
					        audiofile[preset["album"]] = meta_tags["album"]["name"]
 | 
				
			||||||
        audiofile[preset["title"]] = meta_tags["name"]
 | 
					        audiofile[preset["title"]] = meta_tags["name"]
 | 
				
			||||||
        audiofile[preset["date"]] = meta_tags["release_date"]
 | 
					        audiofile[preset["date"]] = meta_tags["release_date"]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user