Mercurial > code > home > repos > light9
view bin/attic/mpd_timing_test @ 2387:ab48a401ab02
ignore
author | drewp@bigasterisk.com |
---|---|
date | Mon, 13 May 2024 21:38:39 -0700 |
parents | 4556eebe5d73 |
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)