Fix filesystem encoding on windows

This commit is contained in:
jaseg 2016-08-09 23:38:21 +02:00
parent 1feab17c18
commit 230f0078fe

3
mpv.py
View file

@ -8,12 +8,13 @@ from warnings import warn
from functools import partial
# vim: ts=4 sw=4 et
fs_enc = sys.getfilesystemencoding()
if os.name == 'nt':
backend = CDLL(ctypes.util.find_library('mpv-1.dll'))
fs_enc = 'utf-8'
else:
backend = CDLL(ctypes.util.find_library('mpv'))
fs_enc = sys.getfilesystemencoding()
class MpvHandle(c_void_p):