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()