From 16d2b5b097316743f2ac447a5c0cbc7a88d31425 Mon Sep 17 00:00:00 2001 From: Uriziel Date: Mon, 15 Oct 2012 09:00:01 +0200 Subject: [PATCH] stderr in mplayer is now not displayed --- syncplay/players/mplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/mplayer.py b/syncplay/players/mplayer.py index 8174ccb..6e8a3dc 100644 --- a/syncplay/players/mplayer.py +++ b/syncplay/players/mplayer.py @@ -13,7 +13,7 @@ class MplayerPlayer(BasePlayer): self._filename = None self._filepath = None - _process = subprocess.Popen([playerPath, filePath, '-slave', '-msglevel', 'all=1:global=4'], stdout=subprocess.PIPE, stdin=subprocess.PIPE) + _process = subprocess.Popen([playerPath, filePath, '-slave', '-msglevel', 'all=1:global=4'], stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE) self._listener = self.__Listener(self, _process) self._listener.setDaemon(True) self._listener.start()