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
Here i am, @sergeevabc
You have to add just a single line into input.conf file, to make the magic happen
Shift+c run "cmd.exe" "/d" "/c" "echo mpv --start=${time-pos} ${path}|clip"
That's it, no scripts have been used
And the cherry on the cake - youtube timestamp link
Ctrl+c run "cmd.exe" "/d" "/c" "echo ${path}^^^&t=${=time-pos}|clip"
but it sux, because of milliseconds at the timestamp (416.280000 for example), and link would not work properly until you delete them (416 is what we need, in this case) manually, also link ends with new line (\n) symbol
I have no idea - is this even possible to get seconds only, from current playback time, or needs a feature request, probably
Anyway, the trick is - NO scripts
Windows only solution