Add common player conversion methods

This commit is contained in:
Kim Silkebækken 2013-02-01 22:33:07 +01:00
parent ea32006715
commit e8ebb07662
1 changed files with 14 additions and 0 deletions

View File

@ -290,6 +290,20 @@ class NowPlayingSegment(object):
return None
return stdout.strip()
@staticmethod
def _convert_state(state):
state = state.lower()
if 'play' in state:
return 'play'
if 'pause' in state:
return 'pause'
if 'stop' in state:
return 'stop'
@staticmethod
def _convert_seconds(seconds):
return u'{0:.0f}:{1:02.0f}'.format(*divmod(float(seconds), 60))
def player_mpd(self, host='localhost', port=6600):
try:
import mpd