From c50203b9a12ef30867b8cac7f7068f6e51880d3a Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 23 Dec 2008 19:09:37 +0900 Subject: [PATCH] use alternative sound library on win32 --- anki/sound.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/anki/sound.py b/anki/sound.py index e638935c0..045953b4d 100644 --- a/anki/sound.py +++ b/anki/sound.py @@ -31,7 +31,8 @@ manager = None if sys.platform.startswith("win32"): 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: externalPlayer = ["mplayer", "-really-quiet"]