We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa1056 commit 8dcd686Copy full SHA for 8dcd686
just_playback/playback.py
@@ -52,7 +52,7 @@ def load_file(self, path_to_file: str) -> None:
52
self.__bind(lib.terminate_audio_stream(self.__ma_attrs))
53
54
if platform.system() == 'Windows':
55
- self.__bind(lib.load_file_w(self.__ma_attrs, path_to_file.encode('utf-16le')))
+ self.__bind(lib.load_file_w(self.__ma_attrs, path_to_file))
56
else:
57
self.__bind(lib.load_file(self.__ma_attrs, path_to_file.encode('utf-8')))
58
0 commit comments