diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2025-03-02 01:59:11 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2025-03-02 01:59:11 +0000 |
commit | 7873c011a61ece80858dea0bbc7bc6f16251e908 (patch) | |
tree | 90540c089fff37653289df42a32a5ae3209146a6 | |
parent | 72f436e7fe1a3f2c7c8332e5b16741e1ed62df49 (diff) |
Add get_subtitle
-rw-r--r-- | README.adoc | 1 | ||||
-rw-r--r-- | get_subtitle/README.adoc | 4 | ||||
-rw-r--r-- | get_subtitle/main.lua | 34 | ||||
-rw-r--r-- | mpvclip/main.lua | 2 |
4 files changed, 40 insertions, 1 deletions
diff --git a/README.adoc b/README.adoc index cfc3fff..8ff3533 100644 --- a/README.adoc +++ b/README.adoc @@ -4,6 +4,7 @@ == Scripts * *mpvclip.* Clip sections of video with ffmpeg. Allows choosing CRF/two-pass target size and preset, with sensible defaults. As of 2025-03-01, requires recent mpv git master build. +* *get_subtitle.* Copy the text of the current subtitle line to the clipboard. Relies on `https://github.com/astrand/xclip[+xclip+`] to function. == Copying diff --git a/get_subtitle/README.adoc b/get_subtitle/README.adoc new file mode 100644 index 0000000..f2e07bf --- /dev/null +++ b/get_subtitle/README.adoc @@ -0,0 +1,4 @@ += get_subtitle +:toc: + +Copy the text of the current subtitle line to the clipboard. Relies on `https://github.com/astrand/xclip[+xclip+`] to function.
\ No newline at end of file diff --git a/get_subtitle/main.lua b/get_subtitle/main.lua new file mode 100644 index 0000000..b24d19d --- /dev/null +++ b/get_subtitle/main.lua @@ -0,0 +1,34 @@ +Result = nil + +local function main() + local text = mp.get_property("sub-text") + + local args = { + "xclip", + "-rmlastnl", + "-selection", "clipboard" + } + + --[[ + I honestly don't understand the behaviour of the xclip process. + When not run async, this script seems to hang forever, I assume because + xclip is waiting for more input. When run async, even if the + abort_async_command call is omitted, the number of xclip processes in ps + output doesn't increase - i.e. it is somehow not a process leak? + + Other long-lived processes do show the expected behaviour without + abort_async_command, and uncommenting it does limit the total number to 1. + + So I'm leaving it like this. It works fine, evidently. If you understand + what exactly is up, open an issue. + ]] + if Result then + mp.abort_async_command(Result) + end + Result = mp.command_native_async({ name = "subprocess", args = args, stdin_data = text }) + if Result then + mp.osd_message("Copied subtitle!") + end +end + +mp.add_key_binding("g", "get-subtitle", main) diff --git a/mpvclip/main.lua b/mpvclip/main.lua index 71d499a..88beb30 100644 --- a/mpvclip/main.lua +++ b/mpvclip/main.lua @@ -48,7 +48,7 @@ local function do_clip(a, b, crf, two_pass_target, sub_track_id, path) print(dump_arr(args)) - mp.command_native({ "subprocess", args }) + mp.command_native({ name = "subprocess", args = args }) mp.osd_message("mpvclip: wrote clip to " .. out_path) print("Wrote clip to " .. out_path) end |