mirror of https://github.com/Syncplay/syncplay
Ensure MPC-HC resets position on playlist change (#618)
This commit is contained in:
parent
8ba286567d
commit
8e8d6cf804
|
@ -407,7 +407,7 @@ class MPCHCAPIPlayer(BasePlayer):
|
||||||
def openFile(self, filePath, resetPosition=False):
|
def openFile(self, filePath, resetPosition=False):
|
||||||
self._mpcApi.openFile(filePath)
|
self._mpcApi.openFile(filePath)
|
||||||
if resetPosition:
|
if resetPosition:
|
||||||
self.setPosition(0)
|
self.setPosition(0, resetPosition=True)
|
||||||
|
|
||||||
def displayMessage(
|
def displayMessage(
|
||||||
self, message,
|
self, message,
|
||||||
|
@ -429,9 +429,11 @@ class MPCHCAPIPlayer(BasePlayer):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@retry(MpcHcApi.PlayerNotReadyException, constants.MPC_MAX_RETRIES, constants.MPC_RETRY_WAIT_TIME, 1)
|
@retry(MpcHcApi.PlayerNotReadyException, constants.MPC_MAX_RETRIES, constants.MPC_RETRY_WAIT_TIME, 1)
|
||||||
def setPosition(self, value):
|
def setPosition(self, value, resetPosition=False):
|
||||||
if self._mpcApi.filePlaying:
|
if self._mpcApi.filePlaying:
|
||||||
self._mpcApi.seek(value)
|
self._mpcApi.seek(value)
|
||||||
|
elif resetPosition:
|
||||||
|
raise MpcHcApi.PlayerNotReadyException()
|
||||||
|
|
||||||
def __getPosition(self):
|
def __getPosition(self):
|
||||||
self.__positionUpdate.clear()
|
self.__positionUpdate.clear()
|
||||||
|
|
Loading…
Reference in New Issue