Update the python bindings to the latest API version
[deb_shairplay.git] / src / test / test.py
CommitLineData
8be1424a
JVH
1import time
2from struct import *
3from Shairplay import *
4
5hwaddr = pack('BBBBBB', 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB)
094e4ad1
JVH
6class SampleCallbacks(RaopCallbacks):
7 def audio_init(self, bits, channels, samplerate):
23ab90af 8 print "Initializing", bits, channels, samplerate
094e4ad1 9 def audio_process(self, session, buffer):
23ab90af
JVH
10 print "Processing", + len(buffer), "bytes of audio"
11 def audio_destroy(self, session):
12 print "Destroying"
13 def audio_set_volume(self, session, volume):
14 print "Set volume to", volume
15 def audio_set_metadata(self, session, metadata):
16 print "Got", len(metadata), "bytes of metadata"
17 def audio_set_coverart(self, session, coverart):
18 print "Got", len(coverart), "bytes of coverart"
8be1424a
JVH
19
20shairplay = LoadShairplay(".")
094e4ad1 21callbacks = SampleCallbacks()
8be1424a 22
23ab90af 23raop = RaopService(shairplay, 10, callbacks)
8be1424a
JVH
24port = raop.start(5000, hwaddr)
25
26dnssd = DnssdService(shairplay)
094e4ad1 27dnssd.register_raop("RAOP test", port, hwaddr)
8be1424a
JVH
28
29time.sleep(50)
30
31dnssd.unregister_raop()
32raop.stop()
094e4ad1
JVH
33
34del dnssd
8be1424a
JVH
35del raop
36