-
-
Save elig0n/ee76b2409a3882b0d323921acdb45815 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]) | |
-- Windows version by elig0n | |
require 'mp' | |
local function set_clipboard(text) | |
mp.commandv("run", "powershell", "set-clipboard", text); | |
end | |
function copyPermalink() | |
local pos = mp.get_property_number("time-pos") | |
local uri = mp.get_property("path") | |
uri = uri:gsub("/", "\\") | |
-- %q might not be fully robust | |
local bookmark = string.format("mpv --start=%s %q", pos, uri) | |
set_clipboard("\'" .. bookmark .. "\'") | |
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