Robert Burghard 11 months ago
commit
d2f0fef8ee
4 changed files with 45 additions and 0 deletions
  1. 12 0
      bootstrap.py
  2. 20 0
      main.py
  3. 12 0
      refresh.py
  4. 1 0
      requirements.txt

+ 12 - 0
bootstrap.py

@@ -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)

+ 20 - 0
main.py

@@ -0,0 +1,20 @@
+import time
+from mpd import MPDClient
+
+
+client = MPDClient()
+client.timeout = 60
+client.connect("localhost", 6600)
+
+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)

+ 12 - 0
refresh.py

@@ -0,0 +1,12 @@
+import time
+from mpd import MPDClient
+
+
+client = MPDClient()
+client.timeout = 60
+client.connect("localhost", 6600)
+
+song = client.status()["song"]
+client.stop()
+time.sleep(1)
+client.play(song)

+ 1 - 0
requirements.txt

@@ -0,0 +1 @@
+python-mpd2