From d77910d36281933930801694d9f90332117c8b16 Mon Sep 17 00:00:00 2001 From: Etoh Date: Sat, 30 Dec 2017 15:20:18 +0000 Subject: [PATCH] Fix mpv verbose mode issue with file opening recognition --- syncplay/players/mplayer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/syncplay/players/mplayer.py b/syncplay/players/mplayer.py index 98d7919..c9e97a7 100644 --- a/syncplay/players/mplayer.py +++ b/syncplay/players/mplayer.py @@ -175,6 +175,7 @@ class MplayerPlayer(BasePlayer): if line: self._client.ui.showDebugMessage("player << {}".format(line)) line = line.replace("[cplayer] ", "") # -v workaround + line = line.replace("[term-msg] ", "") # -v workaround line = line.replace(" cplayer: ","") # --msg-module workaround line = line.replace(" term-msg: ", "") if "Failed to get value of property" in line or "=(unavailable)" in line or line == "ANS_filename=" or line == "ANS_length=" or line == "ANS_path=":