Files @ 748ecc2d1f2a
Branch filter:

Location: light9/bin/mpd_timing_test

drewp@bigasterisk.com
vidref fix state machine for writing files
Ignore-this: 7f14601f09e4993c99d04a92361a84a6
#!/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)