mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
use alternative sound library on win32
This commit is contained in:
parent
48257368cc
commit
c50203b9a1
1 changed files with 2 additions and 1 deletions
|
@ -31,7 +31,8 @@ manager = None
|
||||||
|
|
||||||
if sys.platform.startswith("win32"):
|
if sys.platform.startswith("win32"):
|
||||||
base = os.path.join(os.path.dirname(sys.argv[0]), "mplayer.exe")
|
base = os.path.join(os.path.dirname(sys.argv[0]), "mplayer.exe")
|
||||||
externalPlayer = [base, "-really-quiet"]
|
#base = "C:\mplayer.exe"
|
||||||
|
externalPlayer = [base, "-ao", "win32", "-really-quiet"]
|
||||||
else:
|
else:
|
||||||
externalPlayer = ["mplayer", "-really-quiet"]
|
externalPlayer = ["mplayer", "-really-quiet"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue