Skip to content

Commit

Permalink
Use semicolon OSD separator for mplayer and keep mpv as newline
Browse files Browse the repository at this point in the history
  • Loading branch information
Et0h committed Jan 28, 2015
1 parent 3e6316e commit 1c180f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion syncplay/players/mplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
1 change: 1 addition & 0 deletions syncplay/players/mpv.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

class MpvPlayer(MplayerPlayer):
RE_VERSION = re.compile('.*mpv (\d)\.(\d)\.\d.*')
osdMessageSeparator = "\\n"

@staticmethod
def run(client, playerPath, filePath, args):
Expand Down

0 comments on commit 1c180f9

Please sign in to comment.