Update zspotify.py

This commit is contained in:
Footsiefat 2021-10-16 21:53:10 +13:00 committed by GitHub
parent c138b0c7a4
commit 011fe980a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,7 +404,12 @@ def downloadTrack(track_id_str: str, extra_paths = ""):
f.write(buffer)
bpos = 0
'''
try:
convertToMp3(filename)
except:
os.remove(filename)
print("### SKIPPING:", songName, "(GENERAL CONVERSION ERROR) ###")
else:
setAudioTags(filename, artists, name, albumName, releaseYear, disc_number, track_number)
setMusicThumbnail(filename, imageUrl)