13 lines
229 B
Python
13 lines
229 B
Python
from librespot.zeroconf import ZeroconfServer
|
|
|
|
server = (
|
|
ZeroconfServer.Builder()
|
|
.set_device_name("JARVIS Spotify")
|
|
.set_device_type("COMPUTER")
|
|
.create()
|
|
)
|
|
|
|
print("Spotify Connect läuft")
|
|
|
|
while True:
|
|
pass |