Last active
July 2, 2023 02:07
-
-
Save olejorgenb/a5194d9bc183dbe0bfb02aac18fe37f9 to your computer and use it in GitHub Desktop.
mpv user script: copy a command that will resume video at current position
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Author: Ole Jørgen Brønner ([email protected]) | |
-- Requirement: xclip | |
-- Installation: | |
-- 'mkdir -p ~/.config/mpv/scripts && cp -i copy-permalink.lua ~/.config/mpv/scripts' | |
function copyPermalink() | |
local pos = mp.get_property_number("time-pos") | |
local uri = mp.get_property("path") | |
-- %q might not be fully robust | |
local bookmark = string.format("mpv --start=%s %q", pos, uri) | |
local pipe = io.popen("xclip -silent -in -selection clipboard", "w") | |
pipe:write(bookmark) | |
pipe:close() | |
mp.osd_message("Link to position copied to clipboard") | |
end | |
-- mp.register_script_message("copy-permalink", copyPermalink) | |
mp.add_key_binding("ctrl+SPACE", "copy-permalink", copyPermalink) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@NothingSpecialOne, thank you! It works as expected.