mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
add info to update meta tags for compatibility with old players
This commit is contained in:
11
README.md
11
README.md
@@ -6,6 +6,17 @@
|
||||
|
||||
◘ Downloading a song using spotify link will automatically fix its meta-tags and add a nice a albumart to the song.
|
||||
|
||||
◘ If you are an old user and want to see the meta tags with Windows Media Player and other old players; manipulate the below snippet accordingly:
|
||||
|
||||
```
|
||||
import eyed3
|
||||
import os
|
||||
for x in os.listdir('/home/pi/Spotify-Downloader/Music/'):
|
||||
if x.endswith('.mp3'):
|
||||
audiofile = eyed3.load('/home/pi/Spotify-Downloader/Music/' + x)
|
||||
audiofile.tag.save(version=(2,3,0))
|
||||
```
|
||||
|
||||
That's how your Music library will look like!
|
||||
|
||||
<img src="http://i.imgur.com/Gpch7JI.png" width="290">
|
||||
|
||||
Reference in New Issue
Block a user