From 37187015ad0ea8966113bdbf10a9dc2d677c3539 Mon Sep 17 00:00:00 2001 From: Ame-chan-angel Date: Sun, 21 Apr 2024 23:06:49 +0000 Subject: [PATCH] Fix loadfile for mpv v0.38.0 --- usr/lib/hypnotix/mpv.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/usr/lib/hypnotix/mpv.py b/usr/lib/hypnotix/mpv.py index 465b3f2..4817a13 100644 --- a/usr/lib/hypnotix/mpv.py +++ b/usr/lib/hypnotix/mpv.py @@ -526,6 +526,7 @@ def _mpv_client_api_version(): _mpv_create = backend.mpv_create _API_VER = _mpv_client_api_version()[0] +_USE_LOADFILE_INDEX = _mpv_client_api_version() >= (2, 3) # libmpv 0.38.0 _handle_func('mpv_destroy' if _API_VER > 1 else 'mpv_detach_destroy', [], None, errcheck=None) _handle_func('mpv_create_client', [c_char_p], MpvHandle, notnull_errcheck) @@ -1148,7 +1149,10 @@ def _encode_options(options): def loadfile(self, filename, mode='replace', **options): """Mapped mpv loadfile command, see man mpv(1).""" - self.command('loadfile', filename.encode(fs_enc), mode, MPV._encode_options(options)) + if _USE_LOADFILE_INDEX: + self.command('loadfile', filename.encode(fs_enc), mode, -1, MPV._encode_options(options)) + else: + self.command('loadfile', filename.encode(fs_enc), mode, MPV._encode_options(options)) def loadlist(self, playlist, mode='replace'): """Mapped mpv loadlist command, see man mpv(1)."""