Mercurial > code > home > repos > light9
view bin/mpd_timing_test @ 1891:36849634d50b
mymy on collector
Ignore-this: 8c3be45e0a4b7608f40e81020636424f
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Wed, 29 May 2019 15:58:23 +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)