Mercurial > code > home > repos > light9
view bin/mpd_timing_test @ 1944:b0691e922fa1
fix nginx 502 errors upon service restarts
Ignore-this: 9db3c960c3260956fa6bd1b2c77267d3
author | drewp@bigasterisk.com |
---|---|
date | Wed, 05 Jun 2019 02:04:33 +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)