@@ -0,0 +1,12 @@
+import time
+from mpd import MPDClient
+
+client = MPDClient()
+client.timeout = 60
+client.connect("localhost", 6600)
+client.clear()
+client.load("internetradio")
+client.setvol(60)
+client.play(0)
@@ -0,0 +1,20 @@
+title = ""
+station = ""
+while(True):
+ info = client.currentsong()
+ if station != info["name"]:
+ station = info["name"]
+ print(station)
+ if title != info["title"]:
+ title = info["title"]
+ print(title)
+ time.sleep(10)
+song = client.status()["song"]
+client.stop()
+time.sleep(1)
+client.play(song)
@@ -0,0 +1 @@
+python-mpd2