Open Ilethas opened 8 months ago
After recent updates in mpv, there was a change in loadfile command and bookmarks no longer load. You can see the issue mentioned here: https://github.com/mpv-player/mpv/issues/13656.
You can fix the problem by replacing the following line:
mp.commandv("loadfile", parsePath(bookmark["path"]), "replace", "start="..bookmark["pos"])
with this line:
mp.commandv("loadfile", parsePath(bookmark["path"]), "replace", -1, "start="..bookmark["pos"])
I saw someone make an adjustment here to make it work with both old and new mpv versions:
Hope it helps! 😃
Fixed it thanks!
After recent updates in mpv, there was a change in loadfile command and bookmarks no longer load. You can see the issue mentioned here: https://github.com/mpv-player/mpv/issues/13656.
You can fix the problem by replacing the following line:
with this line:
I saw someone make an adjustment here to make it work with both old and new mpv versions:
Hope it helps! 😃