Files @ c8f0d1b9a171
Branch filter:

Location: light9/bin/mpd_timing_test

drewp@bigasterisk.com
timeline scrubbing shows up on vidref (again)
Ignore-this: 62d3c7ffc411949e211c6e286f551b55
#!/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)