Use semicolon OSD separator for mplayer and keep mpv as newline

This commit is contained in:
Et0h 2015-01-28 21:34:36 +00:00
parent 3e6316e960
commit 1c180f951b
2 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class MplayerPlayer(BasePlayer):
speedSupported = True
customOpenDialog = False
secondaryOSDSupported = False
osdMessageSeparator = "\\n"
osdMessageSeparator = "; "
RE_ANSWER = re.compile(constants.MPLAYER_ANSWER_REGEX)
POSITION_QUERY = 'time_pos'

View File

@ -7,6 +7,7 @@ import os, sys, time
class MpvPlayer(MplayerPlayer):
RE_VERSION = re.compile('.*mpv (\d)\.(\d)\.\d.*')
osdMessageSeparator = "\\n"
@staticmethod
def run(client, playerPath, filePath, args):