update local and mpv plugins, add file cmdlet, update docs

This commit is contained in:
2026-05-14 17:15:13 -07:00
parent 9f0eb29289
commit 036977832b
10 changed files with 653 additions and 297 deletions
+1 -1
View File
@@ -5903,7 +5903,7 @@ mp.register_script_message('medios-download-pick-path', function()
local pipeline_cmd = 'file -download -url ' .. quote_pipeline_arg(url)
.. ' -query ' .. quote_pipeline_arg(query)
.. ' | file -add -path ' .. quote_pipeline_arg(folder)
.. ' | file -add -plugin local -instance ' .. quote_pipeline_arg(folder)
_queue_pipeline_in_repl(
pipeline_cmd,
+1 -1
View File
@@ -474,7 +474,7 @@ class MPV:
if store:
pipeline += f" | file -add -instance {_q(store)}"
else:
pipeline += f" | file -add -path {_q(path or '')}"
pipeline += f" | file -add -plugin local -instance {_q(path or '')}"
try:
from TUI.pipeline_runner import PipelineRunner # noqa: WPS433