catch errors caused by old mpv versions

This commit is contained in:
Damien Elmes 2017-10-05 15:46:20 +10:00
parent 0b15a4a3b3
commit 3840f012be

View File

@ -24,6 +24,7 @@ import aqt.stats
import aqt.mediasrv
from aqt.utils import showWarning
import anki.sound
import anki.mpv
from aqt.utils import saveGeom, restoreGeom, showInfo, showWarning, \
restoreState, getOnlyText, askUser, applyStyles, showText, tooltip, \
openHelp, openLink, checkInvalidFilename, getFile
@ -309,6 +310,12 @@ close the profile or restart Anki."""))
anki.sound.setupMPV()
except FileNotFoundError:
showWarning(_("mpv is not installed - audio and video on cards will not work."))
self.disableSound()
except anki.mpv.MPVProcessError:
showWarning(_("mpv failed to start - please ensure it is version 0.17 or later."))
self.disableSound()
def disableSound(self):
anki.sound._player = lambda file: 1
anki.sound._queueEraser = lambda: 1