forked from gigafide/raspberrypi_spotify_radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcover-art.py
66 lines (53 loc) · 2.17 KB
/
cover-art.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/python
# Downloads cover-art for current song playing
# on MPD server and displays it on a 1.8" TFT LCD
#Requires a LastFM API key
#https://secure.last.fm/login?next=/api/account/create
#pip install python-mpd2
#pip install urllib2
#Add dependencies
import urllib
import xml.dom.minidom
import sys, os
from time import sleep
from mpd import MPDClient
#create an MPD Client connection variable
client = MPDClient()
#set the environment to the TFT LCD screen
os.environ["SDL_FBDEV"] = "/dev/fb1"
#create a variable to open URL's
opener = urllib.URLopener()
#create a variable for your Last FM API key
api_key = "INSERT LAST FM API KEY HERE"
#Keep attempting to connect to the MDP server until it is connected.
#While not connected, display temporary image on screen
connected = False
while not connected:
try:
client.connect("localhost", 6600)
os.system("sudo fbi -T 2 -comments -d /dev/fb1 -noverbose -a startup_logo.jpg")
connected = True
except:
pass
#Check to see which song is playing and grab the artist name and album name
#Search Last FM for corresponding artist and download the XML data
#Extract the album art cover from the XML data and save it to the computer
#Display the album art on the screen.
while True:
artist = client.currentsong()['artist']
album = client.currentsong()['album']
#current, end = client.status()['time'].split(":")
target = "http://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key={0}&artist={1}&album={2}".format(api_key, artist, album)
data = opener.open(target).read()
dom = xml.dom.minidom.parseString(data)
imageNodes = dom.getElementsByTagName("image")
imageUrl = ""
for node in imageNodes:
if node.attributes["size"].value == "large":
imageUrl = node.firstChild.data
urllib.urlretrieve(imageUrl, "cover_art.jpg")
os.system("sudo fbi -T 2 -comments -d /dev/fb1 -noverbose -a cover_art.jpg")
sleep(10)
break
else:
pass