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