view bin/mpd_timing_test @ 1894:b697752b35f9

note about a bug Ignore-this: 6cc4dbd36a5cdc32496f114d5649b8e0
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 30 May 2019 08:31:29 +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)