From 28e8bdf7f8286bd431b7f3b709e79f3827b31469 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 24 Dec 2025 13:54:03 +0900 Subject: updates --- debian/.config/mpv/scripts/reload.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 debian/.config/mpv/scripts/reload.lua (limited to 'debian/.config/mpv/scripts/reload.lua') diff --git a/debian/.config/mpv/scripts/reload.lua b/debian/.config/mpv/scripts/reload.lua new file mode 100644 index 0000000..dc449ec --- /dev/null +++ b/debian/.config/mpv/scripts/reload.lua @@ -0,0 +1,19 @@ +--[[ + reload / by sibwaf / https://github.com/sibwaf/mpv-scripts + + Reopens the current playing file and seeks to the same timestamp on a button press ([Shift+R] by default). + Useful for situations when you are watching YouTube/streams and your connection breaks for some reason. + + MIT license - do whatever you want, but I'm not responsible for any possible problems. + Please keep the URL to the original repository. Thanks! +]] + +function reload() + local path = mp.get_property("path") + if path ~= nil then + local time = mp.get_property_number("time-pos") + mp.commandv("loadfile", path, "replace", "start=" .. time) + end +end + +mp.add_key_binding("R", "reload", reload) -- cgit v1.2.3