Files @ 91bcc6c76934
Branch filter:

Location: light9/bin/mpd_timing_test

Drew Perttula
sequencer can use zmq, it seems, but KC should not
Ignore-this: 79346c5e99e957c2f4fa3e7a5155b8c5
#!/usr/bin/python
"""
records times coming out of ascoltami

for example:

 % mpd_timing_test > timing
 # play some music in ascoltami, then ctrl-c
 % gnuplot
 > plot "timing" with lines

"""

import xmlrpc.client, time

s = xmlrpc.client.ServerProxy("http://localhost:8040")
start = time.time()
while True:
    print(time.time() - start, s.gettime())
    time.sleep(.01)