Mercurial > code > home > repos > light9
view bin/mpd_timing_test @ 2015:b264971091dc
Fadable was being too strict about precision of slider vals
Ignore-this: 7236641aa403b0db96cf9668de8280bc
author | drewp@bigasterisk.com |
---|---|
date | Mon, 10 Jun 2019 02:29:43 +0000 |
parents | f066d6e874db |
children |
line wrap: on
line source
#!/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)