From 266586a2778f2cc2828079ed45699fe434ac5f14 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Thu, 29 Dec 2016 13:05:06 +0530 Subject: [PATCH] fix bug where old media players won't read meta tags --- spotdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotdl.py b/spotdl.py index 0b487ef..ccdfcb1 100644 --- a/spotdl.py +++ b/spotdl.py @@ -91,7 +91,7 @@ def fixSong(): shutil.copyfileobj(albumart, out_file) albumart = open("last_albumart.jpg", "rb").read() audiofile.tag.images.set(3,albumart,"image/jpeg") - audiofile.tag.save() + audiofile.tag.save(version=(2,3,0)) def playSong(): if not title == '':