--- mpd.py 2011-05-10 16:08:00.000000000 +1000 +++ mpd.py 2011-05-10 16:06:11.000000000 +1000 @@ -230,7 +230,7 @@ status = self.__active.status () if status.has_key ("elapsed"): # XXX: Verify that this is milliseconds - return status["elapsed"] + return int(float(status["elapsed"])*1000) elif status.has_key ("time"): seconds = (status["time"].split (":"))[0] return int (seconds) * 1000