Compare commits
1 Commits
0ed904319d
...
9bc7887bd6
| Author | SHA1 | Date | |
|---|---|---|---|
|
9bc7887bd6
|
@@ -1,206 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which adds a Favourites path that can be loaded from the ROOT
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local msg = require "mp.msg"
|
||||
|
||||
local fb = require 'file-browser'
|
||||
local save_path = mp.command_native({"expand-path", "~~/script-opts/file_browser_favourites.txt"}) --[[@as string]]
|
||||
do
|
||||
local file = io.open(save_path, "a+")
|
||||
if not file then
|
||||
msg.error("cannot access file", ("%q"):format(save_path), "make sure that the directory exists")
|
||||
return {}
|
||||
end
|
||||
file:close()
|
||||
end
|
||||
|
||||
---@type Item[]
|
||||
local favourites = {}
|
||||
local favourites_loaded = false
|
||||
|
||||
---@type ParserConfig
|
||||
local favs = {
|
||||
api_version = "1.8.0",
|
||||
priority = 30,
|
||||
cursor = 1
|
||||
}
|
||||
|
||||
local use_virtual_directory = true
|
||||
|
||||
---@type table<string,string>
|
||||
local full_paths = {}
|
||||
|
||||
---@param str string
|
||||
---@return Item
|
||||
local function create_favourite_object(str)
|
||||
local item = {
|
||||
type = str:sub(-1) == "/" and "dir" or "file",
|
||||
path = str,
|
||||
redirect = not use_virtual_directory,
|
||||
name = str:match("([^/]+/?)$")
|
||||
}
|
||||
full_paths[str:match("([^/]+)/?$")] = str
|
||||
return item
|
||||
end
|
||||
|
||||
---@param self Parser
|
||||
function favs:setup()
|
||||
self:register_root_item('Favourites/')
|
||||
end
|
||||
|
||||
local function update_favourites()
|
||||
local file = io.open(save_path, "r")
|
||||
if not file then return end
|
||||
|
||||
favourites = {}
|
||||
for str in file:lines() do
|
||||
table.insert(favourites, create_favourite_object(str))
|
||||
end
|
||||
file:close()
|
||||
favourites_loaded = true
|
||||
end
|
||||
|
||||
function favs:can_parse(directory)
|
||||
return directory:find("Favourites/") == 1
|
||||
end
|
||||
|
||||
---@async
|
||||
---@param self Parser
|
||||
---@param directory string
|
||||
---@return List?
|
||||
---@return Opts?
|
||||
function favs:parse(directory)
|
||||
if not favourites_loaded then update_favourites() end
|
||||
if directory == "Favourites/" then
|
||||
local opts = {
|
||||
filtered = true,
|
||||
sorted = true
|
||||
}
|
||||
return favourites, opts
|
||||
end
|
||||
|
||||
if use_virtual_directory then
|
||||
-- converts the relative favourite path into a full path
|
||||
local name = directory:match("Favourites/([^/]+)/?")
|
||||
|
||||
local _, finish = directory:find("Favourites/([^/]+/?)")
|
||||
local full_path = (full_paths[name] or "")..directory:sub(finish+1)
|
||||
local list, opts = self:defer(full_path or "")
|
||||
|
||||
if not list then return nil end
|
||||
opts = opts or {}
|
||||
opts.id = self:get_id()
|
||||
if opts.directory_label then
|
||||
opts.directory_label = opts.directory_label:gsub(full_paths[name], "Favourites/"..name..'/')
|
||||
if opts.directory_label:find("Favourites/") ~= 1 then opts.directory_label = nil end
|
||||
end
|
||||
|
||||
for _, item in ipairs(list) do
|
||||
if not item.path then item.redirect = false end
|
||||
item.path = item.path or full_path..item.name
|
||||
end
|
||||
|
||||
return list, opts
|
||||
end
|
||||
|
||||
local path = full_paths[ directory:match("([^/]+/?)$") or "" ]
|
||||
|
||||
local list, opts = self:defer(path)
|
||||
if not list then return nil end
|
||||
opts = opts or {}
|
||||
opts.directory = opts.directory or path
|
||||
return list, opts
|
||||
end
|
||||
|
||||
---@param path string
|
||||
---@return integer?
|
||||
---@return Item?
|
||||
local function get_favourite(path)
|
||||
for index, value in ipairs(favourites) do
|
||||
if value.path == path then return index, value end
|
||||
end
|
||||
end
|
||||
|
||||
--update the browser with new contents of the file
|
||||
---@async
|
||||
local function update_browser()
|
||||
if favs.get_directory():find("^[fF]avourites/$") then
|
||||
local cursor = favs.get_selected_index()
|
||||
fb.rescan_await()
|
||||
fb.set_selected_index(cursor)
|
||||
else
|
||||
fb.clear_cache({'favourites/', 'Favourites/'})
|
||||
end
|
||||
end
|
||||
|
||||
--write the contents of favourites to the file
|
||||
local function write_to_file()
|
||||
local file = io.open(save_path, "w+")
|
||||
if not file then return msg.error(file, "could not open favourites file") end
|
||||
for _, item in ipairs(favourites) do
|
||||
file:write(string.format("%s\n", item.path))
|
||||
end
|
||||
file:close()
|
||||
end
|
||||
|
||||
local function add_favourite(path)
|
||||
if get_favourite(path) then return end
|
||||
update_favourites()
|
||||
table.insert(favourites, create_favourite_object(path))
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
local function remove_favourite(path)
|
||||
update_favourites()
|
||||
local index = get_favourite(path)
|
||||
if not index then return end
|
||||
table.remove(favourites, index)
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
local function move_favourite(path, direction)
|
||||
update_favourites()
|
||||
local index, item = get_favourite(path)
|
||||
if not index or not favourites[index + direction] then return end
|
||||
|
||||
favourites[index] = favourites[index + direction]
|
||||
favourites[index + direction] = item
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
---@async
|
||||
local function toggle_favourite(cmd, state, co)
|
||||
local path = fb.get_full_path(state.list[state.selected], state.directory)
|
||||
|
||||
if state.directory:find("[fF]avourites/$") then remove_favourite(path)
|
||||
else add_favourite(path) end
|
||||
update_browser()
|
||||
end
|
||||
|
||||
---@async
|
||||
local function move_key(cmd, state, co)
|
||||
if not state.directory:find("[fF]avourites/") then return false end
|
||||
local path = fb.get_full_path(state.list[state.selected], state.directory)
|
||||
|
||||
local cursor = fb.get_selected_index()
|
||||
if cmd.name == favs:get_id().."/move_up" then
|
||||
move_favourite(path, -1)
|
||||
fb.set_selected_index(cursor-1)
|
||||
else
|
||||
move_favourite(path, 1)
|
||||
fb.set_selected_index(cursor+1)
|
||||
end
|
||||
update_browser()
|
||||
end
|
||||
|
||||
update_favourites()
|
||||
|
||||
favs.keybinds = {
|
||||
{ "F", "toggle_favourite", toggle_favourite, {}, },
|
||||
{ "Ctrl+UP", "move_up", move_key, {repeatable = true} },
|
||||
{ "Ctrl+DOWN", "move_down", move_key, {repeatable = true} },
|
||||
}
|
||||
|
||||
return favs
|
||||
@@ -1,39 +0,0 @@
|
||||
--[[
|
||||
An addon for file-browser which decodes URLs so that they are more readable
|
||||
]]
|
||||
|
||||
---@type ParserConfig
|
||||
local urldecode = {
|
||||
priority = 5,
|
||||
api_version = "1.0.0"
|
||||
}
|
||||
|
||||
--decodes a URL address
|
||||
--this piece of code was taken from: https://stackoverflow.com/questions/20405985/lua-decodeuri-luvit/20406960#20406960
|
||||
---@type fun(s: string): string
|
||||
local decodeURI
|
||||
do
|
||||
local char, gsub, tonumber = string.char, string.gsub, tonumber
|
||||
local function _(hex) return char(tonumber(hex, 16)) end
|
||||
|
||||
function decodeURI(s)
|
||||
s = gsub(s, '%%(%x%x)', _)
|
||||
return s
|
||||
end
|
||||
end
|
||||
|
||||
function urldecode:can_parse(directory)
|
||||
return self.get_protocol(directory) ~= nil
|
||||
end
|
||||
|
||||
---@async
|
||||
function urldecode:parse(directory)
|
||||
local list, opts = self:defer(directory)
|
||||
opts = opts or {}
|
||||
if opts.directory and not self.get_protocol(opts.directory) then return list, opts end
|
||||
|
||||
opts.directory_label = decodeURI(opts.directory_label or (opts.directory or directory))
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return urldecode
|
||||
@@ -1,206 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which adds a Favourites path that can be loaded from the ROOT
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local msg = require "mp.msg"
|
||||
|
||||
local fb = require 'file-browser'
|
||||
local save_path = mp.command_native({"expand-path", "~~/script-opts/file_browser_favourites.txt"}) --[[@as string]]
|
||||
do
|
||||
local file = io.open(save_path, "a+")
|
||||
if not file then
|
||||
msg.error("cannot access file", ("%q"):format(save_path), "make sure that the directory exists")
|
||||
return {}
|
||||
end
|
||||
file:close()
|
||||
end
|
||||
|
||||
---@type Item[]
|
||||
local favourites = {}
|
||||
local favourites_loaded = false
|
||||
|
||||
---@type ParserConfig
|
||||
local favs = {
|
||||
api_version = "1.8.0",
|
||||
priority = 30,
|
||||
cursor = 1
|
||||
}
|
||||
|
||||
local use_virtual_directory = true
|
||||
|
||||
---@type table<string,string>
|
||||
local full_paths = {}
|
||||
|
||||
---@param str string
|
||||
---@return Item
|
||||
local function create_favourite_object(str)
|
||||
local item = {
|
||||
type = str:sub(-1) == "/" and "dir" or "file",
|
||||
path = str,
|
||||
redirect = not use_virtual_directory,
|
||||
name = str:match("([^/]+/?)$")
|
||||
}
|
||||
full_paths[str:match("([^/]+)/?$")] = str
|
||||
return item
|
||||
end
|
||||
|
||||
---@param self Parser
|
||||
function favs:setup()
|
||||
self:register_root_item('Favourites/')
|
||||
end
|
||||
|
||||
local function update_favourites()
|
||||
local file = io.open(save_path, "r")
|
||||
if not file then return end
|
||||
|
||||
favourites = {}
|
||||
for str in file:lines() do
|
||||
table.insert(favourites, create_favourite_object(str))
|
||||
end
|
||||
file:close()
|
||||
favourites_loaded = true
|
||||
end
|
||||
|
||||
function favs:can_parse(directory)
|
||||
return directory:find("Favourites/") == 1
|
||||
end
|
||||
|
||||
---@async
|
||||
---@param self Parser
|
||||
---@param directory string
|
||||
---@return List?
|
||||
---@return Opts?
|
||||
function favs:parse(directory)
|
||||
if not favourites_loaded then update_favourites() end
|
||||
if directory == "Favourites/" then
|
||||
local opts = {
|
||||
filtered = true,
|
||||
sorted = true
|
||||
}
|
||||
return favourites, opts
|
||||
end
|
||||
|
||||
if use_virtual_directory then
|
||||
-- converts the relative favourite path into a full path
|
||||
local name = directory:match("Favourites/([^/]+)/?")
|
||||
|
||||
local _, finish = directory:find("Favourites/([^/]+/?)")
|
||||
local full_path = (full_paths[name] or "")..directory:sub(finish+1)
|
||||
local list, opts = self:defer(full_path or "")
|
||||
|
||||
if not list then return nil end
|
||||
opts = opts or {}
|
||||
opts.id = self:get_id()
|
||||
if opts.directory_label then
|
||||
opts.directory_label = opts.directory_label:gsub(full_paths[name], "Favourites/"..name..'/')
|
||||
if opts.directory_label:find("Favourites/") ~= 1 then opts.directory_label = nil end
|
||||
end
|
||||
|
||||
for _, item in ipairs(list) do
|
||||
if not item.path then item.redirect = false end
|
||||
item.path = item.path or full_path..item.name
|
||||
end
|
||||
|
||||
return list, opts
|
||||
end
|
||||
|
||||
local path = full_paths[ directory:match("([^/]+/?)$") or "" ]
|
||||
|
||||
local list, opts = self:defer(path)
|
||||
if not list then return nil end
|
||||
opts = opts or {}
|
||||
opts.directory = opts.directory or path
|
||||
return list, opts
|
||||
end
|
||||
|
||||
---@param path string
|
||||
---@return integer?
|
||||
---@return Item?
|
||||
local function get_favourite(path)
|
||||
for index, value in ipairs(favourites) do
|
||||
if value.path == path then return index, value end
|
||||
end
|
||||
end
|
||||
|
||||
--update the browser with new contents of the file
|
||||
---@async
|
||||
local function update_browser()
|
||||
if favs.get_directory():find("^[fF]avourites/$") then
|
||||
local cursor = favs.get_selected_index()
|
||||
fb.rescan_await()
|
||||
fb.set_selected_index(cursor)
|
||||
else
|
||||
fb.clear_cache({'favourites/', 'Favourites/'})
|
||||
end
|
||||
end
|
||||
|
||||
--write the contents of favourites to the file
|
||||
local function write_to_file()
|
||||
local file = io.open(save_path, "w+")
|
||||
if not file then return msg.error(file, "could not open favourites file") end
|
||||
for _, item in ipairs(favourites) do
|
||||
file:write(string.format("%s\n", item.path))
|
||||
end
|
||||
file:close()
|
||||
end
|
||||
|
||||
local function add_favourite(path)
|
||||
if get_favourite(path) then return end
|
||||
update_favourites()
|
||||
table.insert(favourites, create_favourite_object(path))
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
local function remove_favourite(path)
|
||||
update_favourites()
|
||||
local index = get_favourite(path)
|
||||
if not index then return end
|
||||
table.remove(favourites, index)
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
local function move_favourite(path, direction)
|
||||
update_favourites()
|
||||
local index, item = get_favourite(path)
|
||||
if not index or not favourites[index + direction] then return end
|
||||
|
||||
favourites[index] = favourites[index + direction]
|
||||
favourites[index + direction] = item
|
||||
write_to_file()
|
||||
end
|
||||
|
||||
---@async
|
||||
local function toggle_favourite(cmd, state, co)
|
||||
local path = fb.get_full_path(state.list[state.selected], state.directory)
|
||||
|
||||
if state.directory:find("[fF]avourites/$") then remove_favourite(path)
|
||||
else add_favourite(path) end
|
||||
update_browser()
|
||||
end
|
||||
|
||||
---@async
|
||||
local function move_key(cmd, state, co)
|
||||
if not state.directory:find("[fF]avourites/") then return false end
|
||||
local path = fb.get_full_path(state.list[state.selected], state.directory)
|
||||
|
||||
local cursor = fb.get_selected_index()
|
||||
if cmd.name == favs:get_id().."/move_up" then
|
||||
move_favourite(path, -1)
|
||||
fb.set_selected_index(cursor-1)
|
||||
else
|
||||
move_favourite(path, 1)
|
||||
fb.set_selected_index(cursor+1)
|
||||
end
|
||||
update_browser()
|
||||
end
|
||||
|
||||
update_favourites()
|
||||
|
||||
favs.keybinds = {
|
||||
{ "F", "toggle_favourite", toggle_favourite, {}, },
|
||||
{ "Ctrl+UP", "move_up", move_key, {repeatable = true} },
|
||||
{ "Ctrl+DOWN", "move_down", move_key, {repeatable = true} },
|
||||
}
|
||||
|
||||
return favs
|
||||
@@ -1,45 +0,0 @@
|
||||
local fb = require "file-browser"
|
||||
local opt = require "mp.options"
|
||||
|
||||
local o = {
|
||||
--list of absolute paths separated by the root separators
|
||||
paths = ""
|
||||
}
|
||||
|
||||
--config file stored in ~~/script-opts/file-browser/filter.conf
|
||||
opt.read_options(o, "file-browser/filter")
|
||||
|
||||
local parser = {
|
||||
priority = 10,
|
||||
api_version = "1.3.0"
|
||||
}
|
||||
|
||||
local paths = {}
|
||||
for str in fb.iterate_opt(o.paths) do
|
||||
paths[str] = true
|
||||
end
|
||||
|
||||
local function filter(path)
|
||||
return paths[path]
|
||||
end
|
||||
|
||||
function parser:can_parse()
|
||||
return true
|
||||
end
|
||||
|
||||
function parser:parse(directory)
|
||||
local list, opts = self:defer(directory)
|
||||
if not list then return list, opts end
|
||||
|
||||
directory = opts.directory or directory
|
||||
|
||||
for i=#list, 1, -1 do
|
||||
if filter( fb.get_full_path(list[i], directory) ) then
|
||||
table.remove(list, i)
|
||||
end
|
||||
end
|
||||
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return parser
|
||||
@@ -1,41 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local fb = require 'file-browser'
|
||||
|
||||
local isos = {
|
||||
name = 'iso-loader',
|
||||
priority = 20,
|
||||
api_version = '1.5'
|
||||
}
|
||||
|
||||
function isos:setup()
|
||||
fb.add_default_extension('iso')
|
||||
end
|
||||
|
||||
function isos:can_parse()
|
||||
return true
|
||||
end
|
||||
|
||||
function isos:parse(directory, parse_state)
|
||||
local list, opts = self:defer(directory, parse_state)
|
||||
if not list or #list == 0 then return list, opts end
|
||||
|
||||
for _, item in ipairs(list) do
|
||||
local path = fb.get_full_path(item, opts.directory or directory)
|
||||
if fb.get_extension(path) == 'iso' then
|
||||
item.mpv_options = { ['bluray-device'] = path, ['dvd-device'] = path }
|
||||
item.path = 'bd://'
|
||||
end
|
||||
end
|
||||
|
||||
return list, opts
|
||||
end
|
||||
|
||||
mp.add_hook('on_load_fail', 50, function()
|
||||
if mp.get_property('stream-open-filename') == 'bd://' then
|
||||
msg.info('failed to load bluray-device, attempting dvd-device')
|
||||
mp.set_property('stream-open-filename', 'dvd://')
|
||||
end
|
||||
end)
|
||||
|
||||
return isos
|
||||
@@ -1,124 +0,0 @@
|
||||
--[[
|
||||
This file is an internal file-browser addon.
|
||||
It should not be imported like a normal module.
|
||||
|
||||
Allows searching the current directory.
|
||||
]]--
|
||||
|
||||
local msg = require "mp.msg"
|
||||
local fb = require "file-browser"
|
||||
local input_loaded, input = pcall(require, "mp.input")
|
||||
local user_input_loaded, user_input = pcall(require, "user-input-module")
|
||||
|
||||
---@type ParserConfig
|
||||
local find = {
|
||||
api_version = "1.3.0"
|
||||
}
|
||||
|
||||
---@type thread|nil
|
||||
local latest_coroutine = nil
|
||||
|
||||
---@type State
|
||||
local global_fb_state = getmetatable(fb.get_state()).__original
|
||||
|
||||
---@param name string
|
||||
---@param query string
|
||||
---@return boolean
|
||||
local function compare(name, query)
|
||||
if name:find(query) then return true end
|
||||
if name:lower():find(query) then return true end
|
||||
if name:upper():find(query) then return true end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
---@async
|
||||
---@param key Keybind
|
||||
---@param state State
|
||||
---@param co thread
|
||||
---@return boolean?
|
||||
local function main(key, state, co)
|
||||
if not state.list then return false end
|
||||
|
||||
---@type string
|
||||
local text
|
||||
if key.name == "find/find" then text = "Find: enter search string"
|
||||
else text = "Find: enter advanced search string" end
|
||||
|
||||
if input_loaded then
|
||||
input.get({
|
||||
prompt = text .. "\n>",
|
||||
id = "file-browser/find",
|
||||
submit = fb.coroutine.callback(),
|
||||
})
|
||||
elseif user_input_loaded then
|
||||
user_input.get_user_input( fb.coroutine.callback(), { text = text, id = "find", replace = true } )
|
||||
end
|
||||
|
||||
local query, error = coroutine.yield()
|
||||
if input_loaded then input.terminate() end
|
||||
if not query then return msg.debug(error) end
|
||||
|
||||
-- allow the directory to be changed before this point
|
||||
local list = fb.get_list()
|
||||
local parse_id = global_fb_state.co
|
||||
|
||||
if key.name == "find/find" then
|
||||
query = fb.pattern_escape(query)
|
||||
end
|
||||
|
||||
local results = {}
|
||||
|
||||
for index, item in ipairs(list) do
|
||||
if compare(item.label or item.name, query) then
|
||||
table.insert(results, index)
|
||||
end
|
||||
end
|
||||
|
||||
if (#results < 1) then
|
||||
msg.warn("No matching items for '"..query.."'")
|
||||
return
|
||||
end
|
||||
|
||||
--keep cycling through the search results if any are found
|
||||
--putting this into a separate coroutine removes any passthrough ambiguity
|
||||
--the final return statement should return to `step_find` not any other function
|
||||
---@async
|
||||
fb.coroutine.run(function()
|
||||
latest_coroutine = coroutine.running()
|
||||
---@type number
|
||||
local rindex = 1
|
||||
while (true) do
|
||||
|
||||
if rindex == 0 then rindex = #results
|
||||
elseif rindex == #results + 1 then rindex = 1 end
|
||||
|
||||
fb.set_selected_index(results[rindex])
|
||||
local direction = coroutine.yield(true) --[[@as number]]
|
||||
rindex = rindex + direction
|
||||
|
||||
if parse_id ~= global_fb_state.co then
|
||||
latest_coroutine = nil
|
||||
return
|
||||
end
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
local function step_find(key)
|
||||
if not latest_coroutine then return false end
|
||||
---@type number
|
||||
local direction = 0
|
||||
if key.name == "find/next" then direction = 1
|
||||
elseif key.name == "find/prev" then direction = -1 end
|
||||
return fb.coroutine.resume_err(latest_coroutine, direction)
|
||||
end
|
||||
|
||||
find.keybinds = {
|
||||
{"Ctrl+f", "find", main, {}},
|
||||
{"Ctrl+F", "find_advanced", main, {}},
|
||||
{"n", "next", step_find, {}},
|
||||
{"N", "prev", step_find, {}},
|
||||
}
|
||||
|
||||
return find
|
||||
@@ -1,31 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which displays ~/ for the home directory instead of the full path
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local fb = require "file-browser"
|
||||
|
||||
local home = fb.fix_path(mp.command_native({"expand-path", "~/"}) --[[@as string]], true)
|
||||
|
||||
---@type ParserConfig
|
||||
local home_label = {
|
||||
priority = 100,
|
||||
api_version = "1.0.0"
|
||||
}
|
||||
|
||||
function home_label:can_parse(directory)
|
||||
if not fb.get_opt('home_label') then return false end
|
||||
return directory:sub(1, home:len()) == home
|
||||
end
|
||||
|
||||
---@async
|
||||
function home_label:parse(directory)
|
||||
local list, opts = self:defer(directory)
|
||||
if not opts then opts = {} end
|
||||
if (not opts.directory or opts.directory == directory) and not opts.directory_label then
|
||||
opts.directory_label = "~/"..(directory:sub(home:len()+1) or "")
|
||||
end
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return home_label
|
||||
@@ -1,218 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which uses the Windows dir command to parse native directories
|
||||
This behaves near identically to the native parser, but IO is done asynchronously.
|
||||
|
||||
Available at: https://github.com/CogentRedTester/mpv-file-browser/tree/master/addons
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local msg = require "mp.msg"
|
||||
local fb = require "file-browser"
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
---@param bytes string
|
||||
---@return fun(): number, number
|
||||
local function byte_iterator(bytes)
|
||||
---@async
|
||||
---@return number?
|
||||
local function iter()
|
||||
for i = 1, #bytes do
|
||||
coroutine.yield(bytes:byte(i), i)
|
||||
end
|
||||
error('malformed utf16le string - expected byte but found end of string')
|
||||
end
|
||||
|
||||
return coroutine.wrap(iter)
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param by number
|
||||
---@return number
|
||||
local function lshift(bits, by)
|
||||
return bits * 2^by
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param by number
|
||||
---@return integer
|
||||
local function rshift(bits, by)
|
||||
return math.floor(bits / 2^by)
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param i number
|
||||
---@return number
|
||||
local function bits_below(bits, i)
|
||||
return bits % 2^i
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param i number exclusive
|
||||
---@param j number inclusive
|
||||
---@return integer
|
||||
local function bits_between(bits, i, j)
|
||||
return rshift(bits_below(bits, j), i)
|
||||
end
|
||||
|
||||
---@param bytes string
|
||||
---@return number[]
|
||||
local function utf16le_to_unicode(bytes)
|
||||
msg.trace('converting from utf16-le to unicode codepoints')
|
||||
|
||||
---@type number[]
|
||||
local codepoints = {}
|
||||
|
||||
local get_byte = byte_iterator(bytes)
|
||||
|
||||
while true do
|
||||
-- start of a char
|
||||
local success, little, i = pcall(get_byte)
|
||||
if not success then break end
|
||||
|
||||
local big = get_byte()
|
||||
local codepoint = little + lshift(big, 8)
|
||||
|
||||
if codepoint < 0xd800 or codepoint > 0xdfff then
|
||||
table.insert(codepoints, codepoint)
|
||||
else
|
||||
-- handling surrogate pairs
|
||||
-- grab the next two bytes to grab the low surrogate
|
||||
local high_pair = codepoint
|
||||
local low_pair = get_byte() + lshift(get_byte(), 8)
|
||||
|
||||
if high_pair >= 0xdc00 then
|
||||
error(('malformed utf16le string at byte #%d (0x%04X) - high surrogate pair should be < 0xDC00'):format(i, high_pair))
|
||||
elseif low_pair < 0xdc00 then
|
||||
error(('malformed utf16le string at byte #%d (0x%04X) - low surrogate pair should be >= 0xDC00'):format(i+2, low_pair))
|
||||
end
|
||||
|
||||
-- The last 10 bits of each surrogate are the two halves of the codepoint
|
||||
-- https://en.wikipedia.org/wiki/UTF-16#Code_points_from_U+010000_to_U+10FFFF
|
||||
local high_bits = bits_below(high_pair, 10)
|
||||
local low_bits = bits_below(low_pair, 10)
|
||||
local surrogate_par = (low_bits + lshift(high_bits, 10)) + 0x10000
|
||||
|
||||
table.insert(codepoints, surrogate_par)
|
||||
end
|
||||
end
|
||||
|
||||
return codepoints
|
||||
end
|
||||
|
||||
---@param codepoints number[]
|
||||
---@return string
|
||||
local function unicode_to_utf8(codepoints)
|
||||
---@type number[]
|
||||
local bytes = {}
|
||||
|
||||
-- https://en.wikipedia.org/wiki/UTF-8#Description
|
||||
for i, codepoint in ipairs(codepoints) do
|
||||
if codepoint >= 0xd800 and codepoint <= 0xdfff then
|
||||
error(('codepoint %d (U+%05X) is within the reserved surrogate pair range (U+D800-U+DFFF)'):format(i, codepoint))
|
||||
elseif codepoint <= 0x7f then
|
||||
table.insert(bytes, codepoint)
|
||||
elseif codepoint <= 0x7ff then
|
||||
table.insert(bytes, 0xC0 + rshift(codepoint, 6))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
elseif codepoint <= 0xffff then
|
||||
table.insert(bytes, 0xE0 + rshift(codepoint, 12))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 6, 12))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
elseif codepoint <= 0x10ffff then
|
||||
table.insert(bytes, 0xF0 + rshift(codepoint, 18))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 12, 18))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 6, 12))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
else
|
||||
error(('codepoint %d (U+%05X) is larger than U+10FFFF'):format(i, codepoint))
|
||||
end
|
||||
end
|
||||
|
||||
return string.char(table.unpack(bytes))
|
||||
end
|
||||
|
||||
local function utf8(text)
|
||||
return unicode_to_utf8(utf16le_to_unicode(text))
|
||||
end
|
||||
|
||||
---@type ParserConfig
|
||||
local dir = {
|
||||
priority = 109,
|
||||
api_version = "1.9.0",
|
||||
name = "cmd-dir",
|
||||
keybind_name = "file"
|
||||
}
|
||||
|
||||
---@async
|
||||
---@param args string[]
|
||||
---@param parse_state ParseState
|
||||
---@return string|nil
|
||||
local function command(args, parse_state)
|
||||
local async = mp.command_native_async({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
args = args,
|
||||
}, fb.coroutine.callback(30) )
|
||||
|
||||
---@type boolean, boolean, MPVSubprocessResult
|
||||
local completed, _, cmd = parse_state:yield()
|
||||
if not completed then
|
||||
msg.warn('read timed out for:', table.unpack(args))
|
||||
mp.abort_async_command(async)
|
||||
return nil
|
||||
end
|
||||
|
||||
local success = xpcall(function()
|
||||
cmd.stdout = utf8(cmd.stdout) or ''
|
||||
cmd.stderr = utf8(cmd.stderr) or ''
|
||||
end, fb.traceback)
|
||||
|
||||
if not success then return msg.error('failed to convert utf16-le string to utf8') end
|
||||
|
||||
--dir returns this exact error message if the directory is empty
|
||||
if cmd.status == 1 and cmd.stderr == "File Not Found\r\n" then cmd.status = 0 end
|
||||
if cmd.status ~= 0 then return msg.error(cmd.stderr) end
|
||||
|
||||
return cmd.status == 0 and cmd.stdout or nil
|
||||
end
|
||||
|
||||
function dir:can_parse(directory)
|
||||
if not fb.get_opt('windir_parser') then return false end
|
||||
return PLATFORM == 'windows' and directory ~= '' and not fb.get_protocol(directory)
|
||||
end
|
||||
|
||||
---@async
|
||||
function dir:parse(directory, parse_state)
|
||||
local list = {}
|
||||
|
||||
-- the dir command expects backslashes for our paths
|
||||
directory = string.gsub(directory, "/", "\\")
|
||||
|
||||
local dirs = command({ "cmd", "/U", "/c", "dir", "/b", "/ad", directory }, parse_state)
|
||||
if not dirs then return end
|
||||
|
||||
local files = command({ "cmd", "/U", "/c", "dir", "/b", "/a-d", directory }, parse_state)
|
||||
if not files then return end
|
||||
|
||||
for name in dirs:gmatch("[^\n\r]+") do
|
||||
name = name.."/"
|
||||
if fb.valid_dir(name) then
|
||||
table.insert(list, { name = name, type = "dir" })
|
||||
msg.trace(name)
|
||||
end
|
||||
end
|
||||
|
||||
for name in files:gmatch("[^\n\r]+") do
|
||||
if fb.valid_file(name) then
|
||||
table.insert(list, { name = name, type = "file" })
|
||||
msg.trace(name)
|
||||
end
|
||||
end
|
||||
|
||||
return list, { filtered = true }
|
||||
end
|
||||
|
||||
return dir
|
||||
@@ -1,62 +0,0 @@
|
||||
--[[
|
||||
This file is an internal file-browser addon.
|
||||
It should not be imported like a normal module.
|
||||
|
||||
Automatically populates the root with windows drives on startup.
|
||||
Ctrl+r will add new drives mounted since startup.
|
||||
|
||||
Drives will only be added if they are not already present in the root.
|
||||
]]
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local fb = require 'file-browser'
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
---returns a list of windows drives
|
||||
---@return string[]?
|
||||
local function get_drives()
|
||||
---@type MPVSubprocessResult?, string?
|
||||
local result, err = mp.command_native({
|
||||
name = 'subprocess',
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = {'fsutil', 'fsinfo', 'drives'}
|
||||
})
|
||||
if not result then return msg.error(err) end
|
||||
if result.status ~= 0 then return msg.error('could not read windows root') end
|
||||
|
||||
local root = {}
|
||||
for drive in result.stdout:gmatch("(%a:)\\") do
|
||||
table.insert(root, drive..'/')
|
||||
end
|
||||
return root
|
||||
end
|
||||
|
||||
-- adds windows drives to the root if they are not already present
|
||||
local function import_drives()
|
||||
if fb.get_opt('auto_detect_windows_drives') and PLATFORM ~= 'windows' then return end
|
||||
|
||||
local drives = get_drives()
|
||||
if not drives then return end
|
||||
|
||||
for _, drive in ipairs(drives) do
|
||||
fb.register_root_item(drive)
|
||||
end
|
||||
end
|
||||
|
||||
local keybind = {
|
||||
key = 'Ctrl+r',
|
||||
name = 'import_root_drives',
|
||||
command = import_drives,
|
||||
parser = 'root',
|
||||
passthrough = true
|
||||
}
|
||||
|
||||
---@type ParserConfig
|
||||
return {
|
||||
api_version = '1.9.0',
|
||||
setup = import_drives,
|
||||
keybinds = { keybind }
|
||||
}
|
||||
@@ -1,86 +0,0 @@
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local fb = require 'file-browser'
|
||||
|
||||
local parser = {
|
||||
priority = 105,
|
||||
api_version = '1.2.0'
|
||||
}
|
||||
|
||||
-- stores a table of the parsers loaded by file-browser
|
||||
-- we will use this to check if a parser is for a local file system
|
||||
local parsers
|
||||
|
||||
local sort_mode = 0
|
||||
|
||||
function parser:setup()
|
||||
parsers = fb.get_parsers()
|
||||
end
|
||||
|
||||
function parser:parse(directory)
|
||||
if sort_mode == 0 or fb.get_protocol(directory) then return end
|
||||
local list, opts = self:defer(directory)
|
||||
if not list then return list, opts end
|
||||
|
||||
-- Only run this on parsers that are for the local filesystem.
|
||||
-- We assume that custom addons for the local filesystem are setting the keybind_name field to 'file'
|
||||
-- for compatability.
|
||||
if parsers[opts.id] then
|
||||
if parsers[opts.id].keybind_name ~= 'file' and parsers[opts.id].name ~= 'file' then
|
||||
return list, opts
|
||||
end
|
||||
end
|
||||
|
||||
directory = opts.directory or directory
|
||||
local cache = {}
|
||||
|
||||
-- gets the file info of an item
|
||||
-- uses memoisation to speed things up
|
||||
function get_file_info(item)
|
||||
if cache[item] then return cache[item] end
|
||||
|
||||
local path = fb.get_full_path(item, directory)
|
||||
local file_info = utils.file_info(path)
|
||||
if not file_info then
|
||||
msg.warn('failed to read file info for', path)
|
||||
return {}
|
||||
end
|
||||
|
||||
cache[item] = file_info
|
||||
return file_info
|
||||
end
|
||||
|
||||
-- sorts the items based on the latest modification time
|
||||
-- if mtime is undefined due to a file read failure then use 0
|
||||
table.sort(list, function(a, b)
|
||||
-- `dir` will compare as less than `file`
|
||||
if a.type ~= b.type then return a.type < b.type end
|
||||
if sort_mode == 1 then
|
||||
return (get_file_info(a).mtime or 0) < (get_file_info(b).mtime or 0)
|
||||
elseif sort_mode == 2 then
|
||||
return (get_file_info(a).mtime or 0) > (get_file_info(b).mtime or 0)
|
||||
elseif sort_mode == 3 then
|
||||
return (get_file_info(a).size or 0) < (get_file_info(b).size or 0)
|
||||
elseif sort_mode == 4 then
|
||||
return (get_file_info(a).size or 0) > (get_file_info(b).size or 0)
|
||||
end
|
||||
end)
|
||||
|
||||
opts.sorted = true
|
||||
return list, opts
|
||||
end
|
||||
|
||||
-- adds the keybind to toggle sorting
|
||||
parser.keybinds = {
|
||||
{
|
||||
key = '^',
|
||||
name = 'toggle_sort',
|
||||
command = function()
|
||||
sort_mode = sort_mode + 1
|
||||
if sort_mode > 4 then sort_mode = 0 end
|
||||
fb.rescan()
|
||||
end
|
||||
}
|
||||
}
|
||||
|
||||
return parser
|
||||
@@ -1,39 +0,0 @@
|
||||
--[[
|
||||
An addon for file-browser which decodes URLs so that they are more readable
|
||||
]]
|
||||
|
||||
---@type ParserConfig
|
||||
local urldecode = {
|
||||
priority = 5,
|
||||
api_version = "1.0.0"
|
||||
}
|
||||
|
||||
--decodes a URL address
|
||||
--this piece of code was taken from: https://stackoverflow.com/questions/20405985/lua-decodeuri-luvit/20406960#20406960
|
||||
---@type fun(s: string): string
|
||||
local decodeURI
|
||||
do
|
||||
local char, gsub, tonumber = string.char, string.gsub, tonumber
|
||||
local function _(hex) return char(tonumber(hex, 16)) end
|
||||
|
||||
function decodeURI(s)
|
||||
s = gsub(s, '%%(%x%x)', _)
|
||||
return s
|
||||
end
|
||||
end
|
||||
|
||||
function urldecode:can_parse(directory)
|
||||
return self.get_protocol(directory) ~= nil
|
||||
end
|
||||
|
||||
---@async
|
||||
function urldecode:parse(directory)
|
||||
local list, opts = self:defer(directory)
|
||||
opts = opts or {}
|
||||
if opts.directory and not self.get_protocol(opts.directory) then return list, opts end
|
||||
|
||||
opts.directory_label = decodeURI(opts.directory_label or (opts.directory or directory))
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return urldecode
|
||||
@@ -1,51 +0,0 @@
|
||||
local fb = require "file-browser"
|
||||
local fb_utils = require 'modules.utils'
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
-- Only enable Windows-specific sorting on Windows platforms
|
||||
if PLATFORM == 'windows' then
|
||||
-- this code is based on https://github.com/mpvnet-player/mpv.net/issues/575#issuecomment-1817413401
|
||||
local ffi = require "ffi"
|
||||
local winapi = {
|
||||
ffi = ffi,
|
||||
C = ffi.C,
|
||||
CP_UTF8 = 65001,
|
||||
shlwapi = ffi.load("shlwapi"),
|
||||
}
|
||||
|
||||
-- ffi code from https://github.com/po5/thumbfast, Mozilla Public License Version 2.0
|
||||
ffi.cdef[[
|
||||
int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr,
|
||||
int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar);
|
||||
int __stdcall StrCmpLogicalW(wchar_t *psz1, wchar_t *psz2);
|
||||
]]
|
||||
|
||||
winapi.utf8_to_wide = function(utf8_str)
|
||||
if utf8_str then
|
||||
local utf16_len = winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, nil, 0)
|
||||
|
||||
if utf16_len > 0 then
|
||||
local utf16_str = winapi.ffi.new("wchar_t[?]", utf16_len)
|
||||
|
||||
if winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, utf16_str, utf16_len) > 0 then
|
||||
return utf16_str
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return ""
|
||||
end
|
||||
|
||||
fb_utils.sort = function (t)
|
||||
table.sort(t, function(a, b)
|
||||
local a_wide = winapi.utf8_to_wide(a.type:sub(1, 1) .. (a.label or a.name))
|
||||
local b_wide = winapi.utf8_to_wide(b.type:sub(1, 1) .. (b.label or b.name))
|
||||
return winapi.shlwapi.StrCmpLogicalW(a_wide, b_wide) == -1
|
||||
end)
|
||||
|
||||
return t
|
||||
end
|
||||
end
|
||||
|
||||
return { api_version = '1.2.0' }
|
||||
@@ -1,70 +0,0 @@
|
||||
-- Runs write-watch-later-config periodically
|
||||
|
||||
local options = require 'mp.options'
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
o = {
|
||||
save_interval = 60,
|
||||
percent_pos = 99,
|
||||
}
|
||||
options.read_options(o)
|
||||
|
||||
local can_delete = true
|
||||
local can_save = true
|
||||
local path = nil -- only set after file success load, reset to nil when file unload.
|
||||
|
||||
local function reset()
|
||||
path = nil
|
||||
end
|
||||
|
||||
-- set vars when file success load
|
||||
local function init()
|
||||
path = mp.get_property("path")
|
||||
end
|
||||
|
||||
local function save()
|
||||
if not can_save then return end
|
||||
local watch_later_list = mp.get_property("watch-later-options", {})
|
||||
if mp.get_property_bool("save-position-on-quit") then
|
||||
msg.debug("saving state")
|
||||
if not watch_later_list:find("start") then
|
||||
mp.commandv("change-list", "watch-later-options", "append", "start")
|
||||
end
|
||||
mp.command("write-watch-later-config")
|
||||
end
|
||||
end
|
||||
|
||||
local function save_if_pause(_, pause)
|
||||
if pause then save() end
|
||||
end
|
||||
|
||||
local function pause_timer_while_paused(_, pause)
|
||||
if pause then timer:stop() else timer:resume() end
|
||||
end
|
||||
|
||||
-- save watch-later-config when file unloading
|
||||
local function save_or_delete()
|
||||
if not can_delete then return end
|
||||
local eof = mp.get_property_bool("eof-reached")
|
||||
local percent_pos = mp.get_property_number("percent-pos")
|
||||
if eof or percent_pos and (percent_pos == 0 or percent_pos >= o.percent_pos) then
|
||||
can_delete = true
|
||||
if path ~= nil then
|
||||
msg.debug("deleting state: percent_pos=0 or eof")
|
||||
mp.commandv("delete-watch-later-config", path)
|
||||
end
|
||||
elseif path ~= nil then
|
||||
save()
|
||||
end
|
||||
reset()
|
||||
end
|
||||
|
||||
mp.register_script_message("skip-delete-state", function() can_delete = false end)
|
||||
|
||||
timer = mp.add_periodic_timer(o.save_interval, save)
|
||||
mp.observe_property("pause", "bool", pause_timer_while_paused)
|
||||
|
||||
mp.observe_property("pause", "bool", save_if_pause)
|
||||
|
||||
mp.register_event("file-loaded", init)
|
||||
mp.add_hook("on_unload", 50, save_or_delete) -- after mpv saving state
|
||||
@@ -1,610 +0,0 @@
|
||||
-- This script automatically loads playlist entries before and after the
|
||||
-- the currently played file. It does so by scanning the directory a file is
|
||||
-- located in when starting playback. It sorts the directory entries
|
||||
-- alphabetically, and adds entries before and after the current file to
|
||||
-- the internal playlist. (It stops if it would add an already existing
|
||||
-- playlist entry at the same position - this makes it "stable".)
|
||||
-- Add at most 5000 * 2 files when starting a file (before + after).
|
||||
|
||||
--[[
|
||||
To configure this script use file autoload.conf in directory script-opts (the "script-opts"
|
||||
directory must be in the mpv configuration directory, typically ~/.config/mpv/).
|
||||
|
||||
Option `ignore_patterns` is a comma-separated list of patterns (see lua.org/pil/20.2.html).
|
||||
Additionally to the standard lua patterns, you can also escape commas with `%`,
|
||||
for example, the option `bak%,x%,,another` will be resolved as patterns `bak,x,` and `another`.
|
||||
But it does not mean you need to escape all lua patterns twice,
|
||||
so the option `bak%%,%。mp4,` will be resolved as two patterns `bak%%` and `%.mp4`.
|
||||
|
||||
Example configuration would be:
|
||||
|
||||
disabled=no
|
||||
images=no
|
||||
videos=yes
|
||||
audio=yes
|
||||
additional_image_exts=list,of,ext
|
||||
additional_video_exts=list,of,ext
|
||||
additional_audio_exts=list,of,ext
|
||||
ignore_hidden=yes
|
||||
same_type=yes
|
||||
same_series=yes
|
||||
directory_mode=recursive
|
||||
ignore_patterns=^~,^bak-,%.bak$
|
||||
|
||||
--]]
|
||||
|
||||
MAXENTRIES = 5000
|
||||
MAXDIRSTACK = 20
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local options = require 'mp.options'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
o = {
|
||||
disabled = false,
|
||||
images = true,
|
||||
videos = true,
|
||||
audio = true,
|
||||
additional_image_exts = "",
|
||||
additional_video_exts = "",
|
||||
additional_audio_exts = "",
|
||||
ignore_hidden = true,
|
||||
same_type = false,
|
||||
same_series = false,
|
||||
directory_mode = "ignore",
|
||||
ignore_patterns = ""
|
||||
}
|
||||
options.read_options(o, nil, function(list)
|
||||
split_option_exts(list.additional_video_exts, list.additional_audio_exts, list.additional_image_exts)
|
||||
if list.videos or list.additional_video_exts or
|
||||
list.audio or list.additional_audio_exts or
|
||||
list.images or list.additional_image_exts then
|
||||
create_extensions()
|
||||
end
|
||||
if list.directory_mode then
|
||||
validate_directory_mode()
|
||||
end
|
||||
end)
|
||||
|
||||
function Set (t)
|
||||
local set = {}
|
||||
for _, v in pairs(t) do set[v] = true end
|
||||
return set
|
||||
end
|
||||
|
||||
function SetUnion (a,b)
|
||||
for k in pairs(b) do a[k] = true end
|
||||
return a
|
||||
end
|
||||
|
||||
-- Returns first and last positions in string or past-to-end indices
|
||||
function FindOrPastTheEnd (string, pattern, start_at)
|
||||
local pos1, pos2 = string.find(string, pattern, start_at)
|
||||
return pos1 or #string + 1,
|
||||
pos2 or #string + 1
|
||||
end
|
||||
|
||||
function Split (list)
|
||||
local set = {}
|
||||
|
||||
local item_pos = 1
|
||||
local item = ""
|
||||
|
||||
while item_pos <= #list do
|
||||
local pos1, pos2 = FindOrPastTheEnd(list, "%%*,", item_pos)
|
||||
|
||||
local pattern_length = pos2 - pos1
|
||||
local is_comma_escaped = pattern_length % 2
|
||||
|
||||
local pos_before_escape = pos1 - 1
|
||||
local item_escape_count = pattern_length - is_comma_escaped
|
||||
|
||||
item = item .. string.sub(list, item_pos, pos_before_escape + item_escape_count)
|
||||
|
||||
if is_comma_escaped == 1 then
|
||||
item = item .. ","
|
||||
else
|
||||
set[item] = true
|
||||
item = ""
|
||||
end
|
||||
|
||||
item_pos = pos2 + 1
|
||||
end
|
||||
|
||||
set[item] = true
|
||||
|
||||
-- exclude empty items
|
||||
set[""] = nil
|
||||
|
||||
return set
|
||||
end
|
||||
|
||||
EXTENSIONS_VIDEO_DEFAULT = Set {
|
||||
'3g2', '3gp', 'avi', 'flv', 'm2ts', 'm4v', 'mj2', 'mkv', 'mov',
|
||||
'mp4', 'mpeg', 'mpg', 'ogv', 'rmvb', 'webm', 'wmv', 'y4m'
|
||||
}
|
||||
|
||||
EXTENSIONS_AUDIO_DEFAULT = Set {
|
||||
'aiff', 'ape', 'au', 'flac', 'm4a', 'mka', 'mp3', 'oga', 'ogg',
|
||||
'ogm', 'opus', 'wav', 'wma'
|
||||
}
|
||||
|
||||
EXTENSIONS_IMAGES_DEFAULT = Set {
|
||||
'avif', 'bmp', 'gif', 'j2k', 'jp2', 'jpeg', 'jpg', 'jxl', 'png',
|
||||
'svg', 'tga', 'tif', 'tiff', 'webp'
|
||||
}
|
||||
|
||||
function split_option_exts(video, audio, image)
|
||||
if video then o.additional_video_exts = Split(o.additional_video_exts) end
|
||||
if audio then o.additional_audio_exts = Split(o.additional_audio_exts) end
|
||||
if image then o.additional_image_exts = Split(o.additional_image_exts) end
|
||||
end
|
||||
split_option_exts(true, true, true)
|
||||
|
||||
function split_patterns()
|
||||
o.ignore_patterns = Split(o.ignore_patterns)
|
||||
end
|
||||
split_patterns()
|
||||
|
||||
function create_extensions()
|
||||
EXTENSIONS = {}
|
||||
EXTENSIONS_VIDEO = {}
|
||||
EXTENSIONS_AUDIO = {}
|
||||
EXTENSIONS_IMAGES = {}
|
||||
if o.videos then
|
||||
SetUnion(SetUnion(EXTENSIONS_VIDEO, EXTENSIONS_VIDEO_DEFAULT), o.additional_video_exts)
|
||||
SetUnion(EXTENSIONS, EXTENSIONS_VIDEO)
|
||||
end
|
||||
if o.audio then
|
||||
SetUnion(SetUnion(EXTENSIONS_AUDIO, EXTENSIONS_AUDIO_DEFAULT), o.additional_audio_exts)
|
||||
SetUnion(EXTENSIONS, EXTENSIONS_AUDIO)
|
||||
end
|
||||
if o.images then
|
||||
SetUnion(SetUnion(EXTENSIONS_IMAGES, EXTENSIONS_IMAGES_DEFAULT), o.additional_image_exts)
|
||||
SetUnion(EXTENSIONS, EXTENSIONS_IMAGES)
|
||||
end
|
||||
end
|
||||
create_extensions()
|
||||
|
||||
function validate_directory_mode()
|
||||
if o.directory_mode ~= "recursive" and o.directory_mode ~= "lazy" and o.directory_mode ~= "ignore" then
|
||||
o.directory_mode = nil
|
||||
end
|
||||
end
|
||||
validate_directory_mode()
|
||||
|
||||
function add_files(files)
|
||||
local oldcount = mp.get_property_number("playlist-count", 1)
|
||||
for i = 1, #files do
|
||||
mp.commandv("loadfile", files[i][1], "append")
|
||||
mp.commandv("playlist-move", oldcount + i - 1, files[i][2])
|
||||
end
|
||||
end
|
||||
|
||||
function get_extension(path)
|
||||
match = string.match(path, "%.([^%.]+)$" )
|
||||
if match == nil then
|
||||
return "nomatch"
|
||||
else
|
||||
return match
|
||||
end
|
||||
end
|
||||
|
||||
function get_filename_without_ext(filename)
|
||||
local idx = filename:match(".+()%.%w+$")
|
||||
if idx then
|
||||
filename = filename:sub(1, idx - 1)
|
||||
end
|
||||
return filename
|
||||
end
|
||||
|
||||
function utf8_char_bytes(str, i)
|
||||
local char_byte = str:byte(i)
|
||||
if char_byte < 0xC0 then
|
||||
return 1
|
||||
elseif char_byte < 0xE0 then
|
||||
return 2
|
||||
elseif char_byte < 0xF0 then
|
||||
return 3
|
||||
elseif char_byte < 0xF8 then
|
||||
return 4
|
||||
else
|
||||
return 1
|
||||
end
|
||||
end
|
||||
|
||||
function utf8_iter(str)
|
||||
local byte_start = 1
|
||||
return function()
|
||||
local start = byte_start
|
||||
if #str < start then return nil end
|
||||
local byte_count = utf8_char_bytes(str, start)
|
||||
byte_start = start + byte_count
|
||||
return start, str:sub(start, start + byte_count - 1)
|
||||
end
|
||||
end
|
||||
|
||||
function utf8_to_table(str)
|
||||
local t = {}
|
||||
for _, ch in utf8_iter(str) do
|
||||
t[#t + 1] = ch
|
||||
end
|
||||
return t
|
||||
end
|
||||
|
||||
function jaro(s1, s2)
|
||||
local match_window = math.floor(math.max(#s1, #s2) / 2.0) - 1
|
||||
local matches1 = {}
|
||||
local matches2 = {}
|
||||
|
||||
local m = 0;
|
||||
local t = 0;
|
||||
|
||||
for i = 0, #s1, 1 do
|
||||
local start = math.max(0, i - match_window)
|
||||
local final = math.min(i + match_window + 1, #s2)
|
||||
|
||||
for k = start, final, 1 do
|
||||
if not (matches2[k] or s1[i] ~= s2[k]) then
|
||||
matches1[i] = true
|
||||
matches2[k] = true
|
||||
m = m + 1
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if m == 0 then
|
||||
return 0.0
|
||||
end
|
||||
|
||||
local k = 0
|
||||
for i = 0, #s1, 1 do
|
||||
if matches1[i] then
|
||||
while not matches2[k] do
|
||||
k = k + 1
|
||||
end
|
||||
|
||||
if s1[i] ~= s2[k] then
|
||||
t = t + 1
|
||||
end
|
||||
|
||||
k = k + 1
|
||||
end
|
||||
end
|
||||
|
||||
t = t / 2.0
|
||||
|
||||
return (m / #s1 + m / #s2 + (m - t) / m) / 3.0
|
||||
end
|
||||
|
||||
function jaro_winkler_distance(s1, s2)
|
||||
if #s1 + #s2 == 0 then
|
||||
return 0.0
|
||||
end
|
||||
|
||||
if s1 == s2 then
|
||||
return 1.0
|
||||
end
|
||||
|
||||
s1 = utf8_to_table(s1)
|
||||
s2 = utf8_to_table(s2)
|
||||
|
||||
local d = jaro(s1, s2)
|
||||
local p = 0.1
|
||||
local l = 0;
|
||||
while (s1[l] == s2[l] and l < 4) do
|
||||
l = l + 1
|
||||
end
|
||||
|
||||
return d + l * p * (1 - d)
|
||||
end
|
||||
|
||||
function is_same_series(f1, f2)
|
||||
local f1, f2 = get_filename_without_ext(f1), get_filename_without_ext(f2)
|
||||
if f1 ~= f2 then
|
||||
-- by episode
|
||||
local sub1 = f1:gsub("^[%[%(]+.-[%]%)]+[%s%[]*", ""):match("(.-%D+)0*%d+")
|
||||
local sub2 = f2:gsub("^[%[%(]+.-[%]%)]+[%s%[]*", ""):match("(.-%D+)0*%d+")
|
||||
if sub1 and sub2 and sub1 == sub2 then
|
||||
return true
|
||||
end
|
||||
|
||||
-- by similarity
|
||||
local threshold = 0.8
|
||||
local similarity = jaro_winkler_distance(f1, f2)
|
||||
if similarity > threshold then
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
function is_ignored(file)
|
||||
for pattern, _ in pairs(o.ignore_patterns) do
|
||||
if string.match(file, pattern) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
table.filter = function(t, iter)
|
||||
for i = #t, 1, -1 do
|
||||
if not iter(t[i]) then
|
||||
table.remove(t, i)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
table.append = function(t1, t2)
|
||||
local t1_size = #t1
|
||||
for i = 1, #t2 do
|
||||
t1[t1_size + i] = t2[i]
|
||||
end
|
||||
end
|
||||
|
||||
----- winapi start -----
|
||||
-- in windows system, we can use the sorting function provided by the win32 API
|
||||
-- see https://learn.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-strcmplogicalw
|
||||
-- this function was taken from https://github.com/mpvnet-player/mpv.net/issues/575#issuecomment-1817413401
|
||||
local winapi = {}
|
||||
local is_windows = mp.get_property_native("platform") == "windows"
|
||||
|
||||
if is_windows then
|
||||
-- is_ffi_loaded is false usually means the mpv builds without luajit
|
||||
local is_ffi_loaded, ffi = pcall(require, "ffi")
|
||||
|
||||
if is_ffi_loaded then
|
||||
winapi = {
|
||||
ffi = ffi,
|
||||
C = ffi.C,
|
||||
CP_UTF8 = 65001,
|
||||
shlwapi = ffi.load("shlwapi"),
|
||||
}
|
||||
|
||||
-- ffi code from https://github.com/po5/thumbfast, Mozilla Public License Version 2.0
|
||||
ffi.cdef[[
|
||||
int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr,
|
||||
int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar);
|
||||
int __stdcall StrCmpLogicalW(wchar_t *psz1, wchar_t *psz2);
|
||||
]]
|
||||
|
||||
winapi.utf8_to_wide = function(utf8_str)
|
||||
if utf8_str then
|
||||
local utf16_len = winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, nil, 0)
|
||||
|
||||
if utf16_len > 0 then
|
||||
local utf16_str = winapi.ffi.new("wchar_t[?]", utf16_len)
|
||||
|
||||
if winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, utf16_str, utf16_len) > 0 then
|
||||
return utf16_str
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return ""
|
||||
end
|
||||
end
|
||||
end
|
||||
----- winapi end -----
|
||||
|
||||
function alphanumsort_windows(filenames)
|
||||
table.sort(filenames, function(a, b)
|
||||
local a_wide = winapi.utf8_to_wide(a)
|
||||
local b_wide = winapi.utf8_to_wide(b)
|
||||
return winapi.shlwapi.StrCmpLogicalW(a_wide, b_wide) == -1
|
||||
end)
|
||||
|
||||
return filenames
|
||||
end
|
||||
|
||||
-- alphanum sorting for humans in Lua
|
||||
-- http://notebook.kulchenko.com/algorithms/alphanumeric-natural-sorting-for-humans-in-lua
|
||||
function alphanumsort_lua(filenames)
|
||||
local function padnum(n, d)
|
||||
return #d > 0 and ("%03d%s%.12f"):format(#n, n, tonumber(d) / (10 ^ #d))
|
||||
or ("%03d%s"):format(#n, n)
|
||||
end
|
||||
|
||||
local tuples = {}
|
||||
for i, f in ipairs(filenames) do
|
||||
tuples[i] = {f:lower():gsub("0*(%d+)%.?(%d*)", padnum), f}
|
||||
end
|
||||
table.sort(tuples, function(a, b)
|
||||
return a[1] == b[1] and #b[2] < #a[2] or a[1] < b[1]
|
||||
end)
|
||||
for i, tuple in ipairs(tuples) do filenames[i] = tuple[2] end
|
||||
return filenames
|
||||
end
|
||||
|
||||
function alphanumsort(filenames)
|
||||
local is_ffi_loaded = pcall(require, "ffi")
|
||||
if is_windows and is_ffi_loaded then
|
||||
alphanumsort_windows(filenames)
|
||||
else
|
||||
alphanumsort_lua(filenames)
|
||||
end
|
||||
end
|
||||
|
||||
local autoloaded = nil
|
||||
local added_entries = {}
|
||||
local autoloaded_dir = nil
|
||||
|
||||
function scan_dir(path, current_file, dir_mode, separator, dir_depth, total_files, extensions)
|
||||
if dir_depth == MAXDIRSTACK then
|
||||
return
|
||||
end
|
||||
msg.trace("scanning: " .. path)
|
||||
local files = utils.readdir(path, "files") or {}
|
||||
local dirs = dir_mode ~= "ignore" and utils.readdir(path, "dirs") or {}
|
||||
local prefix = path == "." and "" or path
|
||||
table.filter(files, function (v)
|
||||
-- The current file could be a hidden file, ignoring it doesn't load other
|
||||
-- files from the current directory.
|
||||
local current = prefix .. v == current_file
|
||||
if o.ignore_hidden and not current and string.match(v, "^%.") then
|
||||
return false
|
||||
end
|
||||
if not current and is_ignored(v) then
|
||||
return false
|
||||
end
|
||||
|
||||
local ext = get_extension(v)
|
||||
if ext == nil then
|
||||
return false
|
||||
end
|
||||
local name = mp.get_property("filename")
|
||||
if o.same_series then
|
||||
local name = mp.get_property("filename")
|
||||
for ext, _ in pairs(extensions) do
|
||||
if name:match(ext .. "$") ~= nil and v ~= name and
|
||||
not is_same_series(name, v)
|
||||
then
|
||||
return false
|
||||
end
|
||||
end
|
||||
end
|
||||
return extensions[string.lower(ext)]
|
||||
end)
|
||||
table.filter(dirs, function(d)
|
||||
return not ((o.ignore_hidden and string.match(d, "^%.")))
|
||||
end)
|
||||
alphanumsort(files)
|
||||
alphanumsort(dirs)
|
||||
|
||||
for i, file in ipairs(files) do
|
||||
files[i] = prefix .. file
|
||||
end
|
||||
|
||||
table.append(total_files, files)
|
||||
if dir_mode == "recursive" then
|
||||
for _, dir in ipairs(dirs) do
|
||||
scan_dir(prefix .. dir .. separator, current_file, dir_mode,
|
||||
separator, dir_depth + 1, total_files, extensions)
|
||||
end
|
||||
else
|
||||
for i, dir in ipairs(dirs) do
|
||||
dirs[i] = prefix .. dir
|
||||
end
|
||||
table.append(total_files, dirs)
|
||||
end
|
||||
end
|
||||
|
||||
function find_and_add_entries()
|
||||
local path = mp.get_property("path", "")
|
||||
local dir, filename = utils.split_path(path)
|
||||
msg.trace(("dir: %s, filename: %s"):format(dir, filename))
|
||||
if o.disabled then
|
||||
msg.debug("stopping: autoload disabled")
|
||||
return
|
||||
elseif #dir == 0 then
|
||||
msg.debug("stopping: not a local path")
|
||||
return
|
||||
end
|
||||
|
||||
local pl_count = mp.get_property_number("playlist-count", 1)
|
||||
this_ext = get_extension(filename)
|
||||
-- check if this is a manually made playlist
|
||||
if (pl_count > 1 and autoloaded == nil) or
|
||||
(pl_count == 1 and EXTENSIONS[string.lower(this_ext)] == nil) then
|
||||
msg.debug("stopping: manually made playlist")
|
||||
return
|
||||
else
|
||||
if pl_count == 1 then
|
||||
autoloaded = true
|
||||
autoloaded_dir = dir
|
||||
added_entries = {}
|
||||
end
|
||||
end
|
||||
|
||||
local extensions = {}
|
||||
if o.same_type then
|
||||
if EXTENSIONS_VIDEO[string.lower(this_ext)] ~= nil then
|
||||
extensions = EXTENSIONS_VIDEO
|
||||
elseif EXTENSIONS_AUDIO[string.lower(this_ext)] ~= nil then
|
||||
extensions = EXTENSIONS_AUDIO
|
||||
else
|
||||
extensions = EXTENSIONS_IMAGES
|
||||
end
|
||||
else
|
||||
extensions = EXTENSIONS
|
||||
end
|
||||
|
||||
local pl = mp.get_property_native("playlist", {})
|
||||
local pl_current = mp.get_property_number("playlist-pos-1", 1)
|
||||
msg.trace(("playlist-pos-1: %s, playlist: %s"):format(pl_current,
|
||||
utils.to_string(pl)))
|
||||
|
||||
local files = {}
|
||||
do
|
||||
local dir_mode = o.directory_mode or mp.get_property("directory-mode", "lazy")
|
||||
local separator = mp.get_property_native("platform") == "windows" and "\\" or "/"
|
||||
scan_dir(autoloaded_dir, path, dir_mode, separator, 0, files, extensions)
|
||||
end
|
||||
|
||||
if next(files) == nil then
|
||||
msg.debug("no other files or directories in directory")
|
||||
return
|
||||
end
|
||||
|
||||
-- Find the current pl entry (dir+"/"+filename) in the sorted dir list
|
||||
local current
|
||||
for i = 1, #files do
|
||||
if files[i] == path then
|
||||
current = i
|
||||
break
|
||||
end
|
||||
end
|
||||
if current == nil then
|
||||
return
|
||||
end
|
||||
msg.trace("current file position in files: "..current)
|
||||
|
||||
-- treat already existing playlist entries, independent of how they got added
|
||||
-- as if they got added by autoload
|
||||
for _, entry in ipairs(pl) do
|
||||
added_entries[entry.filename] = true
|
||||
end
|
||||
|
||||
local append = {[-1] = {}, [1] = {}}
|
||||
for direction = -1, 1, 2 do -- 2 iterations, with direction = -1 and +1
|
||||
for i = 1, MAXENTRIES do
|
||||
local pos = current + i * direction
|
||||
local file = files[pos]
|
||||
if file == nil or file[1] == "." then
|
||||
break
|
||||
end
|
||||
|
||||
-- skip files that are/were already in the playlist
|
||||
if not added_entries[file] then
|
||||
if direction == -1 then
|
||||
msg.verbose("Prepending " .. file)
|
||||
table.insert(append[-1], 1, {file, pl_current + i * direction + 1})
|
||||
else
|
||||
msg.verbose("Adding " .. file)
|
||||
if pl_count > 1 then
|
||||
table.insert(append[1], {file, pl_current + i * direction - 1})
|
||||
else
|
||||
mp.commandv("loadfile", file, "append")
|
||||
end
|
||||
end
|
||||
end
|
||||
added_entries[file] = true
|
||||
end
|
||||
if pl_count == 1 and direction == -1 and #append[-1] > 0 then
|
||||
for i = 1, #append[-1] do
|
||||
mp.commandv("loadfile", append[-1][i][1], "append")
|
||||
end
|
||||
mp.commandv("playlist-move", 0, current)
|
||||
end
|
||||
end
|
||||
|
||||
if pl_count > 1 then
|
||||
add_files(append[1])
|
||||
add_files(append[-1])
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_event("start-file", find_and_add_entries)
|
||||
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020 joaquintorres
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -1,130 +0,0 @@
|
||||
# autosubsync-mpv
|
||||
|
||||
Automatic subtitle synchronization script for [mpv](https://wiki.archlinux.org/index.php/Mpv).
|
||||
|
||||
A demo can be viewed on <a target="_blank" href="https://www.youtube.com/watch?v=w1vwnUiF6Bc"><img src="https://user-images.githubusercontent.com/69171671/115097010-4bd13c80-9f17-11eb-83e9-2583658f73bc.png" width="80px"></a>
|
||||
|
||||
Supported backends:
|
||||
* [ffsubsync](https://github.com/smacke/ffsubsync)
|
||||
* [alass](https://github.com/kaegi/alass)
|
||||
|
||||
## Installation
|
||||
|
||||
0. Make sure you have mpv v0.33 or higher installed.
|
||||
```
|
||||
$ mpv --version
|
||||
```
|
||||
1. Install [FFmpeg](https://wiki.archlinux.org/index.php/FFmpeg):
|
||||
```
|
||||
$ pacman -S ffmpeg
|
||||
```
|
||||
Windows users have to manually install FFmpeg from [here](https://ffmpeg.zeranoe.com/builds/).
|
||||
2. Install your retiming program of choice,
|
||||
[ffsubsync](https://github.com/smacke/ffsubsync), [alass](https://github.com/kaegi/alass) or both:
|
||||
```
|
||||
$ pip install ffsubsync
|
||||
```
|
||||
```
|
||||
$ trizen -S alass-git # for Arch-based distros
|
||||
```
|
||||
|
||||
3. Download the add-on and save it to your mpv scripts folder.
|
||||
|
||||
| GNU/Linux | Windows |
|
||||
|---|---|
|
||||
| `~/.config/mpv/scripts` | `%AppData%\mpv\scripts\` |
|
||||
|
||||
To do it in one command:
|
||||
|
||||
```
|
||||
$ git clone 'https://github.com/Ajatt-Tools/autosubsync-mpv' ~/.config/mpv/scripts/autosubsync
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
You can skip this step if the add-on works out of the box.
|
||||
|
||||
Create a config file:
|
||||
|
||||
| GNU/Linux | Windows |
|
||||
|---|---|
|
||||
| `~/.config/mpv/script-opts/autosubsync.conf` | `%AppData%\mpv\script-opts\autosubsync.conf` |
|
||||
|
||||
Example config:
|
||||
|
||||
```
|
||||
# Absolute paths to the executables, if needed:
|
||||
|
||||
# 1. ffmpeg
|
||||
ffmpeg_path=C:/Program Files/ffmpeg/bin/ffmpeg.exe
|
||||
ffmpeg_path=/usr/bin/ffmpeg
|
||||
|
||||
# 2. ffsubsync
|
||||
ffsubsync_path=C:/Program Files/ffsubsync/ffsubsync.exe
|
||||
ffsubsync_path=/home/user/.local/bin/ffsubsync
|
||||
|
||||
# 3. alass
|
||||
alass_path=C:/Program Files/ffmpeg/bin/alass.exe
|
||||
alass_path=/usr/bin/alass
|
||||
|
||||
# Preferred retiming tool. Allowed options: 'ffsubsync', 'alass', 'ask'.
|
||||
# If set to 'ask', the add-on will ask to choose the tool every time:
|
||||
|
||||
# 1. Preferred tool for syncing to audio.
|
||||
audio_subsync_tool=ask
|
||||
audio_subsync_tool=ffsubsync
|
||||
audio_subsync_tool=alass
|
||||
|
||||
# 2. Preferred tool for syncing to another subtitle.
|
||||
altsub_subsync_tool=ask
|
||||
altsub_subsync_tool=ffsubsync
|
||||
altsub_subsync_tool=alass
|
||||
|
||||
# Unload old subs (yes,no)
|
||||
# After retiming, tell mpv to forget the original subtitle track.
|
||||
unload_old_sub=yes
|
||||
unload_old_sub=no
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
||||
* On Windows, you need to use forward slashes or double backslashes for your path.
|
||||
For example, `"C:\\Users\\YourPath\\Scripts\\ffsubsync"`
|
||||
or `"C:/Users/YourPath/Scripts/ffsubsync"`,
|
||||
or it might not work.
|
||||
|
||||
* On GNU/Linux you can use `which ffsubsync` to find out where it is.
|
||||
|
||||
## Usage
|
||||
|
||||
When you have an out of sync sub, press `n` to synchronize it.
|
||||
|
||||
`ffsubsync` can typically take up to about 20-30 seconds
|
||||
to synchronize (I've seen it take as much as 2 minutes
|
||||
with a very large file on a lower end computer), so it
|
||||
would probably be faster to find another, properly
|
||||
synchronized subtitle with `autosub` or `trueautosub`.
|
||||
Many times this is just not possible, as all available
|
||||
subs for your specific language are out of sync.
|
||||
|
||||
Take into account that using this script has the
|
||||
same limitations as `ffsubsync`, so subtitles that have
|
||||
a lot of extra text or are meant for an entirely different
|
||||
version of the video might not sync properly. `alass` is supposed
|
||||
to handle some edge cases better, but I haven't fully tested it yet,
|
||||
obtaining similar results with both.
|
||||
|
||||
Note that the script will create a new subtitle file, in the same folder
|
||||
as the original, with the `_retimed` suffix at the end.
|
||||
|
||||
## Issues and feedback
|
||||
|
||||
If you are having trouble getting it to work or you've found a bug,
|
||||
feel free to [join our community](https://tatsumoto-ren.github.io/blog/join-our-community.html) to ask directly.
|
||||
|
||||
Try to check if
|
||||
[ffsubsync](https://github.com/smacke/ffsubsync)
|
||||
or
|
||||
[alass](https://github.com/kaegi/alass)
|
||||
works properly outside of `mpv` first.
|
||||
If the retiming tool of choice isn't working, `autosubsync` will likely fail.
|
||||
@@ -1,559 +0,0 @@
|
||||
-- Usage:
|
||||
-- default keybinding: n
|
||||
-- add the following to your input.conf to change the default keybinding:
|
||||
-- keyname script_binding autosubsync-menu
|
||||
|
||||
local mp = require('mp')
|
||||
local utils = require('mp.utils')
|
||||
local mpopt = require('mp.options')
|
||||
local menu = require('menu')
|
||||
local sub = require('subtitle')
|
||||
local ref_selector
|
||||
local engine_selector
|
||||
local track_selector
|
||||
|
||||
-- Config
|
||||
-- Options can be changed here or in a separate config file.
|
||||
-- Config path: ~/.config/mpv/script-opts/autosubsync.conf
|
||||
local config = {
|
||||
-- Change the following lines if the locations of executables differ from the defaults
|
||||
-- If set to empty, the path will be guessed.
|
||||
ffmpeg_path = "",
|
||||
ffsubsync_path = "",
|
||||
alass_path = "",
|
||||
|
||||
-- Choose what tool to use. Allowed options: ffsubsync, alass, ask.
|
||||
-- If set to ask, the add-on will ask to choose the tool every time.
|
||||
audio_subsync_tool = "ask",
|
||||
altsub_subsync_tool = "ask",
|
||||
|
||||
-- After retiming, tell mpv to forget the original subtitle track.
|
||||
unload_old_sub = true,
|
||||
}
|
||||
mpopt.read_options(config, 'autosubsync')
|
||||
|
||||
local function is_empty(var)
|
||||
return var == nil or var == '' or (type(var) == 'table' and next(var) == nil)
|
||||
end
|
||||
|
||||
----- string
|
||||
local function replace(str, what, with)
|
||||
if is_empty(str) then return "" end
|
||||
if is_empty(what) then return str end
|
||||
if with == nil then with = "" end
|
||||
what = string.gsub(what, "[%(%)%.%+%-%*%?%[%]%^%$%%]", "%%%1")
|
||||
with = string.gsub(with, "[%%]", "%%%%")
|
||||
return string.gsub(str, what, with)
|
||||
end
|
||||
|
||||
local function esc_for_title(string)
|
||||
string = string:gsub('^[%._%-%s]*', '')
|
||||
:gsub('%.%w+$', '')
|
||||
return string
|
||||
end
|
||||
|
||||
local function esc_for_code(trackCode)
|
||||
if trackCode:find("PGS") then trackCode = "PGS"
|
||||
elseif trackCode:find("SUBRIP") then trackCode = "SRT"
|
||||
elseif trackCode:find("VTT") then trackCode = "VTT"
|
||||
elseif trackCode:find("DVD_SUB") then trackCode = "VOB_SUB"
|
||||
elseif trackCode:find("DVB_SUB") then trackCode = "DVB_SUB"
|
||||
elseif trackCode:find("DVB_TELE") then trackCode = "TELETEXT"
|
||||
elseif trackCode:find("ARIB") then trackCode = "ARIB"
|
||||
end
|
||||
return trackCode
|
||||
end
|
||||
|
||||
-- Snippet borrowed from stackoverflow to get the operating system
|
||||
-- originally found at: https://stackoverflow.com/a/30960054
|
||||
local os_name = (function()
|
||||
if os.getenv("HOME") == nil then
|
||||
return function()
|
||||
return "Windows"
|
||||
end
|
||||
else
|
||||
return function()
|
||||
return "*nix"
|
||||
end
|
||||
end
|
||||
end)()
|
||||
|
||||
local os_temp = (function()
|
||||
if os_name() == "Windows" then
|
||||
return function()
|
||||
return os.getenv('TEMP')
|
||||
end
|
||||
else
|
||||
return function()
|
||||
return '/tmp/'
|
||||
end
|
||||
end
|
||||
end)()
|
||||
|
||||
-- Courtesy of https://stackoverflow.com/questions/4990990/check-if-a-file-exists-with-lua
|
||||
local function file_exists(filepath)
|
||||
if not filepath then
|
||||
return false
|
||||
end
|
||||
local f = io.open(filepath, "r")
|
||||
if f ~= nil then
|
||||
io.close(f)
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
local function find_executable(name)
|
||||
local os_path = os.getenv("PATH") or ""
|
||||
local fallback_path = utils.join_path("/usr/bin", name)
|
||||
local exec_path
|
||||
for path in os_path:gmatch("[^:]+") do
|
||||
exec_path = utils.join_path(path, name)
|
||||
if file_exists(exec_path) then
|
||||
return exec_path
|
||||
end
|
||||
end
|
||||
return fallback_path
|
||||
end
|
||||
|
||||
local function notify(message, level, duration)
|
||||
level = level or 'info'
|
||||
duration = duration or 1
|
||||
mp.msg[level](message)
|
||||
mp.osd_message(message, duration)
|
||||
end
|
||||
|
||||
local function subprocess(args)
|
||||
return mp.command_native {
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = args
|
||||
}
|
||||
end
|
||||
|
||||
local url_decode = function(url)
|
||||
local function hex_to_char(x)
|
||||
return string.char(tonumber(x, 16))
|
||||
end
|
||||
if url ~= nil then
|
||||
url = url:gsub("^file://", "")
|
||||
url = url:gsub("+", " ")
|
||||
url = url:gsub("%%(%x%x)", hex_to_char)
|
||||
return url
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function get_loaded_tracks(track_type)
|
||||
local result = {}
|
||||
local track_list = mp.get_property_native('track-list')
|
||||
for _, track in pairs(track_list) do
|
||||
if track.type == track_type then
|
||||
track['external-filename'] = track.external and url_decode(track['external-filename'])
|
||||
table.insert(result, track)
|
||||
end
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
local function get_active_track(track_type)
|
||||
local track_list = mp.get_property_native('track-list')
|
||||
for num, track in ipairs(track_list) do
|
||||
if track.type == track_type and track.selected == true then
|
||||
if track.external then
|
||||
track['external-filename'] = url_decode(track['external-filename'])
|
||||
end
|
||||
if not (track_type == 'sub' and track.id == mp.get_property_native('secondary-sid')) then
|
||||
return num, track
|
||||
end
|
||||
end
|
||||
end
|
||||
return notify(string.format("错误: 没有选择类型为 '%s' 的轨道", track_type), "error", 3)
|
||||
end
|
||||
|
||||
local function remove_extension(filename)
|
||||
return filename:gsub('%.%w+$', '')
|
||||
end
|
||||
|
||||
local function get_extension(filename)
|
||||
return filename:match("^.+(%.%w+)$")
|
||||
end
|
||||
|
||||
local function startswith(str, prefix)
|
||||
return string.sub(str, 1, string.len(prefix)) == prefix
|
||||
end
|
||||
|
||||
local function mkfp_retimed(sub_path)
|
||||
if not startswith(sub_path, os_temp()) then
|
||||
return table.concat { remove_extension(sub_path), '_retimed', get_extension(sub_path) }
|
||||
else
|
||||
return table.concat { remove_extension(mp.get_property("path")), '_retimed', get_extension(sub_path) }
|
||||
end
|
||||
end
|
||||
|
||||
local function engine_is_set()
|
||||
local subsync_tool = ref_selector:get_subsync_tool()
|
||||
if is_empty(subsync_tool) or subsync_tool == "ask" then
|
||||
return false
|
||||
else
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
local function extract_to_file(subtitle_track)
|
||||
local codec_ext_map = { subrip = "srt", ass = "ass" }
|
||||
local ext = codec_ext_map[subtitle_track['codec']]
|
||||
if ext == nil then
|
||||
return notify(string.format("错误: 不支持的格式: %s", subtitle_track['codec']), "error", 3)
|
||||
end
|
||||
local temp_sub_fp = utils.join_path(os_temp(), 'autosubsync_extracted.' .. ext)
|
||||
notify("提取内封字幕...", nil, 3)
|
||||
local screenx, screeny, aspect = mp.get_osd_size()
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
local ret = subprocess {
|
||||
config.ffmpeg_path,
|
||||
"-hide_banner",
|
||||
"-nostdin",
|
||||
"-y",
|
||||
"-loglevel", "quiet",
|
||||
"-an",
|
||||
"-vn",
|
||||
"-i", mp.get_property("path"),
|
||||
"-map", "0:" .. (subtitle_track and subtitle_track['ff-index'] or 's'),
|
||||
"-f", ext,
|
||||
temp_sub_fp
|
||||
}
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
if ret == nil or ret.status ~= 0 then
|
||||
return notify("无法提取内封字幕.\n请先确保在脚本配置文件中为 ffmpeg 指定了正确的路径\n并确保视频有内封字幕.", "error", 7)
|
||||
end
|
||||
return temp_sub_fp
|
||||
end
|
||||
|
||||
local function sync_subtitles(ref_sub_path)
|
||||
local reference_file_path = ref_sub_path or mp.get_property("path")
|
||||
local _, sub_track = get_active_track('sub')
|
||||
if sub_track == nil then
|
||||
return
|
||||
end
|
||||
local subtitle_path = sub_track.external and sub_track['external-filename'] or extract_to_file(sub_track)
|
||||
local engine_name = engine_selector:get_engine_name()
|
||||
local engine_path = config[engine_name .. '_path']
|
||||
|
||||
if not file_exists(subtitle_path) then
|
||||
return notify(
|
||||
table.concat {
|
||||
"字幕同步失败:\n无法找到 ",
|
||||
subtitle_path or "外部字幕文件."
|
||||
},
|
||||
"error",
|
||||
3
|
||||
)
|
||||
end
|
||||
|
||||
local retimed_subtitle_path = mkfp_retimed(subtitle_path)
|
||||
|
||||
notify(string.format("开始 %s...", engine_name), nil, 2)
|
||||
|
||||
local ret
|
||||
local screenx, screeny, aspect = mp.get_osd_size()
|
||||
if engine_name == "ffsubsync" then
|
||||
local args = { config.ffsubsync_path, reference_file_path, "-i", subtitle_path, "-o", retimed_subtitle_path }
|
||||
if not ref_sub_path then
|
||||
table.insert(args, '--reference-stream')
|
||||
table.insert(args, '0:' .. get_active_track('audio'))
|
||||
end
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
ret = subprocess(args)
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
else
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
ret = subprocess { config.alass_path, reference_file_path, subtitle_path, retimed_subtitle_path }
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
end
|
||||
|
||||
if ret == nil then
|
||||
return notify("解析失败或没有传递参数.", "fatal", 3)
|
||||
end
|
||||
|
||||
if ret.status == 0 then
|
||||
local old_sid = mp.get_property("sid")
|
||||
if mp.commandv("sub_add", retimed_subtitle_path) then
|
||||
notify("字幕同步.", nil, 2)
|
||||
mp.set_property("sub-delay", 0)
|
||||
if config.unload_old_sub then
|
||||
mp.commandv("sub_remove", old_sid)
|
||||
end
|
||||
else
|
||||
notify("错误: 不能添加同步字幕.", "error", 3)
|
||||
end
|
||||
else
|
||||
notify(string.format("字幕同步失败.\n请确保在脚本配置文件中为 %s 指定了正确的路径.\n或音轨提取失败", engine_name), "error", 3)
|
||||
end
|
||||
end
|
||||
|
||||
local function sync_to_subtitle()
|
||||
local selected_track = track_selector:get_selected_track()
|
||||
|
||||
if selected_track and selected_track.external then
|
||||
sync_subtitles(selected_track['external-filename'])
|
||||
else
|
||||
local temp_sub_fp = extract_to_file(selected_track)
|
||||
if temp_sub_fp then
|
||||
sync_subtitles(temp_sub_fp)
|
||||
os.remove(temp_sub_fp)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function sync_to_manual_offset()
|
||||
local _, track = get_active_track('sub')
|
||||
local sub_delay = tonumber(mp.get_property("sub-delay"))
|
||||
if tonumber(sub_delay) == 0 then
|
||||
return notify("没有手动调整时轴,什么都做不了!", "error", 7)
|
||||
end
|
||||
local file_path = track.external and track['external-filename'] or extract_to_file(track)
|
||||
if file_path == nil then
|
||||
return
|
||||
end
|
||||
|
||||
local ext = get_extension(file_path)
|
||||
local codec_parser_map = { ass = sub.ASS, subrip = sub.SRT }
|
||||
local parser = codec_parser_map[track['codec']]
|
||||
if parser == nil then
|
||||
return notify(string.format("错误: 不支持的格式: %s", track['codec']), "error", 3)
|
||||
end
|
||||
local s = parser:populate(file_path)
|
||||
s:shift_timing(sub_delay)
|
||||
if track.external == false then
|
||||
os.remove(file_path)
|
||||
s.filename = mp.get_property("filename/no-ext") .. "_manual_timing" .. ext
|
||||
else
|
||||
s.filename = remove_extension(s.filename) .. '_manual_timing' .. ext
|
||||
end
|
||||
s:save()
|
||||
mp.commandv("sub_add", s.filename)
|
||||
if config.unload_old_sub then
|
||||
mp.commandv("sub_remove", track.id)
|
||||
end
|
||||
mp.set_property("sub-delay", 0)
|
||||
return notify(string.format("手动同步保存,加载 '%s'", s.filename), "info", 7)
|
||||
end
|
||||
|
||||
------------------------------------------------------------
|
||||
-- Menu actions & bindings
|
||||
|
||||
ref_selector = menu:new {
|
||||
items = { '与音频同步', '与其他字幕同步', '保存当前时轴', '退出' },
|
||||
last_choice = 'audio',
|
||||
pos_x = 50,
|
||||
pos_y = 50,
|
||||
rect_width = 400,
|
||||
text_color = 'fff5da',
|
||||
border_color = '2f1728',
|
||||
active_color = 'ff6b71',
|
||||
inactive_color = 'fff5da',
|
||||
}
|
||||
|
||||
function ref_selector:get_keybindings()
|
||||
return {
|
||||
{ key = 'h', fn = function() self:close() end },
|
||||
{ key = 'j', fn = function() self:down() end },
|
||||
{ key = 'k', fn = function() self:up() end },
|
||||
{ key = 'l', fn = function() self:act() end },
|
||||
{ key = 'down', fn = function() self:down() end },
|
||||
{ key = 'up', fn = function() self:up() end },
|
||||
{ key = 'Enter', fn = function() self:act() end },
|
||||
{ key = 'ESC', fn = function() self:close() end },
|
||||
{ key = 'n', fn = function() self:close() end },
|
||||
{ key = 'WHEEL_DOWN', fn = function() self:down() end },
|
||||
{ key = 'WHEEL_UP', fn = function() self:up() end },
|
||||
{ key = 'MBTN_LEFT', fn = function() self:act() end },
|
||||
{ key = 'MBTN_RIGHT', fn = function() self:close() end },
|
||||
}
|
||||
end
|
||||
|
||||
function ref_selector:new(o)
|
||||
self.__index = self
|
||||
o = o or {}
|
||||
return setmetatable(o, self)
|
||||
end
|
||||
|
||||
function ref_selector:get_ref()
|
||||
if self.selected == 1 then
|
||||
return 'audio'
|
||||
elseif self.selected == 2 then
|
||||
return 'sub'
|
||||
else
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
function ref_selector:get_subsync_tool()
|
||||
if self.selected == 1 then
|
||||
return config.audio_subsync_tool
|
||||
elseif self.selected == 2 then
|
||||
return config.altsub_subsync_tool
|
||||
end
|
||||
end
|
||||
|
||||
function ref_selector:act()
|
||||
self:close()
|
||||
|
||||
if self.selected == 3 then
|
||||
return sync_to_manual_offset()
|
||||
end
|
||||
if self.selected == 4 then
|
||||
return
|
||||
end
|
||||
|
||||
engine_selector:init()
|
||||
end
|
||||
|
||||
function ref_selector:call_subsync()
|
||||
if self.selected == 1 then
|
||||
sync_subtitles()
|
||||
elseif self.selected == 2 then
|
||||
sync_to_subtitle()
|
||||
elseif self.selected == 3 then
|
||||
sync_to_manual_offset()
|
||||
end
|
||||
end
|
||||
|
||||
function ref_selector:open()
|
||||
self.selected = 1
|
||||
for _, val in pairs(self:get_keybindings()) do
|
||||
mp.add_forced_key_binding(val.key, val.key, val.fn)
|
||||
end
|
||||
self:draw()
|
||||
end
|
||||
|
||||
function ref_selector:close()
|
||||
for _, val in pairs(self:get_keybindings()) do
|
||||
mp.remove_key_binding(val.key)
|
||||
end
|
||||
self:erase()
|
||||
end
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
-- Engine selector
|
||||
|
||||
engine_selector = ref_selector:new {
|
||||
items = { 'ffsubsync', 'alass', '退出' },
|
||||
last_choice = 'ffsubsync',
|
||||
}
|
||||
|
||||
function engine_selector:init()
|
||||
if not engine_is_set() then
|
||||
engine_selector:open()
|
||||
else
|
||||
track_selector:init()
|
||||
end
|
||||
end
|
||||
|
||||
function engine_selector:get_engine_name()
|
||||
return engine_is_set() and ref_selector:get_subsync_tool() or self.last_choice
|
||||
end
|
||||
|
||||
function engine_selector:act()
|
||||
self:close()
|
||||
|
||||
if self.selected == 1 then
|
||||
self.last_choice = 'ffsubsync'
|
||||
elseif self.selected == 2 then
|
||||
self.last_choice = 'alass'
|
||||
elseif self.selected == 3 then
|
||||
return
|
||||
end
|
||||
|
||||
track_selector:init()
|
||||
end
|
||||
|
||||
------------------------------------------------------------
|
||||
-- Track selector
|
||||
|
||||
track_selector = ref_selector:new { }
|
||||
|
||||
function track_selector:init()
|
||||
self.selected = 0
|
||||
|
||||
if ref_selector:get_ref() == 'audio' then
|
||||
return ref_selector:call_subsync()
|
||||
end
|
||||
|
||||
self.all_sub_tracks = get_loaded_tracks(ref_selector:get_ref())
|
||||
self.tracks = {}
|
||||
self.items = {}
|
||||
|
||||
local filename = mp.get_property_native('filename/no-ext')
|
||||
for _, track in ipairs(self.all_sub_tracks) do
|
||||
local supported_format = true
|
||||
if track.external then
|
||||
local ext = get_extension(track['external-filename'])
|
||||
if ext ~= '.srt' and ext ~= '.ass' then
|
||||
supported_format = false
|
||||
end
|
||||
end
|
||||
|
||||
if not track.selected and supported_format then
|
||||
table.insert(self.tracks, track)
|
||||
table.insert(
|
||||
self.items,
|
||||
string.format(
|
||||
"%s #%s - %s%s%s",
|
||||
(track.external and 'External' or 'Internal'),
|
||||
track['id'],
|
||||
(track.lang or (track.title and
|
||||
esc_for_title(replace(track.title, filename, '')) or 'unknown')),
|
||||
(track.codec and '[' .. esc_for_code(track.codec:upper()) .. ']' or ''),
|
||||
(track.selected and ' (active)' or '')
|
||||
)
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
if #self.items == 0 then
|
||||
notify("没有找到受支持的字幕轨道.", "warn", 5)
|
||||
return
|
||||
end
|
||||
|
||||
table.insert(self.items, "退出")
|
||||
self:open()
|
||||
end
|
||||
|
||||
function track_selector:get_selected_track()
|
||||
if self.selected < 1 then
|
||||
return nil
|
||||
end
|
||||
return self.tracks[self.selected]
|
||||
end
|
||||
|
||||
function track_selector:act()
|
||||
self:close()
|
||||
|
||||
if self.selected == #self.items then
|
||||
return
|
||||
end
|
||||
|
||||
ref_selector:call_subsync()
|
||||
end
|
||||
|
||||
------------------------------------------------------------
|
||||
-- Initialize the addon
|
||||
|
||||
local function init()
|
||||
for _, executable in pairs { 'ffmpeg', 'ffsubsync', 'alass' } do
|
||||
local config_key = executable .. '_path'
|
||||
config[config_key] = is_empty(config[config_key]) and find_executable(executable) or config[config_key]
|
||||
end
|
||||
end
|
||||
|
||||
------------------------------------------------------------
|
||||
-- Entry point
|
||||
|
||||
init()
|
||||
mp.add_key_binding("n", "autosubsync-menu", function() ref_selector:open() end)
|
||||
@@ -1 +0,0 @@
|
||||
require('autosubsync')
|
||||
@@ -1,107 +0,0 @@
|
||||
------------------------------------------------------------
|
||||
-- Menu visuals
|
||||
|
||||
local mp = require('mp')
|
||||
local assdraw = require('mp.assdraw')
|
||||
local Menu = assdraw.ass_new()
|
||||
|
||||
function Menu:new(o)
|
||||
self.__index = self
|
||||
o = o or {}
|
||||
o.selected = o.selected or 1
|
||||
o.canvas_width = o.canvas_width or 1280
|
||||
o.canvas_height = o.canvas_height or 720
|
||||
o.pos_x = o.pos_x or 0
|
||||
o.pos_y = o.pos_y or 0
|
||||
o.rect_width = o.rect_width or 320
|
||||
o.rect_height = o.rect_height or 40
|
||||
o.active_color = o.active_color or 'ffffff'
|
||||
o.inactive_color = o.inactive_color or 'aaaaaa'
|
||||
o.border_color = o.border_color or '000000'
|
||||
o.text_color = o.text_color or 'ffffff'
|
||||
|
||||
return setmetatable(o, self)
|
||||
end
|
||||
|
||||
function Menu:set_position(x, y)
|
||||
self.pos_x = x
|
||||
self.pos_y = y
|
||||
end
|
||||
|
||||
function Menu:font_size(size)
|
||||
self:append(string.format([[{\fs%s}]], size))
|
||||
end
|
||||
|
||||
function Menu:set_text_color(code)
|
||||
self:append(string.format("{\\1c&H%s%s%s&\\1a&H05&}", code:sub(5, 6), code:sub(3, 4), code:sub(1, 2)))
|
||||
end
|
||||
|
||||
function Menu:set_border_color(code)
|
||||
self:append(string.format("{\\3c&H%s%s%s&}", code:sub(5, 6), code:sub(3, 4), code:sub(1, 2)))
|
||||
end
|
||||
|
||||
function Menu:apply_text_color()
|
||||
self:set_border_color(self.border_color)
|
||||
self:set_text_color(self.text_color)
|
||||
end
|
||||
|
||||
function Menu:apply_rect_color(i)
|
||||
self:set_border_color(self.border_color)
|
||||
if i == self.selected then
|
||||
self:set_text_color(self.active_color)
|
||||
else
|
||||
self:set_text_color(self.inactive_color)
|
||||
end
|
||||
end
|
||||
|
||||
function Menu:draw_text(i)
|
||||
local padding = 5
|
||||
local font_size = 25
|
||||
|
||||
self:new_event()
|
||||
self:pos(self.pos_x + padding, self.pos_y + self.rect_height * (i - 1) + padding)
|
||||
self:font_size(font_size)
|
||||
self:apply_text_color(i)
|
||||
self:append(self.items[i])
|
||||
end
|
||||
|
||||
function Menu:draw_item(i)
|
||||
self:new_event()
|
||||
self:pos(self.pos_x, self.pos_y)
|
||||
self:apply_rect_color(i)
|
||||
self:draw_start()
|
||||
self:rect_cw(0, 0 + (i - 1) * self.rect_height, self.rect_width, i * self.rect_height)
|
||||
self:draw_stop()
|
||||
self:draw_text(i)
|
||||
end
|
||||
|
||||
function Menu:draw()
|
||||
self.text = ''
|
||||
for i, _ in ipairs(self.items) do
|
||||
self:draw_item(i)
|
||||
end
|
||||
|
||||
mp.set_osd_ass(self.canvas_width, self.canvas_height, self.text)
|
||||
end
|
||||
|
||||
function Menu:erase()
|
||||
mp.set_osd_ass(self.canvas_width, self.canvas_height, '')
|
||||
end
|
||||
|
||||
function Menu:up()
|
||||
self.selected = self.selected - 1
|
||||
if self.selected == 0 then
|
||||
self.selected = #self.items
|
||||
end
|
||||
self:draw()
|
||||
end
|
||||
|
||||
function Menu:down()
|
||||
self.selected = self.selected + 1
|
||||
if self.selected > #self.items then
|
||||
self.selected = 1
|
||||
end
|
||||
self:draw()
|
||||
end
|
||||
|
||||
return Menu
|
||||
@@ -1,276 +0,0 @@
|
||||
local P = {}
|
||||
|
||||
local TimeStamp = {}
|
||||
local TimeStamp_mt = { __index = TimeStamp }
|
||||
function TimeStamp:new(hours, minutes, seconds)
|
||||
local new = {}
|
||||
new.hours = hours
|
||||
new.minutes = minutes
|
||||
new.seconds = seconds
|
||||
return setmetatable(new, TimeStamp_mt)
|
||||
end
|
||||
|
||||
function TimeStamp.toTimeStamp(seconds)
|
||||
local diff, h, m, s = seconds, 0, 0, 0
|
||||
h = math.floor(diff / 3600)
|
||||
diff = diff - (h * 3600)
|
||||
m = math.floor(diff / 60)
|
||||
diff = diff - (m * 60)
|
||||
s = diff
|
||||
return TimeStamp:new(h, m, s)
|
||||
end
|
||||
|
||||
function TimeStamp:toSeconds()
|
||||
return (3600 * self.hours) + (60 * self.minutes) + self.seconds
|
||||
end
|
||||
|
||||
function TimeStamp:adjustTime(seconds)
|
||||
return self.toTimeStamp(self:toSeconds() + seconds)
|
||||
end
|
||||
|
||||
function TimeStamp:toString(decimal_symbol)
|
||||
local seconds_fmt = string.format("%06.3f", self.seconds):gsub("%.", decimal_symbol)
|
||||
return string.format("%02d:%02d:%s", self.hours, self.minutes, seconds_fmt)
|
||||
end
|
||||
|
||||
function TimeStamp.to_seconds(seconds, milliseconds)
|
||||
return tonumber(string.format("%s.%s", seconds, milliseconds))
|
||||
end
|
||||
|
||||
local AbstractSubtitle = {}
|
||||
local AbstractSubtitle_mt = { __index = AbstractSubtitle }
|
||||
|
||||
function AbstractSubtitle:create()
|
||||
local new = {}
|
||||
return setmetatable(new, AbstractSubtitle_mt)
|
||||
end
|
||||
|
||||
function AbstractSubtitle:save()
|
||||
print(string.format("Writing '%s' to file..", self.filename))
|
||||
local f = io.open(self.filename, 'w')
|
||||
f:write(self:toString())
|
||||
f:close()
|
||||
end
|
||||
|
||||
-- strip Byte Order Mark from file, if it's present
|
||||
function AbstractSubtitle:sanitize(line)
|
||||
local bom_table = { 0xEF, 0xBB, 0xBF } -- TODO maybe add other ones (like UTF-16)
|
||||
local function has_bom()
|
||||
for i = 1, #bom_table do
|
||||
if i > #line then return false end
|
||||
local ch, byte = line:sub(i, i), line:byte(i, i)
|
||||
if byte ~= bom_table[i] then return false end
|
||||
end
|
||||
return true
|
||||
end
|
||||
return has_bom() and string.sub(line, #bom_table + 1) or line
|
||||
end
|
||||
|
||||
local function trim(s)
|
||||
return s:match "^%s*(.-)%s*$"
|
||||
end
|
||||
|
||||
function AbstractSubtitle:parse_file(filename)
|
||||
local lines = {}
|
||||
for line in io.lines(filename) do
|
||||
if #lines == 0 then line = self:sanitize(line) end
|
||||
line = line:gsub('\r\n?', '') -- make sure there's no carriage return
|
||||
line = trim(line)
|
||||
table.insert(lines, line)
|
||||
end
|
||||
return lines
|
||||
end
|
||||
|
||||
function AbstractSubtitle:shift_timing(diff_seconds)
|
||||
for _, entry in pairs(self.entries) do
|
||||
if self.valid_entry(entry) then
|
||||
entry.start_time = entry.start_time:adjustTime(diff_seconds)
|
||||
entry.end_time = entry.end_time:adjustTime(diff_seconds)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function AbstractSubtitle.valid_entry(entry)
|
||||
return entry ~= nil
|
||||
end
|
||||
|
||||
local function inheritsFrom (baseClass)
|
||||
local new_class = {}
|
||||
local class_mt = { __index = new_class }
|
||||
|
||||
function new_class:create(filename)
|
||||
local instance = {
|
||||
filename = filename,
|
||||
language = nil,
|
||||
header = nil, -- will be empty for srt, some stuff for ass
|
||||
entries = {} -- list of entries
|
||||
}
|
||||
setmetatable(instance, class_mt)
|
||||
return instance
|
||||
end
|
||||
|
||||
if baseClass then
|
||||
setmetatable(new_class, { __index = baseClass })
|
||||
end
|
||||
return new_class
|
||||
end
|
||||
|
||||
local SRT = inheritsFrom(AbstractSubtitle)
|
||||
function SRT.entry()
|
||||
return { index = nil, start_time = nil, end_time = nil, text = {} }
|
||||
end
|
||||
|
||||
function SRT:populate(filename)
|
||||
local timestamp_fmt = "^(%d+):(%d+):(%d+),(%d+) %-%-> (%d+):(%d+):(%d+),(%d+)$"
|
||||
local function parse_timestamp(timestamp)
|
||||
local function to_seconds(seconds, milliseconds)
|
||||
return tonumber(string.format("%s.%s", seconds, milliseconds))
|
||||
end
|
||||
local _, _, from_h, from_m, from_s, from_ms, to_h, to_m, to_s, to_ms = timestamp:find(timestamp_fmt)
|
||||
return TimeStamp:new(from_h, from_m, to_seconds(from_s, from_ms)), TimeStamp:new(to_h, to_m, to_seconds(to_s, to_ms))
|
||||
end
|
||||
|
||||
local new = self:create(filename)
|
||||
local entry = self.entry()
|
||||
local f_idx, idx = 1, 1
|
||||
for _, line in pairs(self:parse_file(filename)) do
|
||||
if idx == 1 and #line > 0 then
|
||||
assert(line:match("^%d+$"), string.format("SRT FORMAT ERROR (line %d): expected a number but got '%s'", f_idx, line))
|
||||
entry.index = line
|
||||
elseif idx == 2 then
|
||||
assert(line:match("^%d+:%d+:%d+,%d+ %-%-> %d+:%d+:%d+,%d+$"), string.format("SRT FORMAT ERROR (line %d): expected a timecode string but got '%s'", f_idx, line))
|
||||
local t_start, t_end = parse_timestamp(line)
|
||||
entry.start_time, entry.end_time = t_start, t_end
|
||||
else
|
||||
if #line == 0 then
|
||||
-- end of text
|
||||
if entry.index ~= nil then
|
||||
table.insert(new.entries, entry)
|
||||
end
|
||||
entry = SRT.entry()
|
||||
idx = 0
|
||||
else
|
||||
table.insert(entry.text, line)
|
||||
end
|
||||
end
|
||||
idx = idx + 1
|
||||
f_idx = f_idx + 1
|
||||
end
|
||||
return new
|
||||
end
|
||||
|
||||
function SRT:toString()
|
||||
local stringbuilder = {}
|
||||
local function append(s)
|
||||
table.insert(stringbuilder, s)
|
||||
end
|
||||
for _, entry in pairs(self.entries) do
|
||||
append(entry.index)
|
||||
local timestamp_string = string.format("%s --> %s", entry.start_time:toString(","), entry.end_time:toString(","))
|
||||
append(timestamp_string)
|
||||
if type(entry.text) == 'table' then
|
||||
append(table.concat(entry.text, "\n"))
|
||||
else append(entry.text) end
|
||||
append('')
|
||||
end
|
||||
return table.concat(stringbuilder, '\n')
|
||||
end
|
||||
|
||||
local ASS = inheritsFrom(AbstractSubtitle)
|
||||
ASS.header_mapper = { ["Start"] = "start_time", ["End"] = "end_time" }
|
||||
|
||||
function ASS.valid_entry(entry)
|
||||
return entry['type'] ~= nil
|
||||
end
|
||||
|
||||
function ASS:toString()
|
||||
local stringbuilder = {}
|
||||
local function append(s) table.insert(stringbuilder, s) end
|
||||
append(self.header)
|
||||
append('[Events]')
|
||||
for i = 1, #self.entries do
|
||||
if i == 1 then
|
||||
-- stringbuilder for events header
|
||||
local event_sb = {};
|
||||
for _, v in pairs(self.event_header) do table.insert(event_sb, v) end
|
||||
append(string.format("Format: %s", table.concat(event_sb, ", ")))
|
||||
end
|
||||
local entry = self.entries[i]
|
||||
local entry_sb = {}
|
||||
for _, col in pairs(self.event_header) do
|
||||
local value = entry[col]
|
||||
local timestamp_entry_column = self.header_mapper[col]
|
||||
if timestamp_entry_column then
|
||||
value = entry[timestamp_entry_column]:toString(".")
|
||||
end
|
||||
table.insert(entry_sb, value)
|
||||
end
|
||||
append(string.format("%s: %s", entry['type'], table.concat(entry_sb, ",")))
|
||||
end
|
||||
return table.concat(stringbuilder, '\n')
|
||||
end
|
||||
|
||||
function ASS:populate(filename, language)
|
||||
local header, events, parser = {}, {}, nil
|
||||
for _, line in pairs(self:parse_file(filename)) do
|
||||
local _, _, event = string.find(line, "^%[([^%]]+)%]%s*$")
|
||||
if event then
|
||||
if event == "Events" then
|
||||
parser = function(x) table.insert(events, x) end
|
||||
else
|
||||
parser = function(x) table.insert(header, x) end
|
||||
parser(line)
|
||||
end
|
||||
else
|
||||
parser(line)
|
||||
end
|
||||
end
|
||||
-- create subtitle instance
|
||||
local ev_regex = "^(%a+):%s(.+)$"
|
||||
local function parse_event(header_columns, ev)
|
||||
local function create_timestamp(timestamp_str)
|
||||
local timestamp_fmt = "^(%d+):(%d+):(%d+).(%d+)"
|
||||
local _, _, h, m, s, ms = timestamp_str:find(timestamp_fmt)
|
||||
return TimeStamp:new(h, m, TimeStamp.to_seconds(s, ms))
|
||||
end
|
||||
local new_event = {}
|
||||
local _, _, ev_type, ev_values = string.find(ev, ev_regex)
|
||||
new_event['type'] = ev_type
|
||||
-- skipping last column, since that's the text, which can contain commas
|
||||
local last_idx = 0;
|
||||
for i = 1, #header_columns - 1 do
|
||||
local col = header_columns[i]
|
||||
local idx = string.find(ev_values, ",", last_idx + 1)
|
||||
local val = ev_values:sub(last_idx + 1, idx - 1)
|
||||
local timestamp_entry_column = self.header_mapper[col]
|
||||
if timestamp_entry_column then
|
||||
new_event[timestamp_entry_column] = create_timestamp(val)
|
||||
else
|
||||
new_event[col] = val
|
||||
end
|
||||
last_idx = idx
|
||||
end
|
||||
new_event[header_columns[#header_columns]] = ev_values:sub(last_idx + 1)
|
||||
return new_event
|
||||
end
|
||||
|
||||
local sub = self:create(filename)
|
||||
sub.header = table.concat(header, "\n")
|
||||
sub.language = language
|
||||
-- remove and process first entry in events, which is a header
|
||||
local _, _, colstring = string.find(table.remove(events, 1), "^%a+:%s(.+)$")
|
||||
local columns = {};
|
||||
for i in colstring:gmatch("[^%,%s]+") do table.insert(columns, i) end
|
||||
sub.event_header = columns
|
||||
for _, event in pairs(events) do
|
||||
if #event > 0 then
|
||||
table.insert(sub.entries, parse_event(columns, event))
|
||||
end
|
||||
end
|
||||
return sub
|
||||
end
|
||||
|
||||
P.AbstractSubtitle = AbstractSubtitle
|
||||
P.ASS = ASS
|
||||
P.SRT = SRT
|
||||
return P
|
||||
@@ -1,78 +0,0 @@
|
||||
opts = {
|
||||
blacklist="",
|
||||
whitelist="",
|
||||
remove_files_without_extension = false,
|
||||
oneshot = true,
|
||||
}
|
||||
(require 'mp.options').read_options(opts)
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
function split(input)
|
||||
local ret = {}
|
||||
for str in string.gmatch(input, "([^,]+)") do
|
||||
ret[#ret + 1] = str
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
opts.blacklist = split(opts.blacklist)
|
||||
opts.whitelist = split(opts.whitelist)
|
||||
|
||||
local exclude
|
||||
if #opts.whitelist > 0 then
|
||||
exclude = function(extension)
|
||||
for _, ext in pairs(opts.whitelist) do
|
||||
if extension == ext then
|
||||
return false
|
||||
end
|
||||
end
|
||||
return true
|
||||
end
|
||||
elseif #opts.blacklist > 0 then
|
||||
exclude = function(extension)
|
||||
for _, ext in pairs(opts.blacklist) do
|
||||
if extension == ext then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
else
|
||||
return
|
||||
end
|
||||
|
||||
function should_remove(filename)
|
||||
if string.find(filename, "://") then
|
||||
return false
|
||||
end
|
||||
local extension = string.match(filename, "%.([^%.]+)$")
|
||||
if not extension and opts.remove_file_without_extension then
|
||||
return true
|
||||
end
|
||||
if extension and exclude(string.lower(extension)) then
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function process(playlist_count)
|
||||
if playlist_count < 2 then return end
|
||||
if opts.oneshot then
|
||||
mp.unobserve_property(observe)
|
||||
end
|
||||
local playlist = mp.get_property_native("playlist")
|
||||
local removed = 0
|
||||
for i = #playlist, 1, -1 do
|
||||
if should_remove(playlist[i].filename) then
|
||||
mp.commandv("playlist-remove", i-1)
|
||||
removed = removed + 1
|
||||
end
|
||||
end
|
||||
if removed == #playlist then
|
||||
msg.warn("Removed eveything from the playlist")
|
||||
end
|
||||
end
|
||||
|
||||
function observe(k,v) process(v) end
|
||||
|
||||
mp.observe_property("playlist-count", "number", observe)
|
||||
@@ -1,618 +0,0 @@
|
||||
--[[
|
||||
* chapter-make-read.lua v.2025-03-01
|
||||
*
|
||||
* AUTHORS: dyphire
|
||||
* License: MIT
|
||||
* link: https://github.com/dyphire/mpv-scripts
|
||||
--]]
|
||||
|
||||
--[[
|
||||
Copyright (c) 2023 dyphire <qimoge@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
--]]
|
||||
|
||||
-- Implementation read and automatically load the namesake external chapter file.
|
||||
-- The external chapter files should conform to the following formats.
|
||||
-- Note: The Timestamps should use the 12-bit format of 'hh:mm:ss.sss'.
|
||||
-- Note: The file encoding should be UTF-8 and the linebreak should be Unix(LF).
|
||||
-- Note: The script also supports reading OGM format and MediaInfo format in addition to the following formats.
|
||||
--[[
|
||||
00:00:00.000 A part
|
||||
00:00:40.312 OP
|
||||
00:02:00.873 B part
|
||||
00:10:44.269 C part
|
||||
00:22:40.146 ED
|
||||
--]]
|
||||
|
||||
-- This script also supports manually load/refresh,marks,edits,remove and creates external chapter files, usage:
|
||||
-- Note: It can also be used to export the existing chapter information of the playback file.
|
||||
-- add bindings to input.conf:
|
||||
-- key script-message-to chapter_make_read load_chapter
|
||||
-- key script-message-to chapter_make_read create_chapter
|
||||
-- key script-message-to chapter_make_read edit_chapter
|
||||
-- key script-message-to chapter_make_read remove_chapter
|
||||
-- key script-message-to chapter_make_read write_chapter chp
|
||||
-- key script-message-to chapter_make_read write_chapter ogm
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local options = require "mp.options"
|
||||
|
||||
local o = {
|
||||
autoload = true,
|
||||
autosave = false,
|
||||
force_overwrite = false,
|
||||
-- Specifies the extension of the external chapter file.
|
||||
chapter_file_ext = ".chp",
|
||||
-- Select whether the external chapter file needs to match the extension of the source file.
|
||||
basename_with_ext = true,
|
||||
-- Specifies the subpath of the same directory as the playback file as the external chapter file path.
|
||||
-- Note: The external chapter file is read from the subdirectory first.
|
||||
-- If the file does not exist, it will next be read from the same directory as the playback file.
|
||||
external_chapter_subpath = "chapters",
|
||||
-- save all chapter files in a single global directory
|
||||
global_chapters = false,
|
||||
global_chapters_dir = "~~/chapters",
|
||||
-- hash works only in global_chapters_dir
|
||||
hash = false,
|
||||
-- ask for title or leave it empty
|
||||
ask_for_title = true,
|
||||
-- placeholder when asking for title of a new chapter
|
||||
placeholder_title = "Chapter ",
|
||||
-- pause the playback when asking for chapter title
|
||||
pause_on_input = true,
|
||||
}
|
||||
|
||||
options.read_options(o)
|
||||
|
||||
local input_loaded, input = pcall(require, "mp.input")
|
||||
-- Requires: https://github.com/CogentRedTester/mpv-user-input
|
||||
local user_input_loaded, user_input = pcall(require, "user-input-module")
|
||||
|
||||
local path = nil
|
||||
local dir = nil
|
||||
local fname = nil
|
||||
local chapter_fullpath = nil
|
||||
local all_chapters = {}
|
||||
local chapter_count = 0
|
||||
local chapters_modified = false
|
||||
local paused = false
|
||||
local protocol = false
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
function url_decode(str)
|
||||
local function hex_to_char(x)
|
||||
return string.char(tonumber(x, 16))
|
||||
end
|
||||
|
||||
if str ~= nil then
|
||||
str = str:gsub('^%a[%a%d-_]+://', '')
|
||||
:gsub('^%a[%a%d-_]+:\\?', '')
|
||||
:gsub('%%(%x%x)', hex_to_char)
|
||||
if str:find('://localhost:?') then
|
||||
str = str:gsub('^.*/', '')
|
||||
end
|
||||
str = str:gsub('[\\/:%?]*', '')
|
||||
return str
|
||||
end
|
||||
end
|
||||
|
||||
--create global_chapters_dir if it doesn't exist
|
||||
local global_chapters_dir = mp.command_native({ "expand-path", o.global_chapters_dir })
|
||||
if global_chapters_dir and global_chapters_dir ~= '' then
|
||||
local meta = utils.file_info(global_chapters_dir)
|
||||
if not meta or not meta.is_dir then
|
||||
local is_windows = package.config:sub(1, 1) == "\\"
|
||||
local windows_args = { 'powershell', '-NoProfile', '-Command', 'mkdir', string.format("\"%s\"", global_chapters_dir) }
|
||||
local unix_args = { 'mkdir', '-p', global_chapters_dir }
|
||||
local args = is_windows and windows_args or unix_args
|
||||
local res = mp.command_native({ name = "subprocess", capture_stdout = true, playback_only = false, args = args })
|
||||
if res.status ~= 0 then
|
||||
msg.error("Failed to create global_chapters_dir save directory " .. global_chapters_dir ..
|
||||
". Error: " .. (res.error or "unknown"))
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function read_chapter(func)
|
||||
local meta = utils.file_info(chapter_fullpath)
|
||||
if not meta or not meta.is_file then return end
|
||||
local f = io.open(chapter_fullpath, "r")
|
||||
if not f then return end
|
||||
local contents = {}
|
||||
for line in f:lines() do
|
||||
table.insert(contents, (func(line)))
|
||||
end
|
||||
f:close()
|
||||
return contents
|
||||
end
|
||||
|
||||
local function read_chapter_table()
|
||||
local line_pos = 0
|
||||
return read_chapter(function(line)
|
||||
local h, m, s, t, n, l
|
||||
local thin_space = string.char(0xE2, 0x80, 0x89)
|
||||
local line = line:gsub(thin_space, " ")
|
||||
if line:match("^%d+:%d+:%d+") ~= nil then
|
||||
h, m, s = line:match("^(%d+):(%d+):(%d+[,%.]?%d+)")
|
||||
s = s:gsub(',', '.')
|
||||
t = h * 3600 + m * 60 + s
|
||||
if line:match("^%d+:%d+:%d+[,%.]?%d+[,%s].*") ~= nil then
|
||||
n = line:match("^%d+:%d+:%d+[,%.]?%d+[,%s](.*)")
|
||||
n = n:gsub(":%s%a?%a?:", "")
|
||||
:gsub("^%s*(.-)%s*$", "%1")
|
||||
end
|
||||
l = line
|
||||
line_pos = line_pos + 1
|
||||
elseif line:match("^%d+:%d+[,%.]?%d+[,%s].*") ~= nil then
|
||||
m, s = line:match("^(%d+):(%d+[,%.]?%d+)")
|
||||
s = s:gsub(',', '.')
|
||||
t = m * 60 + s
|
||||
if line:match("^%d+:%d+[,%.]?%d+[,%s].*") ~= nil then
|
||||
n = line:match("^%d+:%d+[,%.]?%d+[,%s](.*)")
|
||||
n = n:gsub(":%s%a?%a?:", "")
|
||||
:gsub("^%s*(.-)%s*$", "%1")
|
||||
end
|
||||
l = line
|
||||
line_pos = line_pos + 1
|
||||
elseif line:match("^CHAPTER%d+=%d+:%d+:%d+") ~= nil then
|
||||
h, m, s = line:match("^CHAPTER%d+=(%d+):(%d+):(%d+[,%.]?%d+)")
|
||||
s = s:gsub(',', '.')
|
||||
t = h * 3600 + m * 60 + s
|
||||
l = line
|
||||
line_pos = line_pos + 1
|
||||
elseif line:match("^CHAPTER%d+NAME=.*") ~= nil then
|
||||
n = line:gsub("^CHAPTER%d+NAME=", "")
|
||||
n = n:gsub("^%s*(.-)%s*$", "%1")
|
||||
l = line
|
||||
line_pos = line_pos + 1
|
||||
else
|
||||
return
|
||||
end
|
||||
return { found_title = n, found_time = t, found_line = l }
|
||||
end)
|
||||
end
|
||||
|
||||
local function refresh_globals()
|
||||
path = mp.get_property("path")
|
||||
if path then
|
||||
protocol = is_protocol(path)
|
||||
dir = utils.split_path(path)
|
||||
end
|
||||
|
||||
if protocol then
|
||||
fname = url_decode(mp.get_property("media-title"))
|
||||
elseif o.basename_with_ext then
|
||||
fname = mp.get_property("filename")
|
||||
else
|
||||
fname = mp.get_property("filename/no-ext")
|
||||
end
|
||||
|
||||
all_chapters = mp.get_property_native("chapter-list")
|
||||
chapter_count = mp.get_property_number("chapter-list/count")
|
||||
end
|
||||
|
||||
local function format_time(seconds)
|
||||
local result = ""
|
||||
local hours, mins, secs, msecs
|
||||
if seconds <= 0 then
|
||||
return "00:00:00.000";
|
||||
else
|
||||
hours = string.format("%02.f", math.floor(seconds / 3600))
|
||||
mins = string.format("%02.f", math.floor(seconds / 60 - (hours * 60)))
|
||||
secs = string.format("%02.f", math.floor(seconds - hours * 60 * 60 - mins * 60))
|
||||
msecs = string.format("%03.f", seconds * 1000 - hours * 60 * 60 * 1000 - mins * 60 * 1000 - secs * 1000)
|
||||
result = hours .. ":" .. mins .. ":" .. secs .. "." .. msecs
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
-- for unix use only
|
||||
-- returns a table of command path and varargs, or nil if command was not found
|
||||
local function command_exists(command, ...)
|
||||
msg.debug("looking for command:", command)
|
||||
-- msg.debug("args:", )
|
||||
local process = mp.command_native({
|
||||
name = "subprocess",
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
playback_only = false,
|
||||
args = {"sh", "-c", "command -v -- " .. command}
|
||||
})
|
||||
|
||||
if process.status == 0 then
|
||||
local command_path = process.stdout:gsub("\n", "")
|
||||
msg.debug("command found:", command_path)
|
||||
return {command_path, ...}
|
||||
else
|
||||
msg.debug("command not found:", command)
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
-- returns md5 hash of the full path of the current media file
|
||||
local function hash(path)
|
||||
if path == nil then
|
||||
msg.debug("something is wrong with the path, can't get full_path, can't hash it")
|
||||
return
|
||||
end
|
||||
|
||||
msg.debug("hashing:", path)
|
||||
|
||||
local cmd = {
|
||||
name = 'subprocess',
|
||||
capture_stdout = true,
|
||||
playback_only = false,
|
||||
}
|
||||
|
||||
local args = nil
|
||||
local is_unix = package.config:sub(1,1) == "/"
|
||||
if is_unix then
|
||||
local md5 = command_exists("md5sum") or command_exists("md5") or command_exists("openssl", "md5 | cut -d ' ' -f 2")
|
||||
if md5 == nil then
|
||||
msg.warn("no md5 command found, can't generate hash")
|
||||
return
|
||||
end
|
||||
md5 = table.concat(md5, " ")
|
||||
cmd["stdin_data"] = path
|
||||
args = {"sh", "-c", md5 .. " | cut -d ' ' -f 1 | tr '[:lower:]' '[:upper:]'" }
|
||||
else --windows
|
||||
-- https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-filehash?view=powershell-7.3
|
||||
local hash_command = [[
|
||||
$s = [System.IO.MemoryStream]::new();
|
||||
$w = [System.IO.StreamWriter]::new($s);
|
||||
$w.write(']] .. path .. [[');
|
||||
$w.Flush();
|
||||
$s.Position = 0;
|
||||
Get-FileHash -Algorithm MD5 -InputStream $s | Select-Object -ExpandProperty Hash
|
||||
]]
|
||||
|
||||
args = {"powershell", "-NoProfile", "-Command", hash_command}
|
||||
end
|
||||
cmd["args"] = args
|
||||
msg.debug("hash cmd:", utils.to_string(cmd))
|
||||
local process = mp.command_native(cmd)
|
||||
|
||||
if process.status == 0 then
|
||||
local hash = process.stdout:gsub("%s+", "")
|
||||
msg.debug("hash:", hash)
|
||||
return hash
|
||||
else
|
||||
msg.warn("hash function failed")
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function get_chapter_filename(path)
|
||||
name = hash(path)
|
||||
if name == nil then
|
||||
msg.warn("hash function failed, fallback to filename")
|
||||
name = fname
|
||||
end
|
||||
return name
|
||||
end
|
||||
|
||||
local function mark_chapter(force_overwrite)
|
||||
refresh_globals()
|
||||
if not path then return end
|
||||
|
||||
local chapter_index = 0
|
||||
local chapters_time = {}
|
||||
local chapters_title = {}
|
||||
local fpath = dir
|
||||
if protocol then
|
||||
fpath = global_chapters_dir
|
||||
if o.hash then fname = get_chapter_filename(path) end
|
||||
elseif o.external_chapter_subpath ~= '' then
|
||||
fpath = utils.join_path(dir, o.external_chapter_subpath)
|
||||
local meta = utils.file_info(fpath)
|
||||
if not meta or not meta.is_dir then
|
||||
fpath = dir
|
||||
end
|
||||
end
|
||||
|
||||
if o.global_chapters and global_chapters_dir and global_chapters_dir ~= '' and not protocol then
|
||||
fpath = global_chapters_dir
|
||||
local meta = utils.file_info(fpath)
|
||||
if meta and meta.is_dir then
|
||||
if o.hash then
|
||||
fname = get_chapter_filename(path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local chapter_filename = fname .. o.chapter_file_ext
|
||||
chapter_fullpath = utils.join_path(fpath, chapter_filename)
|
||||
local fmeta = utils.file_info(chapter_fullpath)
|
||||
if (not fmeta or not fmeta.is_file) and fpath ~= dir and not protocol then
|
||||
if o.basename_with_ext then
|
||||
fname = mp.get_property("filename")
|
||||
else
|
||||
fname = mp.get_property("filename/no-ext")
|
||||
end
|
||||
chapter_filename = fname .. o.chapter_file_ext
|
||||
chapter_fullpath = utils.join_path(dir, chapter_filename)
|
||||
end
|
||||
local list_contents = read_chapter_table()
|
||||
|
||||
if not list_contents then return end
|
||||
for i = 1, #list_contents do
|
||||
local chapter_time = tonumber(list_contents[i].found_time)
|
||||
if chapter_time ~= nil and chapter_time >= 0 then
|
||||
table.insert(chapters_time, chapter_time)
|
||||
end
|
||||
if list_contents[i].found_title ~= nil then
|
||||
table.insert(chapters_title, list_contents[i].found_title)
|
||||
end
|
||||
end
|
||||
if not chapters_time[1] then return end
|
||||
|
||||
table.sort(chapters_time, function(a, b) return a < b end)
|
||||
|
||||
if force_overwrite then all_chapters = {} end
|
||||
for i = 1, #chapters_time do
|
||||
chapter_index = chapter_index + 1
|
||||
all_chapters[chapter_index] = {
|
||||
title = chapters_title[i] or ("Chapter " .. string.format("%02.f", chapter_index)),
|
||||
time = chapters_time[i]
|
||||
}
|
||||
end
|
||||
|
||||
table.sort(all_chapters, function(a, b) return a['time'] < b['time'] end)
|
||||
|
||||
mp.set_property_native("chapter-list", all_chapters)
|
||||
msg.info("load external chapter file successful: " .. chapter_filename)
|
||||
end
|
||||
|
||||
local function change_chapter_list(chapter_tltle, chapter_index)
|
||||
local chapter_list = mp.get_property_native("chapter-list")
|
||||
|
||||
if chapter_index > mp.get_property_number("chapter-list/count") then
|
||||
msg.warn("can't set chapter title")
|
||||
return
|
||||
end
|
||||
|
||||
chapter_list[chapter_index].title = chapter_tltle
|
||||
mp.set_property_native("chapter-list", chapter_list)
|
||||
end
|
||||
|
||||
local function change_title_callback(user_input, err, chapter_index)
|
||||
if user_input == nil or err ~= nil then
|
||||
if paused then return elseif o.pause_on_input then mp.set_property_native("pause", false) end
|
||||
msg.warn("no chapter title provided:", err)
|
||||
return
|
||||
end
|
||||
change_chapter_list(user_input, chapter_index)
|
||||
if paused then return elseif o.pause_on_input then mp.set_property_native("pause", false) end
|
||||
chapters_modified = true
|
||||
end
|
||||
|
||||
local function input_title(default_input, cursor_pos, chapter_index)
|
||||
input.get({
|
||||
prompt = 'Chapter title:',
|
||||
default_text = default_input,
|
||||
cursor_position = cursor_pos,
|
||||
submit = function(text)
|
||||
input.terminate()
|
||||
change_chapter_list(text, chapter_index)
|
||||
end,
|
||||
closed = function()
|
||||
if paused then return elseif o.pause_on_input then mp.set_property_native("pause", false) end
|
||||
end
|
||||
})
|
||||
end
|
||||
|
||||
local function input_choice(title, chapter_index)
|
||||
if not input_loaded and not user_input_loaded then
|
||||
msg.error("no mpv-user-input, can't get user input, install: https://github.com/CogentRedTester/mpv-user-input")
|
||||
return
|
||||
end
|
||||
|
||||
if input_loaded then
|
||||
input_title(title, #title + 1, chapter_index)
|
||||
elseif user_input_loaded then
|
||||
-- ask user for chapter title
|
||||
-- (+1 because mpv indexes from 0, lua from 1)
|
||||
user_input.get_user_input(change_title_callback, {
|
||||
request_text = "Chapter title:",
|
||||
default_input = title,
|
||||
cursor_pos = #title + 1,
|
||||
}, chapter_index)
|
||||
end
|
||||
end
|
||||
|
||||
local function create_chapter()
|
||||
refresh_globals()
|
||||
if not path then return end
|
||||
|
||||
local time_pos = mp.get_property_number("time-pos")
|
||||
local time_pos_osd = mp.get_property_osd("time-pos/full")
|
||||
local current_chapter = mp.get_property_number("chapter")
|
||||
mp.osd_message(time_pos_osd, 1)
|
||||
|
||||
if chapter_count == 0 then
|
||||
all_chapters[1] = {
|
||||
title = o.placeholder_title .. "01",
|
||||
time = time_pos
|
||||
}
|
||||
-- We just set it to zero here so when we add 1 later it ends up as 1
|
||||
-- otherwise it's probably "nil"
|
||||
current_chapter = 0
|
||||
-- note that mpv will treat the beginning of the file as all_chapters[0] when using pageup/pagedown
|
||||
-- so we don't actually have to worry if the file doesn't start with a chapter
|
||||
else
|
||||
-- to insert a chapter we have to increase the index on all subsequent chapters
|
||||
-- otherwise we'll end up with duplicate chapter IDs which will confuse mpv
|
||||
-- +2 looks weird, but remember mpv indexes at 0 and lua indexes at 1
|
||||
-- adding two will turn "current chapter" from mpv notation into "next chapter" from lua's notation
|
||||
-- count down because these areas of memory overlap
|
||||
for i = chapter_count, current_chapter + 2, -1 do
|
||||
all_chapters[i + 1] = all_chapters[i]
|
||||
end
|
||||
all_chapters[current_chapter + 2] = {
|
||||
title = o.placeholder_title .. string.format("%02.f", current_chapter + 2),
|
||||
time = time_pos
|
||||
}
|
||||
end
|
||||
mp.set_property_native("chapter-list", all_chapters)
|
||||
mp.set_property_number("chapter", current_chapter + 1)
|
||||
chapters_modified = true
|
||||
|
||||
if o.ask_for_title then
|
||||
local chapter_index = mp.get_property_number("chapter") + 1
|
||||
local title = o.placeholder_title .. string.format("%02.f", chapter_index)
|
||||
|
||||
input_choice(title, chapter_index)
|
||||
|
||||
if o.pause_on_input then
|
||||
paused = mp.get_property_native("pause")
|
||||
mp.set_property_bool("pause", true)
|
||||
-- FIXME: for whatever reason osd gets hidden when we pause the
|
||||
-- playback like that, workaround to make input prompt appear
|
||||
-- right away without requiring mouse or keyboard action
|
||||
mp.osd_message(" ", 0.1)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function edit_chapter()
|
||||
local chapter_index = mp.get_property_number("chapter") + 1
|
||||
local chapter_list = mp.get_property_native("chapter-list")
|
||||
local title = chapter_list[chapter_index + 1].title
|
||||
if chapter_index == nil or chapter_index == -1 then
|
||||
msg.verbose("no chapter selected, nothing to edit")
|
||||
return
|
||||
end
|
||||
|
||||
input_choice(title, chapter_index)
|
||||
|
||||
if o.pause_on_input then
|
||||
paused = mp.get_property_native("pause")
|
||||
mp.set_property_bool("pause", true)
|
||||
-- FIXME: for whatever reason osd gets hidden when we pause the
|
||||
-- playback like that, workaround to make input prompt appear
|
||||
-- right away without requiring mouse or keyboard action
|
||||
mp.osd_message(" ", 0.1)
|
||||
end
|
||||
end
|
||||
|
||||
local function remove_chapter()
|
||||
local chapter_count = mp.get_property_number("chapter-list/count")
|
||||
|
||||
if chapter_count < 1 then
|
||||
msg.verbose("no chapters to remove")
|
||||
return
|
||||
end
|
||||
|
||||
local chapter_list = mp.get_property_native("chapter-list")
|
||||
-- +1 because mpv indexes from 0, lua from 1
|
||||
local current_chapter = mp.get_property_number("chapter") + 1
|
||||
|
||||
table.remove(chapter_list, current_chapter)
|
||||
msg.debug("removing chapter", current_chapter)
|
||||
|
||||
mp.set_property_native("chapter-list", chapter_list)
|
||||
chapters_modified = true
|
||||
end
|
||||
|
||||
local function write_chapter(format, force_write)
|
||||
refresh_globals()
|
||||
if not path or chapter_count == 0 or (not chapters_modified and not force_write) then
|
||||
msg.debug("nothing to write")
|
||||
return
|
||||
end
|
||||
|
||||
if o.global_chapters then dir = global_chapters_dir end
|
||||
if o.hash and o.global_chapters then fname = get_chapter_filename(path) end
|
||||
local out_path = utils.join_path(dir, fname .. o.chapter_file_ext)
|
||||
local chapters = ""
|
||||
local next_chapter = nil
|
||||
for i = 1, chapter_count, 1 do
|
||||
local current_chapter = all_chapters[i]
|
||||
local time_pos = format_time(current_chapter.time)
|
||||
if format == "ogm" then
|
||||
next_chapter = "CHAPTER" .. string.format("%02.f", i) .. "=" .. time_pos .. "\n" ..
|
||||
"CHAPTER" .. string.format("%02.f", i) .. "NAME=" .. current_chapter.title .. "\n"
|
||||
elseif format == "chp" then
|
||||
next_chapter = time_pos .. " " .. current_chapter.title .. "\n"
|
||||
else
|
||||
msg.warn("please specify the correct chapter format: chp/ogm.")
|
||||
return
|
||||
end
|
||||
if i == 1 and (o.global_chapters or protocol) then
|
||||
chapters = "# " .. path .. "\n\n" .. next_chapter
|
||||
else
|
||||
chapters = chapters .. next_chapter
|
||||
end
|
||||
end
|
||||
|
||||
local file = io.open(out_path, "w")
|
||||
if file == nil then
|
||||
dir = global_chapters_dir
|
||||
fname = url_decode(mp.get_property("media-title"))
|
||||
if o.hash then fname = get_chapter_filename(path) end
|
||||
out_path = utils.join_path(dir, fname .. o.chapter_file_ext)
|
||||
file = io.open(out_path, "w")
|
||||
end
|
||||
if file == nil then
|
||||
mp.error("Could not open chapter file for writing.")
|
||||
return
|
||||
end
|
||||
file:write(chapters)
|
||||
file:close()
|
||||
if not o.autosave then
|
||||
mp.osd_message("Export chapter file to: " .. out_path, 3)
|
||||
end
|
||||
msg.info("Export chapter file to: " .. out_path)
|
||||
end
|
||||
|
||||
-- HOOKS -----------------------------------------------------------------------
|
||||
|
||||
if o.autoload then
|
||||
mp.add_hook("on_preloaded", 50, function()
|
||||
if o.force_overwrite then
|
||||
mark_chapter(true)
|
||||
else
|
||||
mark_chapter(false)
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
if o.autosave then
|
||||
mp.add_hook("on_unload", 50, function()
|
||||
write_chapter("chp", false)
|
||||
end)
|
||||
end
|
||||
|
||||
if user_input_loaded and not input_loaded then
|
||||
mp.add_hook("on_unload", 50, function() user_input.cancel_user_input() end)
|
||||
end
|
||||
|
||||
mp.register_script_message("load_chapter", function() mark_chapter(true) end)
|
||||
mp.register_script_message("create_chapter", create_chapter, { repeatable = true })
|
||||
mp.register_script_message("remove_chapter", remove_chapter)
|
||||
mp.register_script_message("edit_chapter", edit_chapter)
|
||||
mp.register_script_message("write_chapter", function(format)
|
||||
write_chapter(format, true)
|
||||
end)
|
||||
@@ -1,91 +0,0 @@
|
||||
-- chapterskip.lua
|
||||
--
|
||||
-- Ain't Nobody Got Time for That
|
||||
--
|
||||
-- This script skips chapters based on their title.
|
||||
|
||||
local categories = {
|
||||
prologue = "^[Pp]rologue/^[Ii]ntro",
|
||||
opening = "^OP/ OP$/^[Oo]pening/[Oo]pening$",
|
||||
ending = "^ED/ ED$/^[Ee]nding/[Ee]nding$",
|
||||
credits = "^[Cc]redits/[Cc]redits$",
|
||||
preview = "[Pp]review$"
|
||||
}
|
||||
|
||||
local options = {
|
||||
enabled = false,
|
||||
skip_once = true,
|
||||
categories = "",
|
||||
skip = ""
|
||||
}
|
||||
|
||||
mp.options = require "mp.options"
|
||||
|
||||
function matches(i, title)
|
||||
for category in string.gmatch(options.skip, " *([^;]*[^; ]) *") do
|
||||
if categories[category:lower()] then
|
||||
if string.find(category:lower(), "^idx%-") == nil then
|
||||
if title then
|
||||
for pattern in string.gmatch(categories[category:lower()], "([^/]+)") do
|
||||
if string.match(title, pattern) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
for pattern in string.gmatch(categories[category:lower()], "([^/]+)") do
|
||||
if tonumber(pattern) == i then
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local skipped = {}
|
||||
local parsed = {}
|
||||
|
||||
local function toggle_chapterskip()
|
||||
options.enabled = not options.enabled
|
||||
end
|
||||
|
||||
function chapterskip(_, current)
|
||||
mp.options.read_options(options, "chapterskip")
|
||||
if not options.enabled then return end
|
||||
for category in string.gmatch(options.categories, "([^;]+)") do
|
||||
name, patterns = string.match(category, " *([^+>]*[^+> ]) *[+>](.*)")
|
||||
if name then
|
||||
categories[name:lower()] = patterns
|
||||
elseif not parsed[category] then
|
||||
mp.msg.warn("Improper category definition: " .. category)
|
||||
end
|
||||
parsed[category] = true
|
||||
end
|
||||
local chapters = mp.get_property_native("chapter-list")
|
||||
local skip = false
|
||||
for i, chapter in ipairs(chapters) do
|
||||
if (not options.skip_once or not skipped[i]) and matches(i, chapter.title) then
|
||||
if i == current + 1 or skip == i - 1 then
|
||||
if skip then
|
||||
skipped[skip] = true
|
||||
end
|
||||
skip = i
|
||||
end
|
||||
elseif skip then
|
||||
mp.set_property("time-pos", chapter.time)
|
||||
skipped[skip] = true
|
||||
return
|
||||
end
|
||||
end
|
||||
if skip then
|
||||
if mp.get_property_native("playlist-count") == mp.get_property_native("playlist-pos-1") then
|
||||
return mp.set_property("time-pos", mp.get_property_native("duration"))
|
||||
end
|
||||
mp.commandv("playlist-next")
|
||||
end
|
||||
end
|
||||
|
||||
mp.observe_property("chapter", "number", chapterskip)
|
||||
mp.register_event("file-loaded", function() skipped = {} end)
|
||||
mp.register_script_message("chapter-skip", toggle_chapterskip)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,80 +0,0 @@
|
||||
--[[
|
||||
script to cycle commands with a keybind, accomplished through script messages
|
||||
available at: https://github.com/CogentRedTester/mpv-scripts
|
||||
|
||||
syntax:
|
||||
script-message cycle-commands "command1 args" "command2 args" "command3 args"
|
||||
|
||||
The syntax of each command is identical to the standard input.conf syntax, but each command must be
|
||||
a quoted string. Note that this may require you to nest (and potentially escape) quotes for the arguments.
|
||||
Read the mpv documentation for how to do this: https://mpv.io/manual/master/#flat-command-syntax.
|
||||
|
||||
Semicolons also work exactly like they do normally, so you can easily send multiple commands each cycle.
|
||||
|
||||
Here are some examples of the same command using different quotes:
|
||||
script-message cycle-commands "show-text one 1000 ; print-text two" "show-text \"three four\""
|
||||
script-message cycle-commands 'show-text one 1000 ; print-text two' 'show-text "three four"'
|
||||
script-message cycle-commands ``show-text one 1000 ; print-text two`` ``show-text "three four"``
|
||||
|
||||
This would, on keypress one, print 'one' to the OSD for 1 second and 'two' to the console,
|
||||
and on keypress two 'three four' would be printed to the OSD.
|
||||
Note that single (') and backtick (`) quoting was only added in mpv v0.34.
|
||||
|
||||
There are no limits to the number of commands, and the script message can be used as often as one wants.
|
||||
The script stores the current iteration position for each unique set of command strings,
|
||||
so there should be no overlap unless one binds the exact same set of strings (including spacing).
|
||||
|
||||
If the first command is `!reverse`, then the commands are cycled in the opposite direction.
|
||||
If every subsequent command string is identical to a non-reversed cycle, then they share
|
||||
their iteration position, making it possible to 'seek' forwards or backwards in the cycle:
|
||||
script-message cycle-commands 'apply-profile profile1' 'apply-profile profile2' 'apply-profile profile3'
|
||||
script-message cycle-commands !reverse 'apply-profile profile1' 'apply-profile profile2' 'apply-profile profile3'
|
||||
|
||||
Most commands should print messages to the OSD automatically, this can be controlled
|
||||
by adding input prefixes to the commands: https://mpv.io/manual/master/#input-command-prefixes.
|
||||
Some commands will not print an osd message even when told to, in this case you have two options:
|
||||
you can add a show-text command to the cycle, or you can use the cycle-commands/osd script message
|
||||
which will print the command string to the osd. For example:
|
||||
script-message cycle-commands 'apply-profile profile1;show-text "applying profile1"' 'apply-profile profile2;show-text "applying profile2"'
|
||||
script-message cycle-commands/osd 'apply-profile profile1' 'apply-profile profile2'
|
||||
|
||||
Any osd messages printed by the command will override the message sent by cycle-commands/osd.
|
||||
]]--
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
--keeps track of the current position for a specific cycle
|
||||
local iterators = {}
|
||||
|
||||
--main function to identify and run the cycles
|
||||
local function main(osd, ...)
|
||||
local commands = {...}
|
||||
|
||||
local reverse = commands[1] == '!reverse'
|
||||
if reverse then table.remove(commands, 1) end
|
||||
|
||||
--to identify the specific cycle we'll concatenate all the strings together to use as our table key
|
||||
local str = ("%d> %s"):format(#commands, table.concat(commands, '|'))
|
||||
msg.trace('recieved:', str)
|
||||
|
||||
-- we'll initialise the iterator at 0 (an invalid position) to support forward or backwards iteration
|
||||
if iterators[str] == nil then
|
||||
msg.debug('unknown cycle, creating iterator')
|
||||
iterators[str] = 0
|
||||
end
|
||||
|
||||
iterators[str] = iterators[str] + (reverse and -1 or 1)
|
||||
if iterators[str] > #commands then iterators[str] = 1 end
|
||||
if iterators[str] < 1 then iterators[str] = #commands end
|
||||
|
||||
--mp.command should run the commands exactly as if they were entered in input.conf.
|
||||
--This should provide universal support for all input.conf command syntax
|
||||
local cmd = commands[ iterators[str] ]
|
||||
msg.verbose('sending command:', cmd)
|
||||
if osd then mp.osd_message(cmd) end
|
||||
mp.command(cmd)
|
||||
end
|
||||
|
||||
mp.register_script_message('cycle-commands', function(...) main(false, ...) end)
|
||||
mp.register_script_message('cycle-commands/osd', function(...) main(true, ...) end)
|
||||
@@ -1,169 +0,0 @@
|
||||
|
||||
--[[
|
||||
|
||||
https://github.com/stax76/mpv-scripts
|
||||
|
||||
This script instantly deletes the file that is currently playing
|
||||
via keyboard shortcut, the file is moved to the recycle bin and
|
||||
removed from the playlist.
|
||||
|
||||
On Linux the app trash-cli must be installed first.
|
||||
On Ubuntu: sudo apt install trash-cli
|
||||
|
||||
Usage:
|
||||
Add bindings to input.conf:
|
||||
|
||||
# delete directly
|
||||
KP0 script-message-to delete_current_file delete-file
|
||||
|
||||
# delete with confirmation
|
||||
KP0 script-message-to delete_current_file delete-file KP1 "Press 1 to delete file"
|
||||
|
||||
Press KP0 to initiate the delete operation,
|
||||
the script will ask to confirm by pressing KP1.
|
||||
You may customize the the init and confirm key and the confirm message.
|
||||
Confirm key and confirm message are optional.
|
||||
|
||||
Similar scripts:
|
||||
https://github.com/zenyd/mpv-scripts#delete-file
|
||||
|
||||
]]--
|
||||
|
||||
key_bindings = {}
|
||||
|
||||
function file_exists(name)
|
||||
if not name or name == '' then
|
||||
return false
|
||||
end
|
||||
|
||||
local f = io.open(name, "r")
|
||||
|
||||
if f ~= nil then
|
||||
io.close(f)
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
function is_protocol(path)
|
||||
return type(path) == 'string' and (path:match('^%a[%a%d_-]+://'))
|
||||
end
|
||||
|
||||
function delete_file(path)
|
||||
local is_windows = package.config:sub(1,1) == "\\"
|
||||
|
||||
if is_protocol(path) or not file_exists(path) then
|
||||
return
|
||||
end
|
||||
|
||||
if is_windows then
|
||||
local ps_code = [[
|
||||
Add-Type -AssemblyName Microsoft.VisualBasic
|
||||
[Microsoft.VisualBasic.FileIO.FileSystem]::DeleteFile('__path__', 'OnlyErrorDialogs', 'SendToRecycleBin')
|
||||
]]
|
||||
|
||||
local escaped_path = string.gsub(path, "'", "''")
|
||||
escaped_path = string.gsub(escaped_path, "’", "’’")
|
||||
escaped_path = string.gsub(escaped_path, "%%", "%%%%")
|
||||
ps_code = string.gsub(ps_code, "__path__", escaped_path)
|
||||
|
||||
mp.command_native({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
detach = true,
|
||||
args = { 'powershell', '-NoProfile', '-Command', ps_code },
|
||||
})
|
||||
else
|
||||
mp.command_native({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
args = { 'trash', path },
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
function remove_current_file()
|
||||
local count = mp.get_property_number("playlist-count")
|
||||
local pos = mp.get_property_number("playlist-pos")
|
||||
local new_pos = 0
|
||||
|
||||
if pos == count - 1 then
|
||||
new_pos = pos - 1
|
||||
else
|
||||
new_pos = pos + 1
|
||||
end
|
||||
|
||||
mp.set_property_number("playlist-pos", new_pos)
|
||||
|
||||
if pos > -1 then
|
||||
mp.command("playlist-remove " .. pos)
|
||||
end
|
||||
end
|
||||
|
||||
function handle_confirm_key()
|
||||
local path = mp.get_property("path")
|
||||
|
||||
if file_to_delete == path then
|
||||
mp.commandv("show-text", "")
|
||||
delete_file(file_to_delete)
|
||||
remove_current_file()
|
||||
remove_bindings()
|
||||
file_to_delete = ""
|
||||
end
|
||||
end
|
||||
|
||||
function cleanup()
|
||||
remove_bindings()
|
||||
file_to_delete = ""
|
||||
mp.commandv("show-text", "")
|
||||
end
|
||||
|
||||
function get_bindings()
|
||||
return {
|
||||
{ confirm_key, handle_confirm_key },
|
||||
}
|
||||
end
|
||||
|
||||
function add_bindings()
|
||||
if #key_bindings > 0 then
|
||||
return
|
||||
end
|
||||
|
||||
local script_name = mp.get_script_name()
|
||||
|
||||
for _, bind in ipairs(get_bindings()) do
|
||||
local name = script_name .. "_key_" .. (#key_bindings + 1)
|
||||
key_bindings[#key_bindings + 1] = name
|
||||
mp.add_forced_key_binding(bind[1], name, bind[2])
|
||||
end
|
||||
end
|
||||
|
||||
function remove_bindings()
|
||||
if #key_bindings == 0 then
|
||||
return
|
||||
end
|
||||
|
||||
for _, name in ipairs(key_bindings) do
|
||||
mp.remove_key_binding(name)
|
||||
end
|
||||
|
||||
key_bindings = {}
|
||||
end
|
||||
|
||||
function client_message(event)
|
||||
local path = mp.get_property("path")
|
||||
|
||||
if event.args[1] == "delete-file" and #event.args == 1 then
|
||||
delete_file(path)
|
||||
remove_current_file()
|
||||
elseif event.args[1] == "delete-file" and #event.args == 3 and #key_bindings == 0 then
|
||||
confirm_key = event.args[2]
|
||||
mp.add_timeout(10, cleanup)
|
||||
add_bindings()
|
||||
file_to_delete = path
|
||||
mp.commandv("show-text", event.args[3], "10000")
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_event("client-message", client_message)
|
||||
@@ -1,169 +0,0 @@
|
||||
|
||||
--[[
|
||||
|
||||
https://github.com/stax76/mpv-scripts
|
||||
|
||||
This script instantly deletes the file that is currently playing
|
||||
via keyboard shortcut, the file is moved to the recycle bin and
|
||||
removed from the playlist.
|
||||
|
||||
On Linux the app trash-cli must be installed first.
|
||||
On Ubuntu: sudo apt install trash-cli
|
||||
|
||||
Usage:
|
||||
Add bindings to input.conf:
|
||||
|
||||
# delete directly
|
||||
KP0 script-message-to delete_current_file delete-file
|
||||
|
||||
# delete with confirmation
|
||||
KP0 script-message-to delete_current_file delete-file KP1 "Press 1 to delete file"
|
||||
|
||||
Press KP0 to initiate the delete operation,
|
||||
the script will ask to confirm by pressing KP1.
|
||||
You may customize the the init and confirm key and the confirm message.
|
||||
Confirm key and confirm message are optional.
|
||||
|
||||
Similar scripts:
|
||||
https://github.com/zenyd/mpv-scripts#delete-file
|
||||
|
||||
]]--
|
||||
|
||||
key_bindings = {}
|
||||
|
||||
function file_exists(name)
|
||||
if not name or name == '' then
|
||||
return false
|
||||
end
|
||||
|
||||
local f = io.open(name, "r")
|
||||
|
||||
if f ~= nil then
|
||||
io.close(f)
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
function is_protocol(path)
|
||||
return type(path) == 'string' and (path:match('^%a[%a%d_-]+://'))
|
||||
end
|
||||
|
||||
function delete_file(path)
|
||||
local is_windows = package.config:sub(1,1) == "\\"
|
||||
|
||||
if is_protocol(path) or not file_exists(path) then
|
||||
return
|
||||
end
|
||||
|
||||
if is_windows then
|
||||
local ps_code = [[
|
||||
Add-Type -AssemblyName Microsoft.VisualBasic
|
||||
[Microsoft.VisualBasic.FileIO.FileSystem]::DeleteFile('__path__', 'OnlyErrorDialogs', 'SendToRecycleBin')
|
||||
]]
|
||||
|
||||
local escaped_path = string.gsub(path, "'", "''")
|
||||
escaped_path = string.gsub(escaped_path, "’", "’’")
|
||||
escaped_path = string.gsub(escaped_path, "%%", "%%%%")
|
||||
ps_code = string.gsub(ps_code, "__path__", escaped_path)
|
||||
|
||||
mp.command_native({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
detach = true,
|
||||
args = { 'powershell', '-NoProfile', '-Command', ps_code },
|
||||
})
|
||||
else
|
||||
mp.command_native({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
args = { 'trash', path },
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
function remove_current_file()
|
||||
local count = mp.get_property_number("playlist-count")
|
||||
local pos = mp.get_property_number("playlist-pos")
|
||||
local new_pos = 0
|
||||
|
||||
if pos == count - 1 then
|
||||
new_pos = pos - 1
|
||||
else
|
||||
new_pos = pos + 1
|
||||
end
|
||||
|
||||
mp.set_property_number("playlist-pos", new_pos)
|
||||
|
||||
if pos > -1 then
|
||||
mp.command("playlist-remove " .. pos)
|
||||
end
|
||||
end
|
||||
|
||||
function handle_confirm_key()
|
||||
local path = mp.get_property("path")
|
||||
|
||||
if file_to_delete == path then
|
||||
mp.commandv("show-text", "")
|
||||
delete_file(file_to_delete)
|
||||
remove_current_file()
|
||||
remove_bindings()
|
||||
file_to_delete = ""
|
||||
end
|
||||
end
|
||||
|
||||
function cleanup()
|
||||
remove_bindings()
|
||||
file_to_delete = ""
|
||||
mp.commandv("show-text", "")
|
||||
end
|
||||
|
||||
function get_bindings()
|
||||
return {
|
||||
{ confirm_key, handle_confirm_key },
|
||||
}
|
||||
end
|
||||
|
||||
function add_bindings()
|
||||
if #key_bindings > 0 then
|
||||
return
|
||||
end
|
||||
|
||||
local script_name = mp.get_script_name()
|
||||
|
||||
for _, bind in ipairs(get_bindings()) do
|
||||
local name = script_name .. "_key_" .. (#key_bindings + 1)
|
||||
key_bindings[#key_bindings + 1] = name
|
||||
mp.add_forced_key_binding(bind[1], name, bind[2])
|
||||
end
|
||||
end
|
||||
|
||||
function remove_bindings()
|
||||
if #key_bindings == 0 then
|
||||
return
|
||||
end
|
||||
|
||||
for _, name in ipairs(key_bindings) do
|
||||
mp.remove_key_binding(name)
|
||||
end
|
||||
|
||||
key_bindings = {}
|
||||
end
|
||||
|
||||
function client_message(event)
|
||||
local path = mp.get_property("path")
|
||||
|
||||
if event.args[1] == "delete-file" and #event.args == 1 then
|
||||
delete_file(path)
|
||||
remove_current_file()
|
||||
elseif event.args[1] == "delete-file" and #event.args == 3 and #key_bindings == 0 then
|
||||
confirm_key = event.args[2]
|
||||
mp.add_timeout(10, cleanup)
|
||||
add_bindings()
|
||||
file_to_delete = path
|
||||
mp.commandv("show-text", event.args[3], "10000")
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_event("client-message", client_message)
|
||||
@@ -1,396 +0,0 @@
|
||||
-- evafast.lua
|
||||
--
|
||||
-- Much speed.
|
||||
--
|
||||
-- Jumps forwards when right arrow is tapped, speeds up when it's held.
|
||||
-- Inspired by bilibili.com's player. Allows you to have both seeking and fast-forwarding on the same key.
|
||||
-- Also supports toggling fastforward mode with a keypress.
|
||||
-- Adjust --input-ar-delay to define when to start fastforwarding.
|
||||
-- Define --hr-seek if you want accurate seeking.
|
||||
-- If you just want a nicer fastforward.lua without hybrid key behavior, set seek_distance to 0.
|
||||
-- Consider setting --sub-filter-regex="\`\s*\'" (on Linux) to ignore empty lines.
|
||||
|
||||
local options = {
|
||||
-- How far to jump on press, set to 0 to disable seeking and force fastforward
|
||||
seek_distance = 5,
|
||||
|
||||
-- Playback speed modifier, applied once every speed_interval until cap is reached
|
||||
speed_increase = 0.1,
|
||||
speed_decrease = 0.1,
|
||||
|
||||
-- At what interval to apply speed modifiers
|
||||
speed_interval = 0.05,
|
||||
|
||||
-- Playback speed cap
|
||||
speed_cap = 2,
|
||||
|
||||
-- Playback speed cap when subtitles are displayed, ignored when equal to speed_cap
|
||||
subs_speed_cap = 1.6,
|
||||
|
||||
-- Multiply current speed by modifier before adjustment (exponential speedup)
|
||||
-- Use much lower values than default e.g. speed_increase=0.05, speed_decrease=0.025
|
||||
multiply_modifier = false,
|
||||
|
||||
-- Show current speed on the osd (or flash speed if using uosc)
|
||||
show_speed = true,
|
||||
|
||||
-- Show current speed on the osd when toggled (or flash speed if using uosc)
|
||||
show_speed_toggled = true,
|
||||
|
||||
-- Show current speed on the osd when speeding up towards a target time (or flash speed if using uosc)
|
||||
show_speed_target = false,
|
||||
|
||||
-- Show seek actions on the osd (or flash timeline if using uosc)
|
||||
show_seek = true,
|
||||
|
||||
-- Look ahead for smoother transition when subs_speed_cap is set
|
||||
subs_lookahead = true,
|
||||
|
||||
-- Symbols prepended to the osd message
|
||||
osd_symbol = "{\\fnmpv-osd-symbols} {\\r}",
|
||||
osd_rewind = "{\\fnmpv-osd-symbols} {\\r}"
|
||||
}
|
||||
|
||||
mp.options = require "mp.options"
|
||||
mp.options.read_options(options, "evafast", function() end)
|
||||
|
||||
local uosc_available = false
|
||||
local has_subtitle = true
|
||||
local speedup_target = nil
|
||||
local toggled_display = true
|
||||
local toggled = false
|
||||
local toggled_rewind = false
|
||||
local speedup = false
|
||||
local original_speed = 1
|
||||
local next_sub_at = -1
|
||||
local rewinding = false
|
||||
local forced_slowdown = false
|
||||
local file_duration = 0
|
||||
local last_key_state = "up"
|
||||
local was_rewinding = false
|
||||
|
||||
local ass_start = mp.get_property_osd("osd-ass-cc/0")
|
||||
local ass_stop = mp.get_property_osd("osd-ass-cc/1")
|
||||
|
||||
local function speed_transition(current_speed, target_speed)
|
||||
local speed_correction = current_speed >= target_speed and -options.speed_decrease or options.speed_increase
|
||||
|
||||
local time_for_correction = 0
|
||||
local adjusted_speed = current_speed
|
||||
|
||||
while adjusted_speed ~= target_speed do
|
||||
time_for_correction = time_for_correction + options.speed_interval * adjusted_speed
|
||||
|
||||
if options.multiply_modifier then
|
||||
adjusted_speed = adjusted_speed + adjusted_speed * speed_correction
|
||||
else
|
||||
adjusted_speed = adjusted_speed + speed_correction
|
||||
end
|
||||
|
||||
if (current_speed < target_speed and adjusted_speed > target_speed) or (current_speed > target_speed and adjusted_speed < target_speed) then
|
||||
adjusted_speed = target_speed
|
||||
end
|
||||
end
|
||||
|
||||
return time_for_correction
|
||||
end
|
||||
|
||||
local function next_sub(current_time)
|
||||
local sub_delay = mp.get_property_native("sub-delay", 0)
|
||||
local sub_visible = mp.get_property_bool("sub-visibility")
|
||||
|
||||
if sub_visible then
|
||||
mp.set_property_bool("sub-visibility", false)
|
||||
end
|
||||
|
||||
mp.command("no-osd sub-step 1")
|
||||
|
||||
local sub_next_delay = mp.get_property_native("sub-delay", 0)
|
||||
mp.set_property("sub-delay", sub_delay)
|
||||
|
||||
if sub_visible then
|
||||
mp.set_property_bool("sub-visibility", sub_visible)
|
||||
end
|
||||
|
||||
if sub_delay - sub_next_delay == 0 then
|
||||
return -2
|
||||
end
|
||||
|
||||
local sub_next = current_time + sub_delay - sub_next_delay
|
||||
|
||||
normalized = math.floor(sub_next * 1000 + 0.5) / 1000
|
||||
return normalized
|
||||
end
|
||||
|
||||
local function flash_state(current_speed, display, forced)
|
||||
local uosc_show = uosc_available and (display == nil or display == "uosc")
|
||||
local osd_show = not uosc_available and (display == nil or display == "osd")
|
||||
|
||||
local show_special = (not speedup_target and options.show_speed_toggled) or (speedup_target and options.show_speed_target)
|
||||
local show_toggled = show_special and (toggled or not speedup)
|
||||
local show_regular = not toggled and toggled_display and options.show_speed
|
||||
|
||||
if current_speed and (show_regular or show_toggled or forced) then
|
||||
if uosc_show then
|
||||
mp.command("script-binding uosc/flash-speed")
|
||||
elseif osd_show then
|
||||
if current_speed == true then
|
||||
current_speed = mp.get_property_number("speed", 1)
|
||||
end
|
||||
mp.osd_message(ass_start .. (was_rewinding and options.osd_rewind or options.osd_symbol) .. ass_stop .. string.format("x%.1f", current_speed))
|
||||
end
|
||||
elseif not current_speed and options.show_seek then
|
||||
if uosc_show then
|
||||
mp.command("script-binding uosc/flash-timeline")
|
||||
elseif osd_show then
|
||||
mp.osd_message(ass_start .. (was_rewinding and options.osd_rewind or options.osd_symbol))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function ensure_timer(reset)
|
||||
if not reset and speed_timer:is_enabled() then return end
|
||||
|
||||
speed_timer.timeout = 0
|
||||
speed_timer:resume()
|
||||
speed_timer.timeout = options.speed_interval
|
||||
end
|
||||
|
||||
local function evafast_speedup(toggle)
|
||||
if not toggled and not speedup_target and not speed_timer:is_enabled() then
|
||||
original_speed = mp.get_property_number("speed", 1)
|
||||
end
|
||||
|
||||
speedup = true
|
||||
|
||||
if toggle then
|
||||
toggled = true
|
||||
end
|
||||
|
||||
ensure_timer()
|
||||
end
|
||||
|
||||
local function evafast_slowdown(display)
|
||||
forced_slowdown = false
|
||||
if not display then
|
||||
toggled_display = false
|
||||
end
|
||||
toggled = false
|
||||
speedup = false
|
||||
|
||||
ensure_timer()
|
||||
end
|
||||
|
||||
local function evafast_toggle()
|
||||
if toggled_rewind then
|
||||
mp.set_property("play-dir", "+")
|
||||
end
|
||||
toggled_rewind = false
|
||||
if speedup then
|
||||
evafast_slowdown()
|
||||
else
|
||||
evafast_speedup(true)
|
||||
end
|
||||
end
|
||||
|
||||
local function evafast_toggle_rewind()
|
||||
rewinding = not speedup
|
||||
mp.set_property("play-dir", rewinding and "-" or "+")
|
||||
evafast_toggle()
|
||||
toggled_rewind = rewinding
|
||||
end
|
||||
|
||||
local function adjust_speed()
|
||||
local current_time = mp.get_property_number("time-pos", 0)
|
||||
local current_speed = mp.get_property_number("speed", 1)
|
||||
local target_speed = original_speed
|
||||
|
||||
if speedup then
|
||||
target_speed = options.speed_cap
|
||||
|
||||
if has_subtitle and target_speed ~= options.subs_speed_cap then
|
||||
local sub_displayed = mp.get_property("sub-start") ~= nil
|
||||
|
||||
if sub_displayed then
|
||||
target_speed = options.subs_speed_cap
|
||||
elseif options.subs_lookahead then
|
||||
if next_sub_at < current_time and next_sub_at ~= -2 then
|
||||
next_sub_at = next_sub(current_time)
|
||||
end
|
||||
if target_speed ~= options.subs_speed_cap and next_sub_at > current_time then
|
||||
local time_for_correction = speed_transition(options.speed_cap, options.subs_speed_cap)
|
||||
if current_time + time_for_correction >= next_sub_at then
|
||||
target_speed = options.subs_speed_cap
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if speedup_target ~= nil then
|
||||
local effective_speedup_target = speedup_target >= 0 and speedup_target or (file_duration + speedup_target)
|
||||
|
||||
if current_time >= effective_speedup_target then
|
||||
evafast_slowdown()
|
||||
else
|
||||
local time_for_correction = speed_transition(current_speed, original_speed)
|
||||
if current_time + time_for_correction > effective_speedup_target or forced_slowdown then
|
||||
forced_slowdown = true
|
||||
speedup = false
|
||||
target_speed = original_speed
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if math.floor(target_speed * 1000 + 0.5) == math.floor(current_speed * 1000 + 0.5) then
|
||||
if forced_slowdown or (not toggled and (not speedup or options.subs_speed_cap == options.speed_cap or (not has_subtitle and not speedup_target))) then
|
||||
speed_timer:kill()
|
||||
toggled_display = true
|
||||
if speedup_target ~= nil then
|
||||
evafast_slowdown()
|
||||
end
|
||||
speedup_target = nil
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
local new_speed = current_speed
|
||||
local speed_correction = 0
|
||||
|
||||
if options.multiply_modifier then
|
||||
speed_correction = current_speed * options.speed_increase
|
||||
else
|
||||
speed_correction = options.speed_increase
|
||||
end
|
||||
|
||||
if current_speed > target_speed then
|
||||
new_speed = math.max(current_speed - speed_correction, target_speed)
|
||||
else
|
||||
new_speed = math.min(current_speed + speed_correction, target_speed)
|
||||
end
|
||||
|
||||
mp.set_property("speed", new_speed)
|
||||
|
||||
flash_state(new_speed)
|
||||
end
|
||||
|
||||
speed_timer = mp.add_periodic_timer(100, adjust_speed)
|
||||
speed_timer:kill()
|
||||
|
||||
local function evafast(keypress, rewind)
|
||||
was_rewinding = false
|
||||
if rewinding and not toggled_rewind and (not rewind or (keypress["event"] == "up" and last_key_state ~= "down")) then
|
||||
rewinding = false
|
||||
was_rewinding = true
|
||||
mp.set_property("play-dir", "+")
|
||||
end
|
||||
if rewind then
|
||||
was_rewinding = true
|
||||
end
|
||||
|
||||
if keypress["event"] == "down" then
|
||||
if not speed_timer:is_enabled() then
|
||||
if not toggled and not speedup_target then
|
||||
original_speed = mp.get_property_number("speed", 1)
|
||||
end
|
||||
flash_state(nil, "osd")
|
||||
flash_state(1, "uosc", true)
|
||||
end
|
||||
toggled_display = true
|
||||
speed_timer:stop()
|
||||
if options.seek_distance == 0 then
|
||||
keypress["event"] = "repeat"
|
||||
end
|
||||
end
|
||||
|
||||
if keypress["event"] == "press" or keypress["event"] == "up" and last_key_state ~= "repeat" then
|
||||
if not toggled and not speedup_target then
|
||||
speed_timer:kill()
|
||||
mp.set_property("speed", original_speed)
|
||||
end
|
||||
flash_state()
|
||||
ensure_timer()
|
||||
if rewind then
|
||||
if not toggled_rewind then
|
||||
rewinding = false
|
||||
mp.set_property("play-dir", "+") -- unnecessary in some cases
|
||||
end
|
||||
mp.commandv("seek", -options.seek_distance)
|
||||
else
|
||||
mp.commandv("seek", options.seek_distance)
|
||||
end
|
||||
elseif keypress["event"] == "repeat" and last_key_state ~= "repeat" then
|
||||
speedup = true
|
||||
ensure_timer()
|
||||
if rewind then
|
||||
mp.set_property("play-dir", "-")
|
||||
rewinding = true
|
||||
end
|
||||
elseif keypress["event"] == "up" and not toggled and not speedup_target then
|
||||
evafast_slowdown(true)
|
||||
ensure_timer(true)
|
||||
end
|
||||
|
||||
last_key_state = keypress["event"]
|
||||
end
|
||||
|
||||
local function evafast_rewind(keypress)
|
||||
evafast(keypress, true)
|
||||
end
|
||||
|
||||
mp.observe_property("duration", "native", function(prop, val)
|
||||
file_duration = val or 0
|
||||
end)
|
||||
|
||||
mp.observe_property("sid", "native", function(prop, val)
|
||||
has_subtitle = (val or 0) ~= 0
|
||||
next_sub_at = -1
|
||||
end)
|
||||
|
||||
mp.observe_property("sub-start", "native", function(prop, val)
|
||||
next_sub_at = -1
|
||||
end)
|
||||
|
||||
mp.register_event("file-loaded", function()
|
||||
next_sub_at = -1
|
||||
end)
|
||||
|
||||
mp.register_event("seek", function()
|
||||
next_sub_at = -1
|
||||
end)
|
||||
|
||||
mp.register_script_message("uosc-version", function(version)
|
||||
uosc_available = true
|
||||
end)
|
||||
|
||||
mp.register_script_message("speedup-target", function(time)
|
||||
local current_time = mp.get_property_number("time-pos", 0)
|
||||
sign = string.sub(time, 1, 1)
|
||||
time = tonumber(time) or 0
|
||||
|
||||
if sign == "+" then
|
||||
time = current_time + time
|
||||
end
|
||||
|
||||
if current_time >= time and time >= 0 then
|
||||
speedup_target = nil
|
||||
evafast_slowdown()
|
||||
return
|
||||
end
|
||||
speedup_target = time
|
||||
evafast_speedup()
|
||||
end)
|
||||
|
||||
mp.register_script_message("get-version", function(script)
|
||||
mp.commandv("script-message-to", script, "evafast-version", "2.0")
|
||||
end)
|
||||
|
||||
mp.add_key_binding("RIGHT", "evafast", evafast, {repeatable = true, complex = true})
|
||||
mp.add_key_binding(nil, "evafast-rewind", evafast_rewind, {repeatable = true, complex = true})
|
||||
mp.add_key_binding(nil, "flash-speed", function() flash_state(true, nil, true) end)
|
||||
mp.add_key_binding(nil, "speedup", evafast_speedup)
|
||||
mp.add_key_binding(nil, "slowdown", evafast_slowdown)
|
||||
mp.add_key_binding(nil, "toggle", evafast_toggle)
|
||||
mp.add_key_binding(nil, "toggle-rewind", evafast_toggle_rewind)
|
||||
|
||||
mp.commandv("script-message-to", "uosc", "get-version", mp.get_script_name())
|
||||
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020 Oscar Manglaras
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -1,229 +0,0 @@
|
||||
# mpv-file-browser
|
||||
|
||||

|
||||
|
||||
This script allows users to browse and open files and folders entirely from within mpv. The script uses nothing outside the mpv API, so should work identically on all platforms. The browser can move up and down directories, start playing files and folders, or add them to the queue.
|
||||
|
||||
By default only file types compatible with mpv will be shown, but this can be changed in the config file.
|
||||
|
||||
This script requires at least **mpv v0.33**.
|
||||
|
||||
Originally, file-browser worked with versions of mpv going back to
|
||||
v0.31, you can find those older versions of file-browser in the
|
||||
[mpv-v0.31 branch](https://github.com/CogentRedTester/mpv-file-browser/tree/mpv-v0.31).
|
||||
That branch will no longer be receiving any feature updates,
|
||||
but I will try to fix any bugs that are reported on the issue
|
||||
tracker.
|
||||
|
||||
## Installation
|
||||
|
||||
### Basic
|
||||
|
||||
Clone this git repository into the mpv `~~/scripts` directory and
|
||||
change the name of the folder from `mpv-file-browser` to `file-browser`.
|
||||
You can then pull to receive updates.
|
||||
Alternatively, you can download the zip and extract the contents to `~~/scripts/file-browser`.
|
||||
`~~/` is the mpv config directory which is typically `~/.config/mpv/` on linux and `%APPDATA%/mpv/` on windows.
|
||||
|
||||
### Configuration
|
||||
|
||||
Create a `file_browser.conf` file in the `~~/script-opts/` directory to configure the script.
|
||||
See [docs/file_browser.conf](docs/file_browser.conf) for the full list of options and their default values.
|
||||
The [`root` option](#root-directory) may be worth tweaking for your system.
|
||||
|
||||
### Addons
|
||||
|
||||
To use [addons](addons/README.md) place addon files in the `~~/script-modules/file-browser-addons/` directory.
|
||||
|
||||
### Custom Keybinds
|
||||
To setup [custom keybinds](docs/custom-keybinds.md) create a `~~/script-opts/file-browser-keybinds.json` file.
|
||||
Do **not** copy the `file-browser-keybinds.json` file
|
||||
stored in this repository, that file is a collection of random examples, many of which are for completely different
|
||||
operating systems. Use them and the [docs](docs/custom-keybinds.md) to create your own collection of keybinds.
|
||||
|
||||
### File Structure
|
||||
|
||||
<details>
|
||||
<summary>Expected directory tree (basic):</summary>
|
||||
|
||||
```
|
||||
~~/
|
||||
├── script-opts
|
||||
│ └── file_browser.conf
|
||||
└── scripts
|
||||
└── file-browser
|
||||
├── addons/
|
||||
├── docs/
|
||||
├── modules/
|
||||
├── screenshots/
|
||||
├── LICENSE
|
||||
├── main.lua
|
||||
└── README.md
|
||||
```
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>Expected directory tree (full):</summary>
|
||||
|
||||
```
|
||||
~~/
|
||||
├── script-modules
|
||||
│ └── file-browser-addons
|
||||
│ ├── addon1.lua
|
||||
│ ├── addon2.lua
|
||||
│ └── etc.lua
|
||||
├── script-opts
|
||||
│ ├── file_browser.conf
|
||||
│ └── file-browser-keybinds.json
|
||||
└── scripts
|
||||
└── file-browser
|
||||
├── addons/
|
||||
├── docs/
|
||||
├── modules/
|
||||
├── screenshots/
|
||||
├── LICENSE
|
||||
├── main.lua
|
||||
└── README.md
|
||||
```
|
||||
</details>
|
||||
|
||||
## Keybinds
|
||||
|
||||
The following keybinds are set by default
|
||||
|
||||
| Key | Name | Description |
|
||||
|-------------|----------------------------------|-------------------------------------------------------------------------------|
|
||||
| MENU | browse-files | toggles the browser |
|
||||
| Ctrl+o | open-browser | opens the browser |
|
||||
| Alt+o | browse-directory/get-user-input | opens a dialogue box to type in a directory - requires [mpv-user-input](#mpv-user-input) when mpv < v0.38 |
|
||||
|
||||
The following dynamic keybinds are only set while the browser is open:
|
||||
|
||||
| Key | Name | Description |
|
||||
|-------------|---------------|-------------------------------------------------------------------------------|
|
||||
| ESC | close | closes the browser or clears the selection |
|
||||
| ENTER | play | plays the currently selected file or folder |
|
||||
| Shift+ENTER | play_append | appends the current file or folder to the playlist |
|
||||
| Alt+ENTER | play_autoload | loads playlist entries before and after the selected file (like autoload.lua) |
|
||||
| RIGHT | down_dir | enter the currently selected directory |
|
||||
| LEFT | up_dir | move to the parent directory |
|
||||
| DOWN | scroll_down | move selector down the list |
|
||||
| UP | scroll_up | move selector up the list |
|
||||
| PGDWN | page_down | move selector down the list by a page (the num_entries option) |
|
||||
| PGUP | page_up | move selector up the list by a page (the num_entries option) |
|
||||
| Shift+PGDWN | list_bottom | move selector to the bottom of the list |
|
||||
| Shift+PGUP | list_top | move selector to the top of the list |
|
||||
| HOME | goto_current | move to the directory of the currently playing file |
|
||||
| Shift+HOME | goto_root | move to the root directory |
|
||||
| Alt+LEFT | history_back | move to previously open directory |
|
||||
| Alt+RIGHT | history_forward| move forwards again in history to the next directory |
|
||||
| Ctrl+r | reload | reload current directory |
|
||||
| Ctrl+Shift+r| cache/clear | clears the directory cache (disabled by default) |
|
||||
| s | select_mode | toggles multiselect mode |
|
||||
| S | select_item | toggles selection for the current item |
|
||||
| Ctrl+a | select_all | select all items in the current directory |
|
||||
| Ctrl+f | find/find | Opens a text input to search the contents of the folder - requires [mpv-user-input](#mpv-user-input) when mpv < v0.38|
|
||||
| Ctrl+F | find/find_advanced| Allows using [Lua Patterns](https://www.lua.org/manual/5.1/manual.html#5.4.1) in the search input|
|
||||
| n | find/next | Jumps to the next matching entry for the latest search term |
|
||||
| N | find/prev | Jumps to the previous matching entry for the latest search term |
|
||||
|
||||
When attempting to play or append a subtitle file the script will instead load the subtitle track into the existing video.
|
||||
|
||||
The behaviour of the autoload keybind can be reversed with the `autoload` script-opt.
|
||||
By default the playlist will only be autoloaded if `Alt+ENTER` is used on a single file, however when the option is switched autoload will always be used on single files *unless* `Alt+ENTER` is used. Using autoload on a directory, or while appending an item, will not work.
|
||||
|
||||
## Root Directory
|
||||
|
||||
To accomodate for both windows and linux this script has its own virtual root directory where drives and file folders can be manually added. The root directory can only contain folders.
|
||||
|
||||
The root directory is set using the `root` option, which is a comma separated list of directories. Entries are sent through mpv's `expand-path` command. By default `~/` and `C:/` are set on Windows
|
||||
and `~/` and `/` are set on non-Windows systems.
|
||||
Extra locations can be added manually, for example, my Windows root looks like:
|
||||
|
||||
`root=~/,C:/,D:/,E:/,Z:/`
|
||||
|
||||
## Multi-Select
|
||||
|
||||
By default file-browser only opens/appends the single item that the cursor has selected.
|
||||
However, using the `s` keybinds specified above, it is possible to select multiple items to open all at once. Selected items are shown in a different colour to the cursor.
|
||||
When in multiselect mode the cursor changes colour and scrolling up and down the list will drag the current selection. If the original item was unselected, then dragging will select items, if the original item was selected, then dragging will unselect items.
|
||||
|
||||
When multiple items are selected using the open or append commands all selected files will be added to the playlist in the order they appear on the screen.
|
||||
The currently selected (with the cursor) file will be ignored, instead the first multi-selected item in the folder will follow replace/append behaviour as normal, and following selected items will be appended to the playlist afterwards in the order that they appear on the screen.
|
||||
|
||||
## Custom Keybinds
|
||||
|
||||
File-browser also supports custom keybinds. These keybinds send normal input commands, but the script will substitute characters in the command strings for specific values depending on the currently open directory, and currently selected item.
|
||||
This allows for a wide range of customised behaviour, such as loading additional audio tracks from the browser, or copying the path of the selected item to the clipboard.
|
||||
|
||||
To see how to enable and use custom keybinds, see [custom-keybinds.md](docs/custom-keybinds.md).
|
||||
|
||||
## Add-ons
|
||||
|
||||
Add-ons are ways to add extra features to file-browser, for example adding support for network file servers like ftp, or implementing virtual directories in the root like recently opened files.
|
||||
They can be enabled by setting `addon` script-opt to yes, and placing the addon file into the `~~/script-modules/file-browser-addons/` directory.
|
||||
|
||||
For a list of existing addons see the [wiki](https://github.com/CogentRedTester/mpv-file-browser/wiki/Addon-List).
|
||||
For instructions on writing your own addons see [addons.md](docs/addons.md).
|
||||
|
||||
## Script Messages
|
||||
|
||||
File-browser supports a small number of script messages that allow the user or other scripts to talk with the browser.
|
||||
|
||||
### `browse-directory`
|
||||
|
||||
`script-message browse-directory [directory]`
|
||||
|
||||
Opens the given directory in the browser. If the browser is currently closed it will be opened.
|
||||
|
||||
### `get-directory-contents`
|
||||
|
||||
`script-message get-directory-contents [directory] [response-string]`
|
||||
|
||||
Reads the given directory, and sends the resulting tables to the specified script-message in the format:
|
||||
|
||||
`script-message [response-string] [list] [opts]`
|
||||
|
||||
The [list](docs/addons.md#the-list-array)
|
||||
and [opts](docs/addons.md#the-opts-table)
|
||||
tables are formatted as json strings through the `mp.utils.format_json` function.
|
||||
See [addons.md](docs/addons.md) for how the tables are structured, and what each field means.
|
||||
The API_VERSION field of the `opts` table refers to what version of the addon API file browser is using.
|
||||
The `response-string` refers to an arbitrary script-message that the tables should be sent to.
|
||||
|
||||
This script-message allows other scripts to utilise file-browser's directory parsing capabilities, as well as those of the file-browser addons.
|
||||
|
||||
## Conditional Auto-Profiles
|
||||
|
||||
file-browser provides a property that can be used with [conditional auto-profiles](https://mpv.io/manual/master/#conditional-auto-profiles)
|
||||
to detect when the browser is open.
|
||||
On mpv v0.36+ you should use the `user-data` property with the `file_browser/open` boolean.
|
||||
|
||||
Here is an example of an auto-profile that hides the OSC logo when using file-browser in an idle window:
|
||||
|
||||
```properties
|
||||
[hide-logo]
|
||||
profile-cond= idle_active and user_data.file_browser.open
|
||||
profile-restore=copy
|
||||
osc=no
|
||||
```
|
||||
|
||||
On older versions of mpv you can use the `file_browser-open` field of the `shared-script-properties` property:
|
||||
|
||||
```properties
|
||||
[hide-logo]
|
||||
profile-cond= idle_active and shared_script_properties["file_browser-open"] == "yes"
|
||||
profile-restore=copy
|
||||
osc=no
|
||||
```
|
||||
|
||||
See [#55](https://github.com/CogentRedTester/mpv-file-browser/issues/55) for more details on this.
|
||||
|
||||
## [mpv-user-input](https://github.com/CogentRedTester/mpv-user-input)
|
||||
|
||||
mpv-user-input is a script that provides an API to request text input from the user over the OSD.
|
||||
It was built using `console.lua` as a base, so supports almost all the same text input commands.
|
||||
If `user-input.lua` is loaded by mpv, and `user-input-module` is in the `~~/script-modules/` directory,
|
||||
then using `Alt+o` will open an input box that can be used to directly enter directories for file-browser to open.
|
||||
|
||||
Mpv v0.38 added the `mp.input` module, which means `mpv-user-input` is no-longer necessary from that version onwards.
|
||||
@@ -1,12 +0,0 @@
|
||||
# addons
|
||||
|
||||
Add-ons are ways to add extra features to file-browser, for example adding support for network file servers like ftp, or implementing virtual directories in the root like recently opened files.
|
||||
They can be enabled by setting `addon` script-opt to yes, and placing the addon file into the `~~/script-modules/file-browser-addons/` directory.
|
||||
|
||||
Browsing filesystems provided by add-ons should feel identical to the normal handling of the script,
|
||||
but they may require extra commandline tools be installed.
|
||||
|
||||
Since addons are loaded programatically from the addon directory it is possible for anyone to write their own addon.
|
||||
Instructions on how to do this are available [here](../docs/addons.md).
|
||||
|
||||
For a list of available addons see the [wiki](https://github.com/CogentRedTester/mpv-file-browser/wiki/Addon-List).
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,330 +0,0 @@
|
||||
# Custom Keybinds
|
||||
|
||||
File-browser also supports custom keybinds. These keybinds send normal input commands, but the script will substitute characters in the command strings for specific values depending on the currently open directory, and currently selected item.
|
||||
This allows for a wide range of customised behaviour, such as loading additional audio tracks from the browser, or copying the path of the selected item to the clipboard.
|
||||
|
||||
The feature is disabled by default, but is enabled with the `custom_keybinds` script-opt.
|
||||
Keybinds are declared in the `~~/script-opts/file-browser-keybinds.json` file, the config takes the form of an array of json objects, with the following keys:
|
||||
|
||||
| option | required | default | description |
|
||||
|---------------|----------|------------|--------------------------------------------------------------------------------------------|
|
||||
| key | yes | - | the key to bind the command to - same syntax as input.conf |
|
||||
| command | yes | - | json array of commands and arguments |
|
||||
| name | no | numeric id | name of the script-binding - see [modifying default keybinds](#modifying-default-keybinds) |
|
||||
| condition | no | - | a Lua [expression](#expressions) - the keybind will only run if this evaluates to true |
|
||||
| flags | no | - | flags to send to the mpv add_keybind function - see [here](https://mpv.io/manual/master/#lua-scripting-[,flags]]\)) |
|
||||
| filter | no | - | run the command on just a file (`file`) or folder (`dir`) |
|
||||
| parser | no | - | run the command only in directories provided by the specified parser. |
|
||||
| multiselect | no | `false` | command is run on all selected items |
|
||||
| multi-type | no | `repeat` | which multiselect mode to use - `repeat` or `concat` |
|
||||
| delay | no | `0` | time to wait between sending repeated multi commands |
|
||||
| concat-string | no | `' '` (space) | string to insert between items when concatenating multi commands |
|
||||
| passthrough | no | - | force or ban passthrough behaviour - see [passthrough](#passthrough-keybinds) |
|
||||
| api_version | no | - | tie the keybind to a particular [addon API version](./addons.md#api-version), printing warnings and throwing errors if the keybind is used with wrong versions |
|
||||
|
||||
Example:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["print-text", "example"],
|
||||
}
|
||||
```
|
||||
|
||||
The command can also be an array of arrays, in order to send multiple commands at once:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP2",
|
||||
"command": [
|
||||
["print-text", "example2"],
|
||||
["show-text", "example2"]
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Filter should not be included unless one wants to limit what types of list entries the command should be run on.
|
||||
To only run the command for directories use `dir`, to only run the command for files use `file`.
|
||||
|
||||
The parser filter is for filtering keybinds to only work inside directories loaded by specific parsers.
|
||||
There are two parsers in the base script, the default parser for native filesystems is called `file`, while the root parser is called `root`.
|
||||
Other parsers can be supplied by addons, and use the addon's filename with `-browser.lua` or just `.lua` stripped unless otherwise stated.
|
||||
For example `ftp-browser.lua` would have a parser called `ftp`.
|
||||
You can set the filter to match multiple parsers by separating the names with spaces.
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP2",
|
||||
"command": [ ["print-text", "example3"] ],
|
||||
"parser": "ftp file"
|
||||
}
|
||||
```
|
||||
|
||||
The `flags` field is mostly only useful for addons, but can also be useful if one wants a key to be repeatable.
|
||||
In this case the the keybind would look like the following:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "p",
|
||||
"command": ["print-text", "spam-text"],
|
||||
"flags": { "repeatable": true }
|
||||
}
|
||||
```
|
||||
|
||||
## Codes
|
||||
|
||||
The script will scan every string in the command for the special substitution strings, they are:
|
||||
|
||||
| code | description |
|
||||
|--------|---------------------------------------------------------------------|
|
||||
| `%%` | escape code for `%` |
|
||||
| `%f` | filepath of the selected item |
|
||||
| `%n` | filename of the selected item |
|
||||
| `%p` | currently open directory |
|
||||
| `%q` | currently open directory but preferring the directory label |
|
||||
| `%d` | name of the current directory (characters between the last two '/') |
|
||||
| `%r` | name of the parser for the currently open directory |
|
||||
| `%x` | number of items in the currently open directory |
|
||||
| `%i` | the 1-based index of the selected item in the list |
|
||||
| `%j` | the 1-based index of the item in a multiselection - returns 1 for single selections |
|
||||
|
||||
Additionally, using the uppercase forms of those codes will send the substituted string through the `string.format("%q", str)` function.
|
||||
This adds double quotes around the string and automatically escapes any characters which would break the string encapsulation.
|
||||
This is not necessary for most mpv commands, but can be very useful when sending commands to the OS with the `run` command,
|
||||
or when passing values into [expressions](#conditional-command-condition-command).
|
||||
|
||||
Example of a command to add an audio track:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "Ctrl+a",
|
||||
"command": ["audio-add", "%f"],
|
||||
"filter": "file"
|
||||
}
|
||||
```
|
||||
|
||||
Any commands that contain codes representing specific items (`%f`, `%n`, `%i` etc) will
|
||||
not be run if no item is selected (for example in an empty directory).
|
||||
In these cases [passthrough](#passthrough-keybinds) rules will apply.
|
||||
|
||||
## Multiselect Commands
|
||||
|
||||
When multiple items are selected the command can be run for all items in the order they appear on the screen.
|
||||
This can be controlled by the `multiselect` flag, which takes a boolean value.
|
||||
When not set the flag defaults to `false`.
|
||||
|
||||
There are two different multiselect modes, controlled by the `multi-type` option. There are two options:
|
||||
|
||||
### `repeat`
|
||||
|
||||
The default mode that sends the commands once for each item that is selected.
|
||||
If time is needed between running commands of multiple selected items (for example, due to file handlers) then the `delay` option can be used to set a duration (in seconds) between commands.
|
||||
|
||||
### `concat`
|
||||
|
||||
Run a single command, but replace item specific codes with a concatenated string made from each selected item.
|
||||
For example `["print-text", "%n" ]` would print the name of each item selected separated by `' '` (space).
|
||||
The string inserted between each item is determined by the `concat-string` option, but `' '` is the default.
|
||||
|
||||
## Passthrough Keybinds
|
||||
|
||||
When loading keybinds from the json file file-browser will move down the list and overwrite any existing bindings with the same key.
|
||||
This means the lower an item on the list, the higher preference it has.
|
||||
However, file-browser implements a layered passthrough system for its keybinds; if a keybind is blocked from running by user filters, then the next highest preference command will be sent, continuing until a command is sent or there are no more keybinds.
|
||||
The default dynamic keybinds are considered the lowest priority.
|
||||
|
||||
The `filter`, `parser`, and `condition` options can all trigger passthrough, as well as some [codes](#codes).
|
||||
If a multi-select command is run on multiple items then passthrough will occur if any of the selected items fail the filters.
|
||||
|
||||
Passthrough can be forcibly disabled or enabled using the passthrough option.
|
||||
When set to `true` passthrough will always be activate regardless of the state of the filters.
|
||||
|
||||
## Modifying Default Keybinds
|
||||
|
||||
Since the custom keybinds are applied after the default dynamic keybinds they can be used to overwrite the default bindings.
|
||||
Setting new keys for the existing binds can be done with the `script-binding [binding-name]` command, where `binding-name` is the full name of the keybinding.
|
||||
For this script the names of the dynamic keybinds are in the format `file_browser/dynamic/[name]` where `name` is a unique identifier documented in the [keybinds](README.md#keybinds) table.
|
||||
|
||||
For example to change the scroll buttons from the arrows to the scroll wheel:
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"key": "WHEEL_UP",
|
||||
"command": ["script-binding", "file_browser/dynamic/scroll_up"]
|
||||
},
|
||||
{
|
||||
"key": "WHEEL_DOWN",
|
||||
"command": ["script-binding", "file_browser/dynamic/scroll_down"]
|
||||
},
|
||||
{
|
||||
"key": "UP",
|
||||
"command": ["osd-auto", "add", "volume", "2"]
|
||||
},
|
||||
{
|
||||
"key": "DOWN",
|
||||
"command": ["osd-auto", "add", "volume", "-2"]
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
Custom keybinds can be called using the same method, but users must set the `name` value inside the `file-browser-keybinds.json` file.
|
||||
To avoid conflicts custom keybinds use the format: `file_browser/dynamic/custom/[name]`.
|
||||
|
||||
## Expressions
|
||||
|
||||
Expressions are used to evaluate Lua code into a string that can be used for commands.
|
||||
These behave similarly to those used for [`profile-cond`](https://mpv.io/manual/master/#conditional-auto-profiles)
|
||||
values. In an expression the `mp`, `mp.msg`, and `mp.utils` modules are available as `mp`, `msg`, and `utils` respectively.
|
||||
Additionally, in mpv v0.38+ the `mp.input` module is available as `input`.
|
||||
|
||||
The file-browser [addon API](addons/addons.md#the-api) is available as `fb` and if [mpv-user-input](https://github.com/CogentRedTester/mpv-user-input)
|
||||
is installed then user-input API will be available in `user_input`.
|
||||
|
||||
This example only runs the keybind if the browser is in the Windows C drive or if
|
||||
the selected item is a matroska file:
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["print-text", "in my C:/ drive!"],
|
||||
"condition": "(%P):find('C:/') == 1"
|
||||
},
|
||||
{
|
||||
"key": "KP2",
|
||||
"command": ["print-text", "Matroska File!"],
|
||||
"condition": "fb.get_extension(%N) == 'mkv'"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
If the `condition` expression contains any item specific codes (`%F`, `%I`, etc) then it will be
|
||||
evaluated on each individual item, otherwise it will evaluated once for the whole keybind.
|
||||
If a code is invalid (for example using `%i` in empty directories) then the expression returns false.
|
||||
|
||||
There are some utility script messages that extend the power of expressions.
|
||||
[`conditional-command`](#conditional-command-condition-command) allows one to specify conditions that
|
||||
can apply to individual items or commands. The tradeoff is that you lose the automated passthrough behaviour.
|
||||
There is also [`evaluate-expressions`](#evaluate-expressions-command) which allows one to evaluate expressions inside commands.
|
||||
|
||||
## Utility Script Messages
|
||||
|
||||
There are a small number of custom script messages defined by file-browser to support custom keybinds.
|
||||
|
||||
### `=> <command...>`
|
||||
|
||||
A basic script message that makes it easier to chain multiple utility script messages together.
|
||||
Any `=>` string will be substituted for `script-message`.
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "=>", "delay-command", "%j * 2", "=>", "evaluate-expressions", "print-text", "!{%j * 2}"],
|
||||
"multiselect": true
|
||||
}
|
||||
```
|
||||
|
||||
### `conditional-command [condition] <command...>`
|
||||
|
||||
Runs the following command only if the condition [expression](#expressions) is `true`.
|
||||
|
||||
This example command will only run if the player is currently paused:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "conditional-command", "mp.get_property_bool('pause')", "print-text", "is paused"],
|
||||
}
|
||||
```
|
||||
|
||||
Custom keybind codes are evaluated before the expressions.
|
||||
|
||||
This example only runs if the currently selected item in the browser has a `.mkv` extension:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "conditional-command", "fb.get_extension(%N) == 'mkv'", "print-text", "a matroska file"],
|
||||
}
|
||||
```
|
||||
|
||||
### `delay-command [delay] <command...>`
|
||||
|
||||
Delays the following command by `[delay]` seconds.
|
||||
Delay is an [expression](#expressions).
|
||||
|
||||
The following example will send the `print-text` command after 5 seconds:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "delay-command", "5", "print-text", "example"],
|
||||
}
|
||||
```
|
||||
|
||||
### `evaluate-expressions <command...>`
|
||||
|
||||
Evaluates embedded Lua expressions in the following command.
|
||||
Expressions have the same behaviour as the [`conditional-command`](#conditional-command-condition-command) script-message.
|
||||
Expressions must be surrounded by `!{}` characters.
|
||||
Additional `!` characters can be placed at the start of the expression to
|
||||
escape the evaluation.
|
||||
|
||||
For example the following keybind will print 3 to the console:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "evaluate-expressions", "print-text", "!{1 + 2}"],
|
||||
}
|
||||
```
|
||||
|
||||
This example replaces all `/` characters in the path with `\`
|
||||
(note that the `\` needs to be escaped twice, once for the json file, and once for the string in the lua expression):
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "evaluate-expressions", "print-text", "!{ string.gsub(%F, '/', '\\\\') }"],
|
||||
}
|
||||
```
|
||||
|
||||
### `run-statement <statement...>`
|
||||
|
||||
Runs the following string a as a Lua statement. This is similar to an [expression](#expressions),
|
||||
but instead of the code evaluating to a value it must run a series of statements. Basically it allows
|
||||
for function bodies to be embedded into custom keybinds. All the same modules are available.
|
||||
If multiple strings are sent to the script-message then they will be concatenated together with newlines.
|
||||
|
||||
The following keybind will use [mpv-user-input](https://github.com/CogentRedTester/mpv-user-input) to
|
||||
rename items in file-browser:
|
||||
|
||||
```json
|
||||
{
|
||||
"key": "KP1",
|
||||
"command": ["script-message", "run-statement",
|
||||
"assert(user_input, 'install mpv-user-input!')",
|
||||
|
||||
"local line, err = user_input.get_user_input_co({",
|
||||
"id = 'rename-file',",
|
||||
"source = 'custom-keybind',",
|
||||
"request_text = 'rename file:',",
|
||||
"queueable = true,",
|
||||
"default_input = %N,",
|
||||
"cursor_pos = #(%N) - #fb.get_extension(%N, '')",
|
||||
"})",
|
||||
|
||||
"if not line then return end",
|
||||
"os.rename(%F, utils.join_path(%P, line))",
|
||||
|
||||
"fb.rescan()"
|
||||
],
|
||||
"parser": "file",
|
||||
"multiselect": true
|
||||
}
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
See [here](file-browser-keybinds.json).
|
||||
@@ -1,51 +0,0 @@
|
||||
[
|
||||
{
|
||||
"comment": "deletes the currently selected file",
|
||||
"key": "Alt+DEL",
|
||||
"command": ["script-message", "run-statement", "os.remove(%F) ; fb.rescan()"],
|
||||
"multiselect": true,
|
||||
"multi-type": "repeat"
|
||||
},
|
||||
{
|
||||
"comment": "opens the currently selected items in a new mpv window",
|
||||
"key": "Ctrl+ENTER",
|
||||
"command": ["run", "mpv", "%F"],
|
||||
"multiselect": true,
|
||||
"multi-type": "concat"
|
||||
},
|
||||
{
|
||||
"key": "Ctrl+c",
|
||||
"command": [
|
||||
["run", "powershell", "-command", "Set-Clipboard", "%F"],
|
||||
["print-text", "copied filepath to clipboard"]
|
||||
],
|
||||
"condition": "fb.get_platform() == 'windows'",
|
||||
"api_version": "1.9.0",
|
||||
"multiselect": true,
|
||||
"delay": 0.3
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"key": "WHEEL_UP",
|
||||
"command": ["script-binding", "file_browser/dynamic/scroll_up"],
|
||||
"flags": { "repeat": true }
|
||||
},
|
||||
{
|
||||
"key": "WHEEL_DOWN",
|
||||
"command": ["script-binding", "file_browser/dynamic/scroll_down"],
|
||||
"flags": { "repeat": true }
|
||||
},
|
||||
{
|
||||
"key": "MBTN_LEFT",
|
||||
"command": ["script-binding", "file_browser/dynamic/down_dir"]
|
||||
},
|
||||
{
|
||||
"key": "MBTN_RIGHT",
|
||||
"command": ["script-binding", "file_browser/dynamic/up_dir"]
|
||||
},
|
||||
{
|
||||
"key": "MBTN_MID",
|
||||
"command": ["script-binding", "file_browser/dynamic/play"]
|
||||
}
|
||||
]
|
||||
@@ -1,247 +0,0 @@
|
||||
#######################################################
|
||||
# This is the default config file for mpv-file-browser
|
||||
# https://github.com/CogentRedTester/mpv-file-browser
|
||||
#######################################################
|
||||
|
||||
####################################
|
||||
######## browser settings ##########
|
||||
####################################
|
||||
|
||||
# Root directories, separated by commas.
|
||||
# `C:/` and `/` are automatically added on Windows and non-windows systems, respectively.
|
||||
# The order of automatically added items can be changed by entering them here manually.
|
||||
root=~/
|
||||
|
||||
# characters to separate root directories, each character works individually
|
||||
root_separators=,
|
||||
|
||||
# number of entries to show on the screen at once
|
||||
num_entries=20
|
||||
|
||||
# number of directories to keep in the history.
|
||||
# A size of 0 disables the history.
|
||||
history_size=100
|
||||
|
||||
# wrap the cursor around the top and bottom of the list
|
||||
wrap=no
|
||||
|
||||
# enables loading external addons
|
||||
addons=yes
|
||||
|
||||
# enable custom keybinds
|
||||
# the keybind json file must go in ~~/script-opts
|
||||
custom_keybinds=yes
|
||||
|
||||
# Automatically detect windows drives and adds them to the root.
|
||||
# Using Ctrl+r in the root will run another scan.
|
||||
auto_detect_windows_drives=yes
|
||||
|
||||
# when opening the browser in idle mode prefer the current working directory over the root
|
||||
# note that the working directory is set as the 'current' directory regardless, so `home` will
|
||||
# move the browser there even if this option is set to false
|
||||
default_to_working_directory=no
|
||||
|
||||
# When opening the browser prefer the directory last opened by a previous mpv instance of file-browser.
|
||||
# Overrides the `default_to_working_directory` option.
|
||||
# Requires `save_last_opened_directory` to be `yes`.
|
||||
# Uses the internal `last-opened-directory` addon.
|
||||
default_to_last_opened_directory=no
|
||||
|
||||
# Whether to save the last opened directory.
|
||||
save_last_opened_directory=no
|
||||
|
||||
# Move the cursor to the currently playing item (if available) when the playing file changes.
|
||||
cursor_follows_playing_item=no
|
||||
|
||||
####################################
|
||||
########## filter settings #########
|
||||
####################################
|
||||
|
||||
# only show files compatible with mpv in the browser
|
||||
filter_files=yes
|
||||
|
||||
# file-browser only shows files that are compatible with mpv by default
|
||||
# adding a file extension to this list will add it to the extension whitelist
|
||||
# extensions are separated with commas, do not use any spaces
|
||||
extension_whitelist=
|
||||
|
||||
# add file extensions to this list to disable default filetypes
|
||||
# note that this will also override audio/subtitle_extension options below
|
||||
extension_blacklist=
|
||||
|
||||
# files with these extensions will be added as additional audio tracks for the current file instead of appended to the playlist
|
||||
# items on this list are automatically added to the extension whitelist
|
||||
audio_extensions=mka,dts,dtshd,dts-hd,truehd,true-hd
|
||||
|
||||
# files with these extensions will be added as additional subtitle tracks for the current file instead of appended to the playlist
|
||||
# items on this list are automatically added to the extension whitelist
|
||||
subtitle_extensions=etf,etf8,utf-8,idx,sub,srt,rt,ssa,ass,mks,vtt,sup,scc,smi,lrc,pgs
|
||||
|
||||
# filter directories or files starting with a period like .config for linux systems
|
||||
# auto will show dot entries on windows and hide them otherwise
|
||||
filter_dot_dirs=auto
|
||||
filter_dot_files=auto
|
||||
|
||||
####################################
|
||||
###### file loading settings #######
|
||||
####################################
|
||||
|
||||
# this option reverses the behaviour of the alt+ENTER keybind
|
||||
# when disabled the keybind is required to enable autoload for the file
|
||||
# when enabled the keybind disables autoload for the file
|
||||
autoload=no
|
||||
|
||||
# experimental feature that recurses directories concurrently when appending items to the playlist
|
||||
# this feature has the potential for massive performance improvements when using addons with asynchronous IO
|
||||
concurrent_recursion=yes
|
||||
|
||||
# maximum number of recursions that can run concurrently
|
||||
# if this number is too high it risks overflowing the mpv event queue, which will cause some directories to be dropped entirely
|
||||
max_concurrency=16
|
||||
|
||||
# substitute forward slashes for backslashes when appending a local file to the playlist
|
||||
# may be useful on windows systems
|
||||
substitute_backslash=no
|
||||
|
||||
# if autoload is triggered by selecting the currently playing file, then
|
||||
# the current file will have it's watch-later config saved before being closed and re-opened
|
||||
# essentially the current file will not be restarted
|
||||
autoload_save_current=yes
|
||||
|
||||
####################################
|
||||
### directory parsing settings #####
|
||||
####################################
|
||||
|
||||
# a directory cache to improve directory reading time,
|
||||
# enable if it takes a long time to load directories.
|
||||
# May cause 'ghost' files to be shown that no-longer exist or
|
||||
# fail to show files that have recently been created.
|
||||
# Reloading the directory with Ctrl+r will never use the cache.
|
||||
# Use Ctrl+Shift+r to forcibly clear the cache.
|
||||
cache=no
|
||||
|
||||
# Enables the internal `ls` addon that parses directories using the `ls` commandline tool.
|
||||
# Allows directory parsing to run concurrently, which prevents the browser from locking up.
|
||||
# Automatically disables itself on Windows systems.
|
||||
ls_parser=yes
|
||||
|
||||
# Enables the internal `windir` addon that parses directories using the `dir` command in cmd.exe.
|
||||
# Allows directory parsing to run concurrently, which prevents the browser from locking up.
|
||||
# Automatically disables itself on non-Windows systems.
|
||||
windir_parser=yes
|
||||
|
||||
# when moving up a directory do not stop on empty protocol schemes like `ftp://`
|
||||
# e.g. moving up from `ftp://localhost/` will move straight to the root instead of `ftp://`
|
||||
skip_protocol_schemes=yes
|
||||
|
||||
# map optical device paths to their respective file paths,
|
||||
# e.g. mapping bd:// to the value of the bluray-device property
|
||||
map_bd_device=yes
|
||||
map_dvd_device=yes
|
||||
map_cdda_device=yes
|
||||
|
||||
####################################
|
||||
########## misc settings ###########
|
||||
####################################
|
||||
|
||||
# turn the OSC idle screen off and on when opening and closing the browser
|
||||
# this should only be enabled if file-browser is the only thing controlling the idle-screen,
|
||||
# if multiple sources attempt to control the idle-screen at the same time it can cause unexpected behaviour.
|
||||
toggle_idlescreen=no
|
||||
|
||||
# interpret backslashes `\` in paths as forward slashes `/`
|
||||
# this is useful on Windows, which natively uses backslashes.
|
||||
# As backslashes are valid filename characters in Unix systems this could
|
||||
# cause mangled paths, though such filenames are rare.
|
||||
# Use `yes` and `no` to enable/disable. `auto` tries to use the mpv `platform`
|
||||
# property (mpv v0.36+) to decide. If the property is unavailable it defaults to `yes`.
|
||||
normalise_backslash=auto
|
||||
|
||||
# Set the current open status of the browser in the `file_browser/open` field of the `user-data` property.
|
||||
# This property is only available in mpv v0.36+.
|
||||
set_user_data=yes
|
||||
|
||||
# Set the current open status of the browser in the `file_browser-open` field of the `shared-script-properties` property.
|
||||
# This property is deprecated. When it is removed in mpv v0.37 file-browser will automatically disable this option.
|
||||
set_shared_script_properties=no
|
||||
|
||||
####################################
|
||||
########## file overrides #########
|
||||
####################################
|
||||
|
||||
# directory to load external modules - currently just user-input-module
|
||||
module_directory=~~/script-modules
|
||||
addon_directory=~~/script-modules/file-browser-addons
|
||||
custom_keybinds_file=~~/script-opts/file-browser-keybinds.json
|
||||
last_opened_directory_file=~~state/file_browser-last_opened_directory
|
||||
|
||||
####################################
|
||||
######### style settings ###########
|
||||
####################################
|
||||
|
||||
# Replace the user's home directory with `~/` in the header.
|
||||
# Uses the internal home-label addon.
|
||||
home_label=yes
|
||||
|
||||
# force file-browser to use a specific alignment (default: top-left)
|
||||
# set to auto to use the default mpv osd-align options
|
||||
# Options: 'auto'|'top'|'center'|'bottom'
|
||||
align_y=top
|
||||
# Options: 'auto'|'left'|'center'|'right'
|
||||
align_x=left
|
||||
|
||||
# The format string used for the header. Uses custom-keybind substitution codes to
|
||||
# dynamically change the contents of the header (see: docs/custom-keybinds.md#codes)
|
||||
# and supports the additional code `%^`which re-applies the default header ass style.
|
||||
# The original style used before the current one was: %q\N----------------------------------------------------
|
||||
format_string_header={\fnMonospace}[%i/%x]%^ %q\N------------------------------------------------------------------
|
||||
|
||||
# The format strings used for the wrappers. Supports custom-keybind substitution codes, and
|
||||
# supports two additional codes: `%<` and `%>` to show the number of items before and after the visible list, respectively.
|
||||
# Setting these options to empty strings will disable the wrappers.
|
||||
# Original styles used before the current ones were:
|
||||
# top: %< item(s) above\N
|
||||
# bottom: \N%> item(s) remaining
|
||||
format_string_topwrapper=...
|
||||
format_string_bottomwrapper=...
|
||||
|
||||
# allows custom icons be set for the folder and cursor
|
||||
# the `\h` character is a hard space to add padding
|
||||
folder_icon={\p1}m 6.52 0 l 1.63 0 b 0.73 0 0.01 0.73 0.01 1.63 l 0 11.41 b 0 12.32 0.73 13.05 1.63 13.05 l 14.68 13.05 b 15.58 13.05 16.31 12.32 16.31 11.41 l 16.31 3.26 b 16.31 2.36 15.58 1.63 14.68 1.63 l 8.15 1.63{\p0}\h
|
||||
cursor_icon={\p1}m 14.11 6.86 l 0.34 0.02 b 0.25 -0.02 0.13 -0 0.06 0.08 b -0.01 0.16 -0.02 0.28 0.04 0.36 l 3.38 5.55 l 3.38 5.55 3.67 6.15 3.81 6.79 3.79 7.45 3.61 8.08 3.39 8.5l 0.04 13.77 b -0.02 13.86 -0.01 13.98 0.06 14.06 b 0.11 14.11 0.17 14.13 0.24 14.13 b 0.27 14.13 0.31 14.13 0.34 14.11 l 14.11 7.28 b 14.2 7.24 14.25 7.16 14.25 7.07 b 14.25 6.98 14.2 6.9 14.11 6.86{\p0}\h
|
||||
cursor_icon_flipped={\p1}m 0.13 6.86 l 13.9 0.02 b 14 -0.02 14.11 -0 14.19 0.08 b 14.26 0.16 14.27 0.28 14.21 0.36 l 10.87 5.55 l 10.87 5.55 10.44 6.79 10.64 8.08 10.86 8.5l 14.21 13.77 b 14.27 13.86 14.26 13.98 14.19 14.06 b 14.14 14.11 14.07 14.13 14.01 14.13 b 13.97 14.13 13.94 14.13 13.9 14.11 l 0.13 7.28 b 0.05 7.24 0 7.16 0 7.07 b 0 6.98 0.05 6.9 0.13 6.86{\p0}\h
|
||||
|
||||
# set the opacity of fonts in hexadecimal from 00 (opaque) to FF (transparent)
|
||||
font_opacity_selection_marker=99
|
||||
|
||||
# print the header in bold font
|
||||
font_bold_header=yes
|
||||
|
||||
# scale the size of the browser; 2 would double the size, 0.5 would halve it, etc.
|
||||
# the header and wrapper scaling is relative to the base scaling
|
||||
scaling_factor_base=1
|
||||
scaling_factor_header=1.4
|
||||
scaling_factor_wrappers=1
|
||||
|
||||
# set custom font names, blank is the default
|
||||
# setting custom fonts for the folder/cursor can fix broken or missing icons
|
||||
font_name_header=
|
||||
font_name_body=
|
||||
font_name_wrappers=
|
||||
font_name_folder=
|
||||
font_name_cursor=
|
||||
|
||||
# set custom font colours
|
||||
# colours are in hexadecimal format in Blue Green Red order
|
||||
# note that this is the opposite order to RGB colour codes
|
||||
font_colour_header=00ccff
|
||||
font_colour_body=ffffff
|
||||
font_colour_wrappers=00ccff
|
||||
font_colour_cursor=00ccff
|
||||
font_colour_escape_chars=413eff
|
||||
|
||||
# these are colours applied to list items in different states
|
||||
font_colour_selected=fce788
|
||||
font_colour_multiselect=fcad88
|
||||
font_colour_playing=33ff66
|
||||
font_colour_playing_multiselected=22b547
|
||||
@@ -1,76 +0,0 @@
|
||||
--[[
|
||||
mpv-file-browser
|
||||
|
||||
This script allows users to browse and open files and folders entirely from within mpv.
|
||||
The script uses nothing outside the mpv API, so should work identically on all platforms.
|
||||
The browser can move up and down directories, start playing files and folders, or add them to the queue.
|
||||
|
||||
For full documentation see: https://github.com/CogentRedTester/mpv-file-browser
|
||||
]]--
|
||||
|
||||
local mp = require 'mp'
|
||||
|
||||
local o = require 'modules.options'
|
||||
|
||||
-- setting the package paths
|
||||
package.path = mp.command_native({"expand-path", o.module_directory}).."/?.lua;"..package.path
|
||||
|
||||
local addons = require 'modules.addons'
|
||||
local keybinds = require 'modules.keybinds'
|
||||
local setup = require 'modules.setup'
|
||||
local controls = require 'modules.controls'
|
||||
local observers = require 'modules.observers'
|
||||
local script_messages = require 'modules.script-messages'
|
||||
|
||||
local input_loaded, input = pcall(require, "mp.input")
|
||||
local user_input_loaded, user_input = pcall(require, "user-input-module")
|
||||
|
||||
|
||||
-- root and addon setup
|
||||
setup.root()
|
||||
addons.load_internal_addons()
|
||||
if o.addons then addons.load_external_addons() end
|
||||
addons.setup_addons()
|
||||
|
||||
--these need to be below the addon setup in case any parsers add custom entries
|
||||
setup.extensions_list()
|
||||
keybinds.setup_keybinds()
|
||||
|
||||
-- property observers
|
||||
mp.observe_property('path', 'string', observers.current_directory)
|
||||
if o.map_dvd_device then mp.observe_property('dvd-device', 'string', observers.dvd_device) end
|
||||
if o.map_bd_device then mp.observe_property('bluray-device', 'string', observers.bd_device) end
|
||||
if o.map_cdda_device then mp.observe_property('cdda-device', 'string', observers.cd_device) end
|
||||
if o.align_x == 'auto' then mp.observe_property('osd-align-x', 'string', observers.osd_align) end
|
||||
if o.align_y == 'auto' then mp.observe_property('osd-align-y', 'string', observers.osd_align) end
|
||||
|
||||
-- scripts messages
|
||||
mp.register_script_message('=>', script_messages.chain)
|
||||
mp.register_script_message('delay-command', script_messages.delay_command)
|
||||
mp.register_script_message('conditional-command', script_messages.conditional_command)
|
||||
mp.register_script_message('evaluate-expressions', script_messages.evaluate_expressions)
|
||||
mp.register_script_message('run-statement', script_messages.run_statement)
|
||||
|
||||
mp.register_script_message('browse-directory', controls.browse_directory)
|
||||
mp.register_script_message("get-directory-contents", script_messages.get_directory_contents)
|
||||
|
||||
--declares the keybind to open the browser
|
||||
mp.add_key_binding('MENU','browse-files', controls.toggle)
|
||||
mp.add_key_binding('Ctrl+o','open-browser', controls.open)
|
||||
|
||||
if input_loaded then
|
||||
mp.add_key_binding("Alt+o", "browse-directory/get-user-input", function()
|
||||
input.get({
|
||||
prompt = "open directory:",
|
||||
id = "file-browser/browse-directory",
|
||||
submit = function(text)
|
||||
controls.browse_directory(text)
|
||||
input.terminate()
|
||||
end
|
||||
})
|
||||
end)
|
||||
elseif user_input_loaded then
|
||||
mp.add_key_binding("Alt+o", "browse-directory/get-user-input", function()
|
||||
user_input.get_user_input(controls.browse_directory, {request_text = "open directory:"})
|
||||
end)
|
||||
end
|
||||
@@ -1,204 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local parser_API = require 'modules.apis.parser'
|
||||
|
||||
local API_MAJOR, API_MINOR, API_PATCH = g.API_VERSION:match("(%d+)%.(%d+)%.(%d+)")
|
||||
API_MAJOR, API_MINOR, API_PATCH = tonumber(API_MAJOR), tonumber(API_MINOR), tonumber(API_PATCH)
|
||||
|
||||
---checks if the given parser has a valid version number
|
||||
---@param parser Parser|Keybind
|
||||
---@param id string
|
||||
---@return boolean?
|
||||
local function check_api_version(parser, id)
|
||||
if parser.version then
|
||||
msg.warn(('%s: use of the `version` field is deprecated - use `api_version` instead'):format(id))
|
||||
parser.api_version = parser.version
|
||||
end
|
||||
|
||||
local version = parser.api_version
|
||||
if type(version) ~= 'string' then return msg.error(("%s: field `api_version` must be a string, got %s"):format(id, tostring(version))) end
|
||||
|
||||
local major, minor = version:match("(%d+)%.(%d+)")
|
||||
major, minor = tonumber(major), tonumber(minor)
|
||||
|
||||
if not major or not minor then
|
||||
return msg.error(("%s: invalid version number, expected v%d.%d.x, got v%s"):format(id, API_MAJOR, API_MINOR, version))
|
||||
elseif major ~= API_MAJOR then
|
||||
return msg.error(("%s has wrong major version number, expected v%d.x.x, got, v%s"):format(id, API_MAJOR, version))
|
||||
elseif minor > API_MINOR then
|
||||
msg.warn(("%s has newer minor version number than API, expected v%d.%d.x, got v%s"):format(id, API_MAJOR, API_MINOR, version))
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
---create a unique id for the given parser
|
||||
---@param parser Parser
|
||||
local function set_parser_id(parser)
|
||||
local name = parser.name
|
||||
if g.parsers[name] then
|
||||
local n = 2
|
||||
name = parser.name.."_"..n
|
||||
while g.parsers[name] do
|
||||
n = n + 1
|
||||
name = parser.name.."_"..n
|
||||
end
|
||||
end
|
||||
|
||||
g.parsers[name] = parser
|
||||
g.parsers[parser] = { id = name }
|
||||
end
|
||||
|
||||
---runs an addon in a separate environment
|
||||
---@param path string
|
||||
---@return unknown
|
||||
local function run_addon(path)
|
||||
local name_sqbr = string.format("[%s]", path:match("/([^/]*)%.lua$"))
|
||||
local addon_environment = fb_utils.redirect_table(_G)
|
||||
addon_environment._G = addon_environment ---@diagnostic disable-line inject-field
|
||||
|
||||
--gives each addon custom debug messages
|
||||
addon_environment.package = fb_utils.redirect_table(addon_environment.package) ---@diagnostic disable-line inject-field
|
||||
addon_environment.package.loaded = fb_utils.redirect_table(addon_environment.package.loaded)
|
||||
local msg_module = {
|
||||
log = function(level, ...) msg.log(level, name_sqbr, ...) end,
|
||||
fatal = function(...) return msg.fatal(name_sqbr, ...) end,
|
||||
error = function(...) return msg.error(name_sqbr, ...) end,
|
||||
warn = function(...) return msg.warn(name_sqbr, ...) end,
|
||||
info = function(...) return msg.info(name_sqbr, ...) end,
|
||||
verbose = function(...) return msg.verbose(name_sqbr, ...) end,
|
||||
debug = function(...) return msg.debug(name_sqbr, ...) end,
|
||||
trace = function(...) return msg.trace(name_sqbr, ...) end,
|
||||
}
|
||||
addon_environment.print = msg_module.info ---@diagnostic disable-line inject-field
|
||||
|
||||
addon_environment.require = function(module) ---@diagnostic disable-line inject-field
|
||||
if module == "mp.msg" then return msg_module end
|
||||
return require(module)
|
||||
end
|
||||
|
||||
---@type function?, string?
|
||||
local chunk, err
|
||||
if setfenv then ---@diagnostic disable-line deprecated
|
||||
--since I stupidly named a function loadfile I need to specify the global one
|
||||
--I've been using the name too long to want to change it now
|
||||
chunk, err = _G.loadfile(path)
|
||||
if not chunk then return msg.error(err) end
|
||||
setfenv(chunk, addon_environment) ---@diagnostic disable-line deprecated
|
||||
else
|
||||
chunk, err = _G.loadfile(path, "bt", addon_environment) ---@diagnostic disable-line redundant-parameter
|
||||
if not chunk then return msg.error(err) end
|
||||
end
|
||||
|
||||
---@diagnostic disable-next-line no-unknown
|
||||
local success, result = xpcall(chunk, fb_utils.traceback)
|
||||
return success and result or nil
|
||||
end
|
||||
|
||||
---Setup an internal or external parser.
|
||||
---Note that we're somewhat bypassing the type system here as we're converting from a
|
||||
---ParserConfig object to a Parser object. As such we need to make sure that the
|
||||
---we're doing everything correctly. A 2.0 release of the addon API could simplify
|
||||
---this by formally separating ParserConfigs from Parsers and providing an
|
||||
---API to register parsers.
|
||||
---@param parser ParserConfig
|
||||
---@param file string
|
||||
---@return nil
|
||||
local function setup_parser(parser, file)
|
||||
parser = setmetatable(parser, { __index = parser_API }) --[[@as Parser]]
|
||||
parser.name = parser.name or file:gsub("%-browser%.lua$", ""):gsub("%.lua$", "")
|
||||
|
||||
set_parser_id(parser)
|
||||
if not check_api_version(parser, file) then return msg.error("aborting load of parser", parser:get_id(), "from", file) end
|
||||
|
||||
msg.verbose("imported parser", parser:get_id(), "from", file)
|
||||
|
||||
--sets missing functions
|
||||
if not parser.can_parse then
|
||||
if parser.parse then parser.can_parse = function() return true end
|
||||
else parser.can_parse = function() return false end end
|
||||
end
|
||||
|
||||
if parser.priority == nil then parser.priority = 0 end
|
||||
if type(parser.priority) ~= "number" then return msg.error("parser", parser:get_id(), "needs a numeric priority") end
|
||||
|
||||
table.insert(g.parsers, parser)
|
||||
end
|
||||
|
||||
---load an external addon
|
||||
---@param file string
|
||||
---@param path string
|
||||
---@return nil
|
||||
local function setup_addon(file, path)
|
||||
if file:sub(-4) ~= ".lua" then return msg.verbose(path, "is not a lua file - aborting addon setup") end
|
||||
|
||||
local addon_parsers = run_addon(path) --[=[@as ParserConfig|ParserConfig[]]=]
|
||||
if addon_parsers and not next(addon_parsers) then return msg.verbose('addon', path, 'returned empry table - special case, ignoring') end
|
||||
if not addon_parsers or type(addon_parsers) ~= "table" then return msg.error("addon", path, "did not return a table") end
|
||||
|
||||
--if the table contains a priority key then we assume it isn't an array of parsers
|
||||
if not addon_parsers[1] then addon_parsers = {addon_parsers} end
|
||||
|
||||
for _, parser in ipairs(addon_parsers --[=[@as ParserConfig[]]=]) do
|
||||
setup_parser(parser, file)
|
||||
end
|
||||
end
|
||||
|
||||
---loading external addons
|
||||
---@param directory string
|
||||
---@return nil
|
||||
local function load_addons(directory)
|
||||
directory = fb_utils.fix_path(directory, true)
|
||||
|
||||
local files = utils.readdir(directory)
|
||||
if not files then return msg.verbose('not loading external addons - could not read', o.addon_directory) end
|
||||
|
||||
for _, file in ipairs(files) do
|
||||
setup_addon(file, directory..file)
|
||||
end
|
||||
end
|
||||
|
||||
local function load_internal_addons()
|
||||
local script_dir = mp.get_script_directory()
|
||||
if not script_dir then return msg.error('script is not being run as a directory script!') end
|
||||
local internal_addon_dir = script_dir..'/modules/addons/'
|
||||
load_addons(internal_addon_dir)
|
||||
end
|
||||
|
||||
local function load_external_addons()
|
||||
local addon_dir = mp.command_native({"expand-path", o.addon_directory..'/'}) --[[@as string|nil]]
|
||||
if not addon_dir then return msg.verbose('not loading external addons - could not resolve', o.addon_directory) end
|
||||
load_addons(addon_dir)
|
||||
end
|
||||
|
||||
---Orders the addons by priority, sets the parser index values,
|
||||
---and runs the setup methods of the addons.
|
||||
local function setup_addons()
|
||||
table.sort(g.parsers, function(a, b) return a.priority < b.priority end)
|
||||
|
||||
--we want to store the indexes of the parsers
|
||||
for i = #g.parsers, 1, -1 do g.parsers[ g.parsers[i] ].index = i end
|
||||
|
||||
--we want to run the setup functions for each addon
|
||||
for index, parser in ipairs(g.parsers) do
|
||||
if parser.setup then
|
||||
local success = xpcall(function() parser:setup() end, fb_utils.traceback)
|
||||
if not success then
|
||||
msg.error("parser", parser:get_id(), "threw an error in the setup method - removing from list of parsers")
|
||||
table.remove(g.parsers, index)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
---@class addons
|
||||
return {
|
||||
check_api_version = check_api_version,
|
||||
load_internal_addons = load_internal_addons,
|
||||
load_external_addons = load_external_addons,
|
||||
setup_addons = setup_addons,
|
||||
}
|
||||
@@ -1,146 +0,0 @@
|
||||
--[[
|
||||
This file is an internal file-browser addon.
|
||||
It should not be imported like a normal module.
|
||||
|
||||
Maintains a cache of the accessed directories to improve
|
||||
parsing speed. Disabled by default.
|
||||
]]
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local fb = require 'file-browser'
|
||||
|
||||
---@type ParserConfig
|
||||
local cacheParser = {
|
||||
name = 'cache',
|
||||
priority = 0,
|
||||
api_version = '1.9',
|
||||
}
|
||||
|
||||
---@class CacheEntry
|
||||
---@field list List
|
||||
---@field opts Opts?
|
||||
---@field timeout MPTimer
|
||||
|
||||
---@type table<string,CacheEntry>
|
||||
local cache = {}
|
||||
|
||||
---@type table<string,(async fun(list: List?, opts: Opts?))[]>
|
||||
local pending_parses = {}
|
||||
|
||||
---@param directories? string[]
|
||||
local function clear_cache(directories)
|
||||
if directories then
|
||||
msg.debug('clearing cache for', #directories, 'directorie(s)')
|
||||
for _, dir in ipairs(directories) do
|
||||
if cache[dir] then
|
||||
msg.trace('clearing cache for', dir)
|
||||
cache[dir].timeout:kill()
|
||||
cache[dir] = nil
|
||||
end
|
||||
end
|
||||
else
|
||||
msg.debug('clearing cache')
|
||||
for _, entry in pairs(cache) do
|
||||
entry.timeout:kill()
|
||||
end
|
||||
cache = {}
|
||||
end
|
||||
end
|
||||
|
||||
---@type string
|
||||
local prev_directory = ''
|
||||
|
||||
function cacheParser:can_parse(directory, parse_state)
|
||||
-- allows the cache to be forcibly used or bypassed with the
|
||||
-- cache/use parse property.
|
||||
if parse_state.properties.cache and parse_state.properties.cache.use ~= nil then
|
||||
if parse_state.source == 'browser' then prev_directory = directory end
|
||||
return parse_state.properties.cache.use
|
||||
end
|
||||
|
||||
-- the script message is guaranteed to always bypass the cache
|
||||
if parse_state.source == 'script-message' then return false end
|
||||
if not fb.get_opt('cache') or directory == '' then return false end
|
||||
|
||||
-- clear the cache if reloading the current directory in the browser
|
||||
-- this means that fb.rescan() should maintain expected behaviour
|
||||
if parse_state.source == 'browser' then
|
||||
if prev_directory == directory then clear_cache({directory}) end
|
||||
prev_directory = directory
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
---@async
|
||||
function cacheParser:parse(directory)
|
||||
if cache[directory] then
|
||||
msg.verbose('fetching', directory, 'contents from cache')
|
||||
cache[directory].timeout:kill()
|
||||
cache[directory].timeout:resume()
|
||||
return cache[directory].list, cache[directory].opts
|
||||
end
|
||||
|
||||
---@type List?, Opts?
|
||||
local list, opts
|
||||
|
||||
-- if another parse is already running on the same directory, then wait and use the same result
|
||||
if not pending_parses[directory] then
|
||||
pending_parses[directory] = {}
|
||||
list, opts = self:defer(directory)
|
||||
else
|
||||
msg.debug('parse for', directory, 'already running - waiting for other parse to finish...')
|
||||
table.insert(pending_parses[directory], fb.coroutine.callback(30))
|
||||
list, opts = coroutine.yield()
|
||||
end
|
||||
|
||||
local pending = pending_parses[directory]
|
||||
-- need to clear the pending parses before resuming them or they will also attempt to resume the parses
|
||||
pending_parses[directory] = nil
|
||||
if pending and #pending > 0 then
|
||||
msg.debug('resuming', #pending, 'pending parses for', directory)
|
||||
for _, cb in ipairs(pending) do
|
||||
cb(list, opts)
|
||||
end
|
||||
end
|
||||
|
||||
if not list then return end
|
||||
|
||||
-- pending will be truthy for the original parse and falsy for any parses that were pending
|
||||
if pending then
|
||||
msg.debug('storing', directory, 'contents in cache')
|
||||
cache[directory] = {
|
||||
list = list,
|
||||
opts = opts,
|
||||
timeout = mp.add_timeout(120, function() cache[directory] = nil end),
|
||||
}
|
||||
end
|
||||
|
||||
return list, opts
|
||||
end
|
||||
|
||||
cacheParser.keybinds = {
|
||||
{
|
||||
key = 'Ctrl+Shift+r',
|
||||
name = 'clear',
|
||||
command = function() clear_cache() ; fb.rescan() end,
|
||||
}
|
||||
}
|
||||
|
||||
-- provide method of clearing the cache through script messages
|
||||
mp.register_script_message('cache/clear', function(dirs)
|
||||
if not dirs then
|
||||
return clear_cache()
|
||||
end
|
||||
|
||||
---@type string[]?
|
||||
local directories = utils.parse_json(dirs)
|
||||
if not directories then msg.error('unable to parse', dirs) end
|
||||
|
||||
clear_cache(directories)
|
||||
end)
|
||||
|
||||
return cacheParser
|
||||
@@ -1,46 +0,0 @@
|
||||
-- This file is an internal file-browser addon.
|
||||
-- It should not be imported like a normal module.
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
---Parser for native filesystems
|
||||
---@type ParserConfig
|
||||
local file_parser = {
|
||||
name = "file",
|
||||
priority = 110,
|
||||
api_version = '1.0.0',
|
||||
}
|
||||
|
||||
--try to parse any directory except for the root
|
||||
function file_parser:can_parse(directory)
|
||||
return directory ~= ''
|
||||
end
|
||||
|
||||
--scans the given directory using the mp.utils.readdir function
|
||||
function file_parser:parse(directory)
|
||||
local new_list = {}
|
||||
local list1 = utils.readdir(directory, 'dirs')
|
||||
if list1 == nil then return nil end
|
||||
|
||||
--sorts folders and formats them into the list of directories
|
||||
for i=1, #list1 do
|
||||
local item = list1[i]
|
||||
|
||||
msg.trace(item..'/')
|
||||
table.insert(new_list, {name = item..'/', type = 'dir'})
|
||||
end
|
||||
|
||||
--appends files to the list of directory items
|
||||
local list2 = utils.readdir(directory, 'files')
|
||||
if list2 == nil then return nil end
|
||||
for i=1, #list2 do
|
||||
local item = list2[i]
|
||||
|
||||
msg.trace(item)
|
||||
table.insert(new_list, {name = item, type = 'file'})
|
||||
end
|
||||
return new_list
|
||||
end
|
||||
|
||||
return file_parser
|
||||
@@ -1,124 +0,0 @@
|
||||
--[[
|
||||
This file is an internal file-browser addon.
|
||||
It should not be imported like a normal module.
|
||||
|
||||
Allows searching the current directory.
|
||||
]]--
|
||||
|
||||
local msg = require "mp.msg"
|
||||
local fb = require "file-browser"
|
||||
local input_loaded, input = pcall(require, "mp.input")
|
||||
local user_input_loaded, user_input = pcall(require, "user-input-module")
|
||||
|
||||
---@type ParserConfig
|
||||
local find = {
|
||||
api_version = "1.3.0"
|
||||
}
|
||||
|
||||
---@type thread|nil
|
||||
local latest_coroutine = nil
|
||||
|
||||
---@type State
|
||||
local global_fb_state = getmetatable(fb.get_state()).__original
|
||||
|
||||
---@param name string
|
||||
---@param query string
|
||||
---@return boolean
|
||||
local function compare(name, query)
|
||||
if name:find(query) then return true end
|
||||
if name:lower():find(query) then return true end
|
||||
if name:upper():find(query) then return true end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
---@async
|
||||
---@param key Keybind
|
||||
---@param state State
|
||||
---@param co thread
|
||||
---@return boolean?
|
||||
local function main(key, state, co)
|
||||
if not state.list then return false end
|
||||
|
||||
---@type string
|
||||
local text
|
||||
if key.name == "find/find" then text = "Find: enter search string"
|
||||
else text = "Find: enter advanced search string" end
|
||||
|
||||
if input_loaded then
|
||||
input.get({
|
||||
prompt = text .. "\n>",
|
||||
id = "file-browser/find",
|
||||
submit = fb.coroutine.callback(),
|
||||
})
|
||||
elseif user_input_loaded then
|
||||
user_input.get_user_input( fb.coroutine.callback(), { text = text, id = "find", replace = true } )
|
||||
end
|
||||
|
||||
local query, error = coroutine.yield()
|
||||
if input_loaded then input.terminate() end
|
||||
if not query then return msg.debug(error) end
|
||||
|
||||
-- allow the directory to be changed before this point
|
||||
local list = fb.get_list()
|
||||
local parse_id = global_fb_state.co
|
||||
|
||||
if key.name == "find/find" then
|
||||
query = fb.pattern_escape(query)
|
||||
end
|
||||
|
||||
local results = {}
|
||||
|
||||
for index, item in ipairs(list) do
|
||||
if compare(item.label or item.name, query) then
|
||||
table.insert(results, index)
|
||||
end
|
||||
end
|
||||
|
||||
if (#results < 1) then
|
||||
msg.warn("No matching items for '"..query.."'")
|
||||
return
|
||||
end
|
||||
|
||||
--keep cycling through the search results if any are found
|
||||
--putting this into a separate coroutine removes any passthrough ambiguity
|
||||
--the final return statement should return to `step_find` not any other function
|
||||
---@async
|
||||
fb.coroutine.run(function()
|
||||
latest_coroutine = coroutine.running()
|
||||
---@type number
|
||||
local rindex = 1
|
||||
while (true) do
|
||||
|
||||
if rindex == 0 then rindex = #results
|
||||
elseif rindex == #results + 1 then rindex = 1 end
|
||||
|
||||
fb.set_selected_index(results[rindex])
|
||||
local direction = coroutine.yield(true) --[[@as number]]
|
||||
rindex = rindex + direction
|
||||
|
||||
if parse_id ~= global_fb_state.co then
|
||||
latest_coroutine = nil
|
||||
return
|
||||
end
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
local function step_find(key)
|
||||
if not latest_coroutine then return false end
|
||||
---@type number
|
||||
local direction = 0
|
||||
if key.name == "find/next" then direction = 1
|
||||
elseif key.name == "find/prev" then direction = -1 end
|
||||
return fb.coroutine.resume_err(latest_coroutine, direction)
|
||||
end
|
||||
|
||||
find.keybinds = {
|
||||
{"Ctrl+f", "find", main, {}},
|
||||
{"Ctrl+F", "find_advanced", main, {}},
|
||||
{"n", "next", step_find, {}},
|
||||
{"N", "prev", step_find, {}},
|
||||
}
|
||||
|
||||
return find
|
||||
@@ -1,31 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which displays ~/ for the home directory instead of the full path
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local fb = require "file-browser"
|
||||
|
||||
local home = fb.fix_path(mp.command_native({"expand-path", "~/"}) --[[@as string]], true)
|
||||
|
||||
---@type ParserConfig
|
||||
local home_label = {
|
||||
priority = 100,
|
||||
api_version = "1.0.0"
|
||||
}
|
||||
|
||||
function home_label:can_parse(directory)
|
||||
if not fb.get_opt('home_label') then return false end
|
||||
return directory:sub(1, home:len()) == home
|
||||
end
|
||||
|
||||
---@async
|
||||
function home_label:parse(directory)
|
||||
local list, opts = self:defer(directory)
|
||||
if not opts then opts = {} end
|
||||
if (not opts.directory or opts.directory == directory) and not opts.directory_label then
|
||||
opts.directory_label = "~/"..(directory:sub(home:len()+1) or "")
|
||||
end
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return home_label
|
||||
@@ -1,62 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which stores the last opened directory and
|
||||
sets it as the opened directory the next time mpv is opened.
|
||||
|
||||
Available at: https://github.com/CogentRedTester/mpv-file-browser/tree/master/addons
|
||||
]]--
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
local fb = require 'file-browser'
|
||||
|
||||
local state_file = mp.command_native({'expand-path', fb.get_opt('last_opened_directory_file')}) --[[@as string]]
|
||||
msg.verbose('using', state_file)
|
||||
|
||||
---@param directory? string
|
||||
---@return nil
|
||||
local function write_directory(directory)
|
||||
if not fb.get_opt('save_last_opened_directory') then return end
|
||||
|
||||
local file = io.open(state_file, 'w+')
|
||||
|
||||
if not file then return msg.error('could not open', state_file, 'for writing') end
|
||||
|
||||
directory = directory or fb.get_directory() or ''
|
||||
msg.verbose('writing', directory, 'to', state_file)
|
||||
file:write(directory)
|
||||
file:close()
|
||||
end
|
||||
|
||||
---@type ParserConfig
|
||||
local addon = {
|
||||
api_version = '1.7.0',
|
||||
priority = 0,
|
||||
}
|
||||
|
||||
function addon:setup()
|
||||
if not fb.get_opt('default_to_last_opened_directory') then return end
|
||||
|
||||
local file = io.open(state_file, "r")
|
||||
if not file then
|
||||
return msg.info('failed to open', state_file, 'for reading (may be due to first load)')
|
||||
end
|
||||
|
||||
local dir = file:read("*a")
|
||||
msg.verbose('setting default directory to', dir)
|
||||
fb.browse_directory(dir, false)
|
||||
file:close()
|
||||
end
|
||||
|
||||
function addon:can_parse(dir, parse_state)
|
||||
if parse_state.source == 'browser' then write_directory(dir) end
|
||||
return false
|
||||
end
|
||||
|
||||
function addon:parse()
|
||||
return nil
|
||||
end
|
||||
|
||||
mp.register_event('shutdown', function() write_directory() end)
|
||||
|
||||
return addon
|
||||
@@ -1,68 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which uses the Linux ls command to parse native directories
|
||||
This behaves near identically to the native parser, but IO is done asynchronously.
|
||||
|
||||
Available at: https://github.com/CogentRedTester/mpv-file-browser/tree/master/addons
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local msg = require "mp.msg"
|
||||
local fb = require "file-browser"
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
---@type ParserConfig
|
||||
local ls = {
|
||||
priority = 109,
|
||||
api_version = "1.9.0",
|
||||
name = "ls",
|
||||
keybind_name = "file"
|
||||
}
|
||||
|
||||
---@async
|
||||
---@param args string[]
|
||||
---@param parse_state ParseState
|
||||
---@return string|nil
|
||||
local function command(args, parse_state)
|
||||
local async = mp.command_native_async({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
args = args
|
||||
}, fb.coroutine.callback(30))
|
||||
|
||||
---@type boolean, boolean, MPVSubprocessResult
|
||||
local completed, _, cmd = parse_state:yield()
|
||||
if not completed then
|
||||
msg.warn('read timed out for:', table.unpack(args))
|
||||
mp.abort_async_command(async)
|
||||
return nil
|
||||
end
|
||||
|
||||
return cmd.status == 0 and cmd.stdout or nil
|
||||
end
|
||||
|
||||
function ls:can_parse(directory)
|
||||
if not fb.get_opt('ls_parser') then return false end
|
||||
return PLATFORM ~= 'windows' and directory ~= '' and not fb.get_protocol(directory)
|
||||
end
|
||||
|
||||
---@async
|
||||
function ls:parse(directory, parse_state)
|
||||
local list = {}
|
||||
local files = command({"ls", "-1", "-p", "-A", "-N", "--zero", "-L", directory}, parse_state)
|
||||
|
||||
if not files then return nil end
|
||||
|
||||
for str in files:gmatch("%Z+") do
|
||||
local is_dir = str:sub(-1) == "/"
|
||||
msg.trace(str)
|
||||
|
||||
table.insert(list, {name = str, type = is_dir and "dir" or "file"})
|
||||
end
|
||||
|
||||
return list
|
||||
end
|
||||
|
||||
return ls
|
||||
@@ -1,26 +0,0 @@
|
||||
-- This file is an internal file-browser addon.
|
||||
-- It should not be imported like a normal module.
|
||||
|
||||
local g = require 'modules.globals'
|
||||
|
||||
---Parser for the root.
|
||||
---@type ParserConfig
|
||||
local root_parser = {
|
||||
name = "root",
|
||||
priority = math.huge,
|
||||
api_version = '1.0.0',
|
||||
}
|
||||
|
||||
function root_parser:can_parse(directory)
|
||||
return directory == ''
|
||||
end
|
||||
|
||||
--we return the root directory exactly as setup
|
||||
function root_parser:parse()
|
||||
return g.root, {
|
||||
sorted = true,
|
||||
filtered = true,
|
||||
}
|
||||
end
|
||||
|
||||
return root_parser
|
||||
@@ -1,218 +0,0 @@
|
||||
--[[
|
||||
An addon for mpv-file-browser which uses the Windows dir command to parse native directories
|
||||
This behaves near identically to the native parser, but IO is done asynchronously.
|
||||
|
||||
Available at: https://github.com/CogentRedTester/mpv-file-browser/tree/master/addons
|
||||
]]--
|
||||
|
||||
local mp = require "mp"
|
||||
local msg = require "mp.msg"
|
||||
local fb = require "file-browser"
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
---@param bytes string
|
||||
---@return fun(): number, number
|
||||
local function byte_iterator(bytes)
|
||||
---@async
|
||||
---@return number?
|
||||
local function iter()
|
||||
for i = 1, #bytes do
|
||||
coroutine.yield(bytes:byte(i), i)
|
||||
end
|
||||
error('malformed utf16le string - expected byte but found end of string')
|
||||
end
|
||||
|
||||
return coroutine.wrap(iter)
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param by number
|
||||
---@return number
|
||||
local function lshift(bits, by)
|
||||
return bits * 2^by
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param by number
|
||||
---@return integer
|
||||
local function rshift(bits, by)
|
||||
return math.floor(bits / 2^by)
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param i number
|
||||
---@return number
|
||||
local function bits_below(bits, i)
|
||||
return bits % 2^i
|
||||
end
|
||||
|
||||
---@param bits number
|
||||
---@param i number exclusive
|
||||
---@param j number inclusive
|
||||
---@return integer
|
||||
local function bits_between(bits, i, j)
|
||||
return rshift(bits_below(bits, j), i)
|
||||
end
|
||||
|
||||
---@param bytes string
|
||||
---@return number[]
|
||||
local function utf16le_to_unicode(bytes)
|
||||
msg.trace('converting from utf16-le to unicode codepoints')
|
||||
|
||||
---@type number[]
|
||||
local codepoints = {}
|
||||
|
||||
local get_byte = byte_iterator(bytes)
|
||||
|
||||
while true do
|
||||
-- start of a char
|
||||
local success, little, i = pcall(get_byte)
|
||||
if not success then break end
|
||||
|
||||
local big = get_byte()
|
||||
local codepoint = little + lshift(big, 8)
|
||||
|
||||
if codepoint < 0xd800 or codepoint > 0xdfff then
|
||||
table.insert(codepoints, codepoint)
|
||||
else
|
||||
-- handling surrogate pairs
|
||||
-- grab the next two bytes to grab the low surrogate
|
||||
local high_pair = codepoint
|
||||
local low_pair = get_byte() + lshift(get_byte(), 8)
|
||||
|
||||
if high_pair >= 0xdc00 then
|
||||
error(('malformed utf16le string at byte #%d (0x%04X) - high surrogate pair should be < 0xDC00'):format(i, high_pair))
|
||||
elseif low_pair < 0xdc00 then
|
||||
error(('malformed utf16le string at byte #%d (0x%04X) - low surrogate pair should be >= 0xDC00'):format(i+2, low_pair))
|
||||
end
|
||||
|
||||
-- The last 10 bits of each surrogate are the two halves of the codepoint
|
||||
-- https://en.wikipedia.org/wiki/UTF-16#Code_points_from_U+010000_to_U+10FFFF
|
||||
local high_bits = bits_below(high_pair, 10)
|
||||
local low_bits = bits_below(low_pair, 10)
|
||||
local surrogate_par = (low_bits + lshift(high_bits, 10)) + 0x10000
|
||||
|
||||
table.insert(codepoints, surrogate_par)
|
||||
end
|
||||
end
|
||||
|
||||
return codepoints
|
||||
end
|
||||
|
||||
---@param codepoints number[]
|
||||
---@return string
|
||||
local function unicode_to_utf8(codepoints)
|
||||
---@type number[]
|
||||
local bytes = {}
|
||||
|
||||
-- https://en.wikipedia.org/wiki/UTF-8#Description
|
||||
for i, codepoint in ipairs(codepoints) do
|
||||
if codepoint >= 0xd800 and codepoint <= 0xdfff then
|
||||
error(('codepoint %d (U+%05X) is within the reserved surrogate pair range (U+D800-U+DFFF)'):format(i, codepoint))
|
||||
elseif codepoint <= 0x7f then
|
||||
table.insert(bytes, codepoint)
|
||||
elseif codepoint <= 0x7ff then
|
||||
table.insert(bytes, 0xC0 + rshift(codepoint, 6))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
elseif codepoint <= 0xffff then
|
||||
table.insert(bytes, 0xE0 + rshift(codepoint, 12))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 6, 12))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
elseif codepoint <= 0x10ffff then
|
||||
table.insert(bytes, 0xF0 + rshift(codepoint, 18))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 12, 18))
|
||||
table.insert(bytes, 0x80 + bits_between(codepoint, 6, 12))
|
||||
table.insert(bytes, 0x80 + bits_below(codepoint, 6))
|
||||
else
|
||||
error(('codepoint %d (U+%05X) is larger than U+10FFFF'):format(i, codepoint))
|
||||
end
|
||||
end
|
||||
|
||||
return string.char(table.unpack(bytes))
|
||||
end
|
||||
|
||||
local function utf8(text)
|
||||
return unicode_to_utf8(utf16le_to_unicode(text))
|
||||
end
|
||||
|
||||
---@type ParserConfig
|
||||
local dir = {
|
||||
priority = 109,
|
||||
api_version = "1.9.0",
|
||||
name = "cmd-dir",
|
||||
keybind_name = "file"
|
||||
}
|
||||
|
||||
---@async
|
||||
---@param args string[]
|
||||
---@param parse_state ParseState
|
||||
---@return string|nil
|
||||
local function command(args, parse_state)
|
||||
local async = mp.command_native_async({
|
||||
name = "subprocess",
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
args = args,
|
||||
}, fb.coroutine.callback(30) )
|
||||
|
||||
---@type boolean, boolean, MPVSubprocessResult
|
||||
local completed, _, cmd = parse_state:yield()
|
||||
if not completed then
|
||||
msg.warn('read timed out for:', table.unpack(args))
|
||||
mp.abort_async_command(async)
|
||||
return nil
|
||||
end
|
||||
|
||||
local success = xpcall(function()
|
||||
cmd.stdout = utf8(cmd.stdout) or ''
|
||||
cmd.stderr = utf8(cmd.stderr) or ''
|
||||
end, fb.traceback)
|
||||
|
||||
if not success then return msg.error('failed to convert utf16-le string to utf8') end
|
||||
|
||||
--dir returns this exact error message if the directory is empty
|
||||
if cmd.status == 1 and cmd.stderr == "File Not Found\r\n" then cmd.status = 0 end
|
||||
if cmd.status ~= 0 then return msg.error(cmd.stderr) end
|
||||
|
||||
return cmd.status == 0 and cmd.stdout or nil
|
||||
end
|
||||
|
||||
function dir:can_parse(directory)
|
||||
if not fb.get_opt('windir_parser') then return false end
|
||||
return PLATFORM == 'windows' and directory ~= '' and not fb.get_protocol(directory)
|
||||
end
|
||||
|
||||
---@async
|
||||
function dir:parse(directory, parse_state)
|
||||
local list = {}
|
||||
|
||||
-- the dir command expects backslashes for our paths
|
||||
directory = string.gsub(directory, "/", "\\")
|
||||
|
||||
local dirs = command({ "cmd", "/U", "/c", "dir", "/b", "/ad", directory }, parse_state)
|
||||
if not dirs then return end
|
||||
|
||||
local files = command({ "cmd", "/U", "/c", "dir", "/b", "/a-d", directory }, parse_state)
|
||||
if not files then return end
|
||||
|
||||
for name in dirs:gmatch("[^\n\r]+") do
|
||||
name = name.."/"
|
||||
if fb.valid_dir(name) then
|
||||
table.insert(list, { name = name, type = "dir" })
|
||||
msg.trace(name)
|
||||
end
|
||||
end
|
||||
|
||||
for name in files:gmatch("[^\n\r]+") do
|
||||
if fb.valid_file(name) then
|
||||
table.insert(list, { name = name, type = "file" })
|
||||
msg.trace(name)
|
||||
end
|
||||
end
|
||||
|
||||
return list, { filtered = true }
|
||||
end
|
||||
|
||||
return dir
|
||||
@@ -1,62 +0,0 @@
|
||||
--[[
|
||||
This file is an internal file-browser addon.
|
||||
It should not be imported like a normal module.
|
||||
|
||||
Automatically populates the root with windows drives on startup.
|
||||
Ctrl+r will add new drives mounted since startup.
|
||||
|
||||
Drives will only be added if they are not already present in the root.
|
||||
]]
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local fb = require 'file-browser'
|
||||
|
||||
local PLATFORM = fb.get_platform()
|
||||
|
||||
---returns a list of windows drives
|
||||
---@return string[]?
|
||||
local function get_drives()
|
||||
---@type MPVSubprocessResult?, string?
|
||||
local result, err = mp.command_native({
|
||||
name = 'subprocess',
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = {'fsutil', 'fsinfo', 'drives'}
|
||||
})
|
||||
if not result then return msg.error(err) end
|
||||
if result.status ~= 0 then return msg.error('could not read windows root') end
|
||||
|
||||
local root = {}
|
||||
for drive in result.stdout:gmatch("(%a:)\\") do
|
||||
table.insert(root, drive..'/')
|
||||
end
|
||||
return root
|
||||
end
|
||||
|
||||
-- adds windows drives to the root if they are not already present
|
||||
local function import_drives()
|
||||
if fb.get_opt('auto_detect_windows_drives') and PLATFORM ~= 'windows' then return end
|
||||
|
||||
local drives = get_drives()
|
||||
if not drives then return end
|
||||
|
||||
for _, drive in ipairs(drives) do
|
||||
fb.register_root_item(drive)
|
||||
end
|
||||
end
|
||||
|
||||
local keybind = {
|
||||
key = 'Ctrl+r',
|
||||
name = 'import_root_drives',
|
||||
command = import_drives,
|
||||
parser = 'root',
|
||||
passthrough = true
|
||||
}
|
||||
|
||||
---@type ParserConfig
|
||||
return {
|
||||
api_version = '1.9.0',
|
||||
setup = import_drives,
|
||||
keybinds = { keybind }
|
||||
}
|
||||
@@ -1,198 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local ass = require 'modules.ass'
|
||||
local directory_movement = require 'modules.navigation.directory-movement'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
local controls = require 'modules.controls'
|
||||
|
||||
---@class FbAPI: fb_utils
|
||||
local fb = setmetatable({}, { __index = setmetatable({}, { __index = fb_utils }) })
|
||||
package.loaded["file-browser"] = setmetatable({}, { __index = fb })
|
||||
|
||||
--these functions we'll provide as-is
|
||||
fb.redraw = ass.update_ass
|
||||
fb.browse_directory = controls.browse_directory
|
||||
|
||||
---Clears the directory cache.
|
||||
---@return thread
|
||||
function fb.rescan()
|
||||
return scanning.rescan()
|
||||
end
|
||||
|
||||
---@async
|
||||
---@return thread
|
||||
function fb.rescan_await()
|
||||
local co = scanning.rescan(nil, fb_utils.coroutine.callback())
|
||||
coroutine.yield()
|
||||
return co
|
||||
end
|
||||
|
||||
---@param directories? string[]
|
||||
function fb.clear_cache(directories)
|
||||
if directories then
|
||||
mp.commandv('script-message-to', mp.get_script_name(), 'cache/clear', utils.format_json(directories))
|
||||
else
|
||||
mp.commandv('script-message-to', mp.get_script_name(), 'cache/clear')
|
||||
end
|
||||
end
|
||||
|
||||
---A wrapper around scan_directory for addon API.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param parse_state ParseStateTemplate
|
||||
---@return Item[]|nil
|
||||
---@return Opts
|
||||
function fb.parse_directory(directory, parse_state)
|
||||
if not parse_state then parse_state = { source = "addon" }
|
||||
elseif not parse_state.source then parse_state.source = "addon" end
|
||||
return scanning.scan_directory(directory, parse_state)
|
||||
end
|
||||
|
||||
---Register file extensions which can be opened by the browser.
|
||||
---@param ext string
|
||||
function fb.register_parseable_extension(ext)
|
||||
g.parseable_extensions[string.lower(ext)] = true
|
||||
end
|
||||
|
||||
---Deregister file extensions which can be opened by the browser.
|
||||
---@param ext string
|
||||
function fb.remove_parseable_extension(ext)
|
||||
g.parseable_extensions[string.lower(ext)] = nil
|
||||
end
|
||||
|
||||
---Add a compatible extension to show through the filter, only applies if run during the setup() method.
|
||||
---@param ext string
|
||||
function fb.add_default_extension(ext)
|
||||
table.insert(g.compatible_file_extensions, ext)
|
||||
end
|
||||
|
||||
---Add item to root at position pos.
|
||||
---@param item Item
|
||||
---@param pos? number
|
||||
function fb.insert_root_item(item, pos)
|
||||
msg.debug("adding item to root", item.label or item.name, pos)
|
||||
item.ass = item.ass or fb.ass_escape(item.label or item.name)
|
||||
item.type = "dir"
|
||||
table.insert(g.root, pos or (#g.root + 1), item)
|
||||
end
|
||||
|
||||
---Add a new mapping to the given directory.
|
||||
---@param directory string
|
||||
---@param mapping string
|
||||
---@param pattern? boolean
|
||||
---@return string
|
||||
function fb.register_directory_mapping(directory, mapping, pattern)
|
||||
if not pattern then mapping = '^'..fb_utils.pattern_escape(mapping) end
|
||||
g.directory_mappings[mapping] = directory
|
||||
msg.verbose('registering directory alias', mapping, directory)
|
||||
|
||||
directory_movement.set_current_file(g.current_file.original_path)
|
||||
return mapping
|
||||
end
|
||||
|
||||
---Remove all directory mappings that map to the given directory.
|
||||
---@param directory string
|
||||
---@return string[]
|
||||
function fb.remove_all_mappings(directory)
|
||||
local removed = {}
|
||||
for mapping, target in pairs(g.directory_mappings) do
|
||||
if target == directory then
|
||||
g.directory_mappings[mapping] = nil
|
||||
table.insert(removed, mapping)
|
||||
end
|
||||
end
|
||||
return removed
|
||||
end
|
||||
|
||||
---A newer API for adding items to the root.
|
||||
---Only adds the item if the same item does not already exist in the root.
|
||||
---@param item Item|string
|
||||
---@param priority? number Specifies the insertion location, a lower priority
|
||||
--- is placed higher in the list and the default is 100.
|
||||
---@return boolean
|
||||
function fb.register_root_item(item, priority)
|
||||
msg.verbose('registering root item:', utils.to_string(item))
|
||||
if type(item) == 'string' then
|
||||
item = {name = item, type = 'dir'}
|
||||
end
|
||||
|
||||
-- if the item is already in the list then do nothing
|
||||
if fb.list.some(g.root, function(r)
|
||||
return fb.get_full_path(r, '') == fb.get_full_path(item, '')
|
||||
end) then return false end
|
||||
|
||||
---@type table<Item,number>
|
||||
local priorities = {}
|
||||
|
||||
priorities[item] = priority
|
||||
for i, v in ipairs(g.root) do
|
||||
if (priorities[v] or 100) > (priority or 100) then
|
||||
fb.insert_root_item(item, i)
|
||||
return true
|
||||
end
|
||||
end
|
||||
fb.insert_root_item(item)
|
||||
return true
|
||||
end
|
||||
|
||||
--providing getter and setter functions so that addons can't modify things directly
|
||||
|
||||
|
||||
---@param key string
|
||||
---@return boolean|string|number
|
||||
function fb.get_opt(key) return o[key] end
|
||||
|
||||
function fb.get_script_opts() return fb.copy_table(o) end
|
||||
function fb.get_platform() return g.PLATFORM end
|
||||
function fb.get_extensions() return fb.copy_table(g.extensions) end
|
||||
function fb.get_sub_extensions() return fb.copy_table(g.sub_extensions) end
|
||||
function fb.get_audio_extensions() return fb.copy_table(g.audio_extensions) end
|
||||
function fb.get_parseable_extensions() return fb.copy_table(g.parseable_extensions) end
|
||||
function fb.get_state() return fb.copy_table(g.state) end
|
||||
function fb.get_parsers() return fb.copy_table(g.parsers) end
|
||||
function fb.get_root() return fb.copy_table(g.root) end
|
||||
function fb.get_directory() return g.state.directory end
|
||||
function fb.get_list() return fb.copy_table(g.state.list) end
|
||||
function fb.get_current_file() return fb.copy_table(g.current_file) end
|
||||
function fb.get_current_parser() return g.state.parser:get_id() end
|
||||
function fb.get_current_parser_keyname() return g.state.parser.keybind_name or g.state.parser.name end
|
||||
function fb.get_selected_index() return g.state.selected end
|
||||
function fb.get_selected_item() return fb.copy_table(g.state.list[g.state.selected]) end
|
||||
function fb.get_open_status() return not g.state.hidden end
|
||||
function fb.get_parse_state(co) return g.parse_states[co or coroutine.running() or ""] end
|
||||
function fb.get_history() return fb.copy_table(g.history.list) end
|
||||
function fb.get_history_index() return g.history.position end
|
||||
|
||||
---@deprecated
|
||||
---@return string|nil
|
||||
function fb.get_dvd_device()
|
||||
local dvd_device = mp.get_property('dvd-device')
|
||||
if not dvd_device or dvd_device == '' then return nil end
|
||||
return fb_utils.fix_path(dvd_device, true)
|
||||
end
|
||||
|
||||
---@param str string
|
||||
function fb.set_empty_text(str)
|
||||
g.state.empty_text = str
|
||||
fb.redraw()
|
||||
end
|
||||
|
||||
---@param index number
|
||||
---@return number|false
|
||||
function fb.set_selected_index(index)
|
||||
if type(index) ~= "number" then return false end
|
||||
if index < 1 then index = 1 end
|
||||
if index > #g.state.list then index = #g.state.list end
|
||||
g.state.selected = index
|
||||
fb.redraw()
|
||||
return index
|
||||
end
|
||||
|
||||
fb.set_history_index = directory_movement.goto_history
|
||||
|
||||
return fb
|
||||
@@ -1,34 +0,0 @@
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
local g = require 'modules.globals'
|
||||
|
||||
---@class ParseStateAPI
|
||||
local parse_state_API = {}
|
||||
|
||||
---A wrapper around coroutine.yield that aborts the coroutine if
|
||||
--the parse request was cancelled by the user.
|
||||
--the coroutine is
|
||||
---@async
|
||||
---@param self ParseState
|
||||
---@param ... any
|
||||
---@return unknown ...
|
||||
function parse_state_API:yield(...)
|
||||
local co = coroutine.running()
|
||||
local is_browser = co == g.state.co
|
||||
|
||||
local result = table.pack(coroutine.yield(...))
|
||||
if is_browser and co ~= g.state.co then
|
||||
msg.verbose("browser no longer waiting for list - aborting parse for", self.directory)
|
||||
error(g.ABORT_ERROR)
|
||||
end
|
||||
return table.unpack(result, 1, result.n)
|
||||
end
|
||||
|
||||
---Checks if the current coroutine is the one handling the browser's request.
|
||||
---@return boolean
|
||||
function parse_state_API:is_coroutine_current()
|
||||
return coroutine.running() == g.state.co
|
||||
end
|
||||
|
||||
return parse_state_API
|
||||
@@ -1,40 +0,0 @@
|
||||
local msg = require 'mp.msg'
|
||||
|
||||
local g = require 'modules.globals'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
local fb = require 'modules.apis.fb'
|
||||
|
||||
---@class ParserAPI: FbAPI
|
||||
local parser_api = setmetatable({}, { __index = fb })
|
||||
|
||||
---Returns the index of the parser.
|
||||
---@return number
|
||||
function parser_api:get_index() return g.parsers[self].index end
|
||||
|
||||
---Returns the ID of the parser
|
||||
---@return string
|
||||
function parser_api:get_id() return g.parsers[self].id end
|
||||
|
||||
---A newer API for adding items to the root.
|
||||
---Only adds the item if the same item does not already exist in the root.
|
||||
---Wrapper around `fb.register_root_item`.
|
||||
---@param item Item|string
|
||||
---@param priority? number The priority for the added item. Uses the parsers priority by default.
|
||||
---@return boolean
|
||||
function parser_api:register_root_item(item, priority)
|
||||
return fb.register_root_item(item, priority or g.parsers[self:get_id()].priority)
|
||||
end
|
||||
|
||||
---Runs choose_and_parse starting from the next parser.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@return Item[]?
|
||||
---@return Opts?
|
||||
function parser_api:defer(directory)
|
||||
msg.trace("deferring to other parsers...")
|
||||
local list, opts = scanning.choose_and_parse(directory, self:get_index() + 1)
|
||||
fb.get_parse_state().already_deferred = true
|
||||
return list, opts
|
||||
end
|
||||
|
||||
return parser_api
|
||||
@@ -1,238 +0,0 @@
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
-----------------------------------------List Formatting------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
|
||||
local g = require 'modules.globals'
|
||||
local o = require 'modules.options'
|
||||
local fb_utils = require 'modules.utils'
|
||||
|
||||
local state = g.state
|
||||
local style = g.style
|
||||
local ass = g.ass
|
||||
|
||||
--- https://www.unicode.org/reports/tr9/#Explicit_Directional_Isolates
|
||||
local ISOLATE_DIRECTION_START = '\226\129\168' -- U+2068 FIRST STRONG ISOLATE
|
||||
local ISOLATE_DIRECTION_END = '\226\129\169' -- U+2069 POP DIRECTIONAL ISOLATE
|
||||
|
||||
local function draw()
|
||||
ass:update()
|
||||
end
|
||||
|
||||
local function remove()
|
||||
ass:remove()
|
||||
end
|
||||
|
||||
---@type string[]
|
||||
local string_buffer = {}
|
||||
|
||||
---appends the entered text to the overlay
|
||||
---@param ... string
|
||||
local function append(...)
|
||||
for i = 1, select("#", ...) do
|
||||
table.insert(string_buffer, select(i, ...) or '' )
|
||||
end
|
||||
end
|
||||
|
||||
--appends a newline character to the osd
|
||||
local function newline()
|
||||
table.insert(string_buffer, '\\N')
|
||||
end
|
||||
|
||||
local function flush_buffer()
|
||||
ass.data = table.concat(string_buffer, '')
|
||||
string_buffer = {}
|
||||
end
|
||||
|
||||
---detects whether or not to highlight the given entry as being played
|
||||
---@param v Item
|
||||
---@return boolean
|
||||
local function highlight_entry(v)
|
||||
if g.current_file.path == nil then return false end
|
||||
local full_path = fb_utils.get_full_path(v)
|
||||
local alt_path = v.name and g.state.directory..v.name or nil
|
||||
|
||||
if fb_utils.parseable_item(v) then
|
||||
return (
|
||||
string.find(g.current_file.directory, full_path, 1, true)
|
||||
or (alt_path and string.find(g.current_file.directory, alt_path, 1, true))
|
||||
) ~= nil
|
||||
else
|
||||
return g.current_file.path == full_path
|
||||
or (alt_path and g.current_file.path == alt_path)
|
||||
end
|
||||
end
|
||||
|
||||
---Escapes unwanted unicode control characters that may affect the rest of the display.
|
||||
---Currently this only isolates unicode directional overrides.
|
||||
---Based on: https://github.com/mpv-player/mpv/pull/17606
|
||||
---@param str string
|
||||
---@return string
|
||||
local function unicode_escape(str)
|
||||
return ISOLATE_DIRECTION_START..str..ISOLATE_DIRECTION_END
|
||||
end
|
||||
|
||||
---escape ass values and replace newlines
|
||||
---@param str string
|
||||
---@param style_reset string?
|
||||
---@return string
|
||||
local function ass_escape(str, style_reset)
|
||||
return fb_utils.ass_escape(str, style_reset and style.warning..'␊'..style_reset or true)
|
||||
end
|
||||
|
||||
local header_overrides = {['^'] = style.header}
|
||||
|
||||
---@return number start
|
||||
---@return number finish
|
||||
---@return boolean is_overflowing
|
||||
local function calculate_view_window()
|
||||
---@type number
|
||||
local start = 1
|
||||
---@type number
|
||||
local finish = start+o.num_entries-1
|
||||
|
||||
--handling cursor positioning
|
||||
local mid = math.ceil(o.num_entries/2)+1
|
||||
if state.selected+mid > finish then
|
||||
---@type number
|
||||
local offset = state.selected - finish + mid
|
||||
|
||||
--if we've overshot the end of the list then undo some of the offset
|
||||
if finish + offset > #state.list then
|
||||
offset = offset - ((finish+offset) - #state.list)
|
||||
end
|
||||
|
||||
start = start + offset
|
||||
finish = finish + offset
|
||||
end
|
||||
|
||||
--making sure that we don't overstep the boundaries
|
||||
if start < 1 then start = 1 end
|
||||
local overflow = finish < #state.list
|
||||
--this is necessary when the number of items in the dir is less than the max
|
||||
if not overflow then finish = #state.list end
|
||||
|
||||
return start, finish, overflow
|
||||
end
|
||||
|
||||
---@param i number index
|
||||
---@return string
|
||||
local function calculate_item_style(i)
|
||||
local is_playing_file = highlight_entry(state.list[i])
|
||||
|
||||
--sets the selection colour scheme
|
||||
local multiselected = state.selection[i]
|
||||
|
||||
--sets the colour for the item
|
||||
local item_style = style.body
|
||||
|
||||
if multiselected then item_style = item_style..style.multiselect
|
||||
elseif i == state.selected then item_style = item_style..style.selected end
|
||||
|
||||
if is_playing_file then item_style = item_style..(multiselected and style.playing_selected or style.playing) end
|
||||
|
||||
return item_style
|
||||
end
|
||||
|
||||
local function draw_header()
|
||||
append(style.header)
|
||||
append(fb_utils.substitute_codes(o.format_string_header, header_overrides, nil, nil, function(str, code)
|
||||
if code == '^' then return str end
|
||||
return ass_escape(str, style.header)
|
||||
end))
|
||||
newline()
|
||||
end
|
||||
|
||||
---@param wrapper_overrides ReplacerTable
|
||||
local function draw_top_wrapper(wrapper_overrides)
|
||||
--adding a header to show there are items above in the list
|
||||
append(style.footer_header)
|
||||
append(fb_utils.substitute_codes(o.format_string_topwrapper, wrapper_overrides, nil, nil, function(str)
|
||||
return ass_escape(str)
|
||||
end))
|
||||
newline()
|
||||
end
|
||||
|
||||
---@param wrapper_overrides ReplacerTable
|
||||
local function draw_bottom_wrapper(wrapper_overrides)
|
||||
append(style.footer_header)
|
||||
append(fb_utils.substitute_codes(o.format_string_bottomwrapper, wrapper_overrides, nil, nil, function(str)
|
||||
return ass_escape(str)
|
||||
end))
|
||||
end
|
||||
|
||||
---@param i number index
|
||||
---@param cursor string
|
||||
local function draw_cursor(i, cursor)
|
||||
--handles custom styles for different entries
|
||||
if i == state.selected or i == state.multiselect_start then
|
||||
if not (i == state.selected) then append(style.selection_marker) end
|
||||
|
||||
if not state.multiselect_start then append(style.cursor)
|
||||
else
|
||||
if state.selection[state.multiselect_start] then append(style.cursor_select)
|
||||
else append(style.cursor_deselect) end
|
||||
end
|
||||
else
|
||||
append(g.style.indent)
|
||||
end
|
||||
append(cursor, '\\h', style.body)
|
||||
end
|
||||
|
||||
--refreshes the ass text using the contents of the list
|
||||
local function update_ass()
|
||||
if state.hidden then state.flag_update = true ; return end
|
||||
|
||||
append(style.global)
|
||||
draw_header()
|
||||
|
||||
if #state.list < 1 then
|
||||
append(state.empty_text)
|
||||
flush_buffer()
|
||||
draw()
|
||||
return
|
||||
end
|
||||
|
||||
local start, finish, overflow = calculate_view_window()
|
||||
|
||||
-- these are the number values to place into the wrappers
|
||||
local wrapper_overrides = {['<'] = tostring(start-1), ['>'] = tostring(#state.list-finish)}
|
||||
if o.format_string_topwrapper ~= '' and start > 1 then
|
||||
draw_top_wrapper(wrapper_overrides)
|
||||
end
|
||||
|
||||
for i=start, finish do
|
||||
local v = state.list[i]
|
||||
append(style.body)
|
||||
if g.ALIGN_X ~= 'right' then draw_cursor(i, o.cursor_icon) end
|
||||
|
||||
local item_style = calculate_item_style(i)
|
||||
append(item_style)
|
||||
|
||||
--sets the folder icon
|
||||
if v.type == 'dir' then
|
||||
append(style.folder, o.folder_icon, "\\h", style.body)
|
||||
append(item_style)
|
||||
end
|
||||
|
||||
--adds the actual name of the item
|
||||
append(v.ass or ass_escape( unicode_escape(v.label or v.name) , item_style), '\\h')
|
||||
if g.ALIGN_X == 'right' then draw_cursor(i, o.cursor_icon_flipped) end
|
||||
newline()
|
||||
end
|
||||
|
||||
if o.format_string_bottomwrapper ~= '' and overflow then
|
||||
draw_bottom_wrapper(wrapper_overrides)
|
||||
end
|
||||
|
||||
flush_buffer()
|
||||
draw()
|
||||
end
|
||||
|
||||
---@class ass
|
||||
return {
|
||||
update_ass = update_ass,
|
||||
highlight_entry = highlight_entry,
|
||||
draw = draw,
|
||||
remove = remove,
|
||||
}
|
||||
@@ -1,94 +0,0 @@
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local movement = require 'modules.navigation.directory-movement'
|
||||
local ass = require 'modules.ass'
|
||||
local cursor = require 'modules.navigation.cursor'
|
||||
|
||||
---@class controls
|
||||
local controls = {}
|
||||
|
||||
--opens the browser
|
||||
function controls.open()
|
||||
if not g.state.hidden then return end
|
||||
|
||||
for _,v in ipairs(g.state.keybinds) do
|
||||
mp.add_forced_key_binding(v[1], 'dynamic/'..v[2], v[3], v[4])
|
||||
end
|
||||
|
||||
if o.set_shared_script_properties then utils.shared_script_property_set('file_browser-open', 'yes') end ---@diagnostic disable-line deprecated
|
||||
if o.set_user_data then mp.set_property_bool('user-data/file_browser/open', true) end
|
||||
|
||||
if o.toggle_idlescreen then mp.commandv('script-message', 'osc-idlescreen', 'no', 'no_osd') end
|
||||
g.state.hidden = false
|
||||
if g.state.directory == nil then
|
||||
local path = mp.get_property('path')
|
||||
if path or o.default_to_working_directory then movement.goto_current_dir() else movement.goto_root() end
|
||||
return
|
||||
end
|
||||
|
||||
if not g.state.flag_update then ass.draw()
|
||||
else g.state.flag_update = false ; ass.update_ass() end
|
||||
end
|
||||
|
||||
--closes the list and sets the hidden flag
|
||||
function controls.close()
|
||||
if g.state.hidden then return end
|
||||
|
||||
for _,v in ipairs(g.state.keybinds) do
|
||||
mp.remove_key_binding('dynamic/'..v[2])
|
||||
end
|
||||
|
||||
if o.set_shared_script_properties then utils.shared_script_property_set("file_browser-open", "no") end ---@diagnostic disable-line deprecated
|
||||
if o.set_user_data then mp.set_property_bool('user-data/file_browser/open', false) end
|
||||
|
||||
if o.toggle_idlescreen then mp.commandv('script-message', 'osc-idlescreen', 'yes', 'no_osd') end
|
||||
g.state.hidden = true
|
||||
ass.remove()
|
||||
end
|
||||
|
||||
--toggles the list
|
||||
function controls.toggle()
|
||||
if g.state.hidden then controls.open()
|
||||
else controls.close() end
|
||||
end
|
||||
|
||||
--run when the escape key is used
|
||||
function controls.escape()
|
||||
--if multiple items are selection cancel the
|
||||
--selection instead of closing the browser
|
||||
if next(g.state.selection) or g.state.multiselect_start then
|
||||
g.state.selection = {}
|
||||
cursor.disable_select_mode()
|
||||
ass.update_ass()
|
||||
return
|
||||
end
|
||||
controls.close()
|
||||
end
|
||||
|
||||
---opens a specific directory
|
||||
---@param directory string
|
||||
---@param open_browser? boolean
|
||||
---@return thread|nil
|
||||
function controls.browse_directory(directory, open_browser)
|
||||
if not directory then return end
|
||||
if open_browser == nil then open_browser = true end
|
||||
|
||||
directory = mp.command_native({"expand-path", directory}, '') --[[@as string]]
|
||||
-- directory = join_path( mp.get_property("working-directory", ""), directory )
|
||||
|
||||
if directory ~= "" then directory = fb_utils.fix_path(directory, true) end
|
||||
msg.verbose('recieved directory from script message: '..directory)
|
||||
|
||||
directory = fb_utils.resolve_directory_mapping(directory)
|
||||
local co = movement.goto_directory(directory, nil, nil, {cache={use=false}})
|
||||
if open_browser then controls.open() end
|
||||
return co
|
||||
end
|
||||
|
||||
return controls
|
||||
@@ -1,3 +0,0 @@
|
||||
---@meta file-browser
|
||||
|
||||
return require 'modules.apis.fb'
|
||||
@@ -1,39 +0,0 @@
|
||||
---@meta _
|
||||
|
||||
---@class KeybindFlags
|
||||
---@field repeatable boolean?
|
||||
---@field scalable boolean?
|
||||
---@field complex boolean?
|
||||
|
||||
|
||||
---@class KeybindCommandTable
|
||||
|
||||
|
||||
---@class Keybind
|
||||
---@field key string
|
||||
---@field command KeybindCommand
|
||||
---@field api_version string?
|
||||
---
|
||||
---@field name string?
|
||||
---@field condition string?
|
||||
---@field flags KeybindFlags?
|
||||
---@field filter ('file'|'dir')?
|
||||
---@field parser string?
|
||||
---@field multiselect boolean?
|
||||
---@field multi-type ('repeat'|'concat')?
|
||||
---@field delay number?
|
||||
---@field concat-string string?
|
||||
---@field passthrough boolean?
|
||||
---
|
||||
---@field prev_key Keybind? The keybind that was previously set to the same key.
|
||||
---@field codes Set<string>? Any substituation codes used by the command table.
|
||||
---@field condition_codes Set<string>? Any substitution codes used by the condition string.
|
||||
---@field addon boolean? Whether the keybind was created by an addon.
|
||||
|
||||
|
||||
---@alias KeybindFunctionCallback async fun(keybind: Keybind, state: State, co: thread)
|
||||
|
||||
---@alias KeybindCommand KeybindFunctionCallback|KeybindCommandTable[]
|
||||
---@alias KeybindTuple [string,string,KeybindCommand,KeybindFlags?]
|
||||
---@alias KeybindTupleStrict [string,string,KeybindFunctionCallback,KeybindFlags?]
|
||||
---@alias KeybindList (Keybind|KeybindTuple)[]
|
||||
@@ -1,25 +0,0 @@
|
||||
---@meta _
|
||||
|
||||
---@alias List Item[]
|
||||
|
||||
---Represents an item returned by the parsers.
|
||||
---@class Item
|
||||
---@field type 'file'|'dir'
|
||||
---@field name string
|
||||
---@field label string?
|
||||
---@field path string?
|
||||
---@field ass string?
|
||||
---@field redirect boolean?
|
||||
---@field mpv_options string|{[string]: unknown}?
|
||||
|
||||
|
||||
---The Opts table returned by the parsers.
|
||||
---@class Opts
|
||||
---@field filtered boolean?
|
||||
---@field sorted boolean?
|
||||
---@field directory string?
|
||||
---@field directory_label string?
|
||||
---@field empty_text string?
|
||||
---@field selected_index number?
|
||||
---@field id string?
|
||||
---@field parser Parser?
|
||||
@@ -1,148 +0,0 @@
|
||||
---@meta mp
|
||||
|
||||
---@class mp
|
||||
local mp = {}
|
||||
|
||||
---@class AsyncReturn
|
||||
|
||||
---@class MPTimer
|
||||
---@field stop fun(self: MPTimer)
|
||||
---@field kill fun(self: MPTimer)
|
||||
---@field resume fun(self: MPTimer)
|
||||
---@field is_enabled fun(self: MPTimer): boolean
|
||||
---@field timeout number
|
||||
---@field oneshot boolean
|
||||
|
||||
---@class OSDOverlay
|
||||
---@field data string
|
||||
---@field res_x number
|
||||
---@field res_y number
|
||||
---@field z number
|
||||
---@field update fun(self:OSDOverlay)
|
||||
---@field remove fun(self: OSDOverlay)
|
||||
|
||||
---@class MPVSubprocessResult
|
||||
---@field status number
|
||||
---@field stdout string
|
||||
---@field stderr string
|
||||
---@field error_string ''|'killed'|'init'
|
||||
---@field killed_by_us boolean
|
||||
|
||||
---@param key string
|
||||
---@param name_or_fn string|function
|
||||
---@param fn? async fun()
|
||||
---@param flags? KeybindFlags
|
||||
function mp.add_key_binding(key, name_or_fn, fn, flags) end
|
||||
|
||||
---@param key string
|
||||
---@param name_or_fn string|function
|
||||
---@param fn? async fun()
|
||||
---@param flags? KeybindFlags
|
||||
function mp.add_forced_key_binding(key, name_or_fn, fn, flags) end
|
||||
|
||||
---@param seconds number
|
||||
---@param fn function
|
||||
---@param disabled? boolean
|
||||
---@return MPTimer
|
||||
function mp.add_timeout(seconds, fn, disabled) end
|
||||
|
||||
---@param format 'ass-events'
|
||||
---@return OSDOverlay
|
||||
function mp.create_osd_overlay(format) end
|
||||
|
||||
---@param ... string
|
||||
function mp.commandv(...) end
|
||||
|
||||
---@generic T
|
||||
---@param t table
|
||||
---@param def? T
|
||||
---@return unknown|T result
|
||||
---@return string? error
|
||||
---@overload fun(t: table): (unknown|nil, string?)
|
||||
function mp.command_native(t, def) end
|
||||
|
||||
---@nodiscard
|
||||
---@param t table
|
||||
---@param cb fun(success: boolean, result: unknown, error: string?)
|
||||
---@return AsyncReturn
|
||||
function mp.command_native_async(t, cb) end
|
||||
|
||||
---@param t AsyncReturn
|
||||
function mp.abort_async_command(t) end
|
||||
|
||||
---@generic T
|
||||
---@param name string
|
||||
---@param def? T
|
||||
---@return string|T
|
||||
---@overload fun(name: string): string|nil
|
||||
function mp.get_property(name, def) end
|
||||
|
||||
---@generic T
|
||||
---@param name string
|
||||
---@param def? T
|
||||
---@return boolean|T
|
||||
---@overload fun(name: string): boolean|nil
|
||||
function mp.get_property_bool(name, def) end
|
||||
|
||||
---@generic T
|
||||
---@param name string
|
||||
---@param def? T
|
||||
---@return number|T
|
||||
---@overload fun(name: string): number|nil
|
||||
function mp.get_property_number(name, def) end
|
||||
|
||||
---@generic T
|
||||
---@param name string
|
||||
---@param def? T
|
||||
---@return unknown|T
|
||||
---@overload fun(name: string): unknown|nil
|
||||
function mp.get_property_native(name, def) end
|
||||
|
||||
---@return string|nil
|
||||
function mp.get_script_directory() end
|
||||
|
||||
---@return string
|
||||
function mp.get_script_name() end
|
||||
|
||||
---@param name string
|
||||
---@param type 'native'|'bool'|'string'|'number'
|
||||
---@param fn fun(name: string, v: unknown)
|
||||
function mp.observe_property(name, type, fn) end
|
||||
|
||||
---@param name string
|
||||
---@param fn function
|
||||
---@return boolean
|
||||
function mp.register_event(name, fn) end
|
||||
|
||||
---@param name string
|
||||
---@param fn fun(...: string)
|
||||
function mp.register_script_message(name, fn) end
|
||||
|
||||
---@param name string
|
||||
function mp.remove_key_binding(name) end
|
||||
|
||||
---@param name string
|
||||
---@param value string
|
||||
---@return true? success # nil if error
|
||||
---@return string? err
|
||||
function mp.set_property(name, value) end
|
||||
|
||||
---@param name string
|
||||
---@param value boolean
|
||||
---@return true? success # nil if error
|
||||
---@return string? err
|
||||
function mp.set_property_bool(name, value) end
|
||||
|
||||
---@param name string
|
||||
---@param value number
|
||||
---@return true? success # nil if error
|
||||
---@return string? err
|
||||
function mp.set_property_number(name, value) end
|
||||
|
||||
---@param name string
|
||||
---@param value any
|
||||
---@return true? success # nil if error
|
||||
---@return string? err
|
||||
function mp.set_property_native(name, value) end
|
||||
|
||||
return mp
|
||||
@@ -1,21 +0,0 @@
|
||||
---@meta mp.input
|
||||
|
||||
---@class mp.input
|
||||
local input = {}
|
||||
|
||||
---@class InputGetOpts
|
||||
---@field prompt string?
|
||||
---@field default_text string?
|
||||
---@field id string?
|
||||
---@field submit (fun(text: string))?
|
||||
---@field opened (fun())?
|
||||
---@field edited (fun(text: string))?
|
||||
---@field complete (fun(text_before_cursor: string): string[], number)?
|
||||
---@field closed (fun(text: string))?
|
||||
|
||||
---@param options InputGetOpts
|
||||
function input.get(options) end
|
||||
|
||||
function input.terminate() end
|
||||
|
||||
return input
|
||||
@@ -1,32 +0,0 @@
|
||||
---@meta mp.msg
|
||||
|
||||
---@class mp.msg
|
||||
local msg = {}
|
||||
|
||||
---@param level 'fatal'|'error'|'warn'|'info'|'v'|'debug'|'trace'
|
||||
---@param ... any
|
||||
function msg.log(level, ...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.fatal(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.error(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.warn(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.info(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.verbose(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.debug(...) end
|
||||
|
||||
---@param ... any
|
||||
function msg.trace(...) end
|
||||
|
||||
|
||||
return msg
|
||||
@@ -1,11 +0,0 @@
|
||||
---@meta mp.options
|
||||
|
||||
---@class mp.options
|
||||
local options = {}
|
||||
|
||||
---@param t table<string,string|number|boolean>
|
||||
---@param identifier? string
|
||||
---@param on_update? fun(list: table<string,true|nil>)
|
||||
function options.read_options(t, identifier, on_update) end
|
||||
|
||||
return options
|
||||
@@ -1,43 +0,0 @@
|
||||
---@meta mp.utils
|
||||
|
||||
---@class mp.utils
|
||||
local utils = {}
|
||||
|
||||
---@param v string|boolean|number|table|nil
|
||||
---@return string? json # nil on error
|
||||
---@return string? err # error
|
||||
function utils.format_json(v) end
|
||||
|
||||
---@param p1 string
|
||||
---@param p2 string
|
||||
---@return string
|
||||
function utils.join_path(p1, p2) end
|
||||
|
||||
---@param str string
|
||||
---@param trail? boolean
|
||||
---@return (table|unknown[])? t
|
||||
---@return string? err # error
|
||||
---@return string trail # trailing characters
|
||||
function utils.parse_json(str, trail) end
|
||||
|
||||
---@param path string
|
||||
---@param filter ('files'|'dirs'|'normal'|'all')?
|
||||
---@return string[]? # nil on error
|
||||
---@return string? err # error
|
||||
function utils.readdir(path, filter) end
|
||||
|
||||
---@deprecated
|
||||
---@param name string
|
||||
---@param value string
|
||||
function utils.shared_script_property_set(name, value) end
|
||||
|
||||
---@param path string
|
||||
---@return string directory
|
||||
---@return string filename
|
||||
function utils.split_path(path) end
|
||||
|
||||
---@param v any
|
||||
---@return string
|
||||
function utils.to_string(v) end
|
||||
|
||||
return utils
|
||||
@@ -1,41 +0,0 @@
|
||||
---@meta _
|
||||
|
||||
---A ParserConfig object returned by addons
|
||||
---@class (partial) ParserConfig: ParserAPI
|
||||
---@field priority number?
|
||||
---@field api_version string The minimum API version the string requires.
|
||||
---@field version string? The minimum API version the string requires. @deprecated.
|
||||
---
|
||||
---@field can_parse (async fun(self: Parser, directory: string, parse_state: ParseState): boolean)?
|
||||
---@field parse (async fun(self: Parser, directory: string, parse_state: ParseState): List?, Opts?)?
|
||||
---@field setup fun(self: Parser)?
|
||||
---
|
||||
---@field name string?
|
||||
---@field keybind_name string?
|
||||
---@field keybinds KeybindList?
|
||||
|
||||
|
||||
---The parser object used by file-browser once the parsers have been loaded and initialised.
|
||||
---@class Parser: ParserAPI, ParserConfig
|
||||
---@field name string
|
||||
---@field priority number
|
||||
---@field api_version string
|
||||
---@field can_parse async fun(self: Parser, directory: string, parse_state: ParseState): boolean
|
||||
---@field parse async fun(self: Parser, directory: string, parse_state: ParseState): List?, Opts?
|
||||
|
||||
|
||||
---@alias ParseStateSource 'browser'|'loadlist'|'script-message'|'addon'|string
|
||||
---@alias ParseProperties table<string,any>
|
||||
|
||||
---The Parse State object passed to the can_parse and parse methods
|
||||
---@class ParseStateFields
|
||||
---@field source ParseStateSource
|
||||
---@field directory string
|
||||
---@field already_deferred boolean?
|
||||
---@field properties ParseProperties
|
||||
|
||||
---@class ParseState: ParseStateFields, ParseStateAPI
|
||||
|
||||
---@class ParseStateTemplate
|
||||
---@field source ParseStateSource?
|
||||
---@field properties ParseProperties?
|
||||
@@ -1,21 +0,0 @@
|
||||
---@meta _
|
||||
|
||||
---@class Set<T>: {[T]: boolean}
|
||||
|
||||
---@class (exact) State
|
||||
---@field list List
|
||||
---@field selected number
|
||||
---@field hidden boolean
|
||||
---@field flag_update boolean
|
||||
---@field keybinds KeybindTupleStrict[]?
|
||||
---
|
||||
---@field parser Parser?
|
||||
---@field directory string?
|
||||
---@field directory_label string?
|
||||
---@field prev_directory string
|
||||
---@field empty_text string
|
||||
---@field co thread?
|
||||
---
|
||||
---@field multiselect_start number?
|
||||
---@field initial_selection Set<number>?
|
||||
---@field selection Set<number>?
|
||||
@@ -1,28 +0,0 @@
|
||||
---@meta user-input-module
|
||||
|
||||
---@class user_input_module
|
||||
local user_input_module = {}
|
||||
|
||||
---@class UserInputOpts
|
||||
---@field id string?
|
||||
---@field source string?
|
||||
---@field request_text string?
|
||||
---@field default_input string?
|
||||
---@field cursor_pos number?
|
||||
---@field queueable boolean?
|
||||
---@field replace boolean?
|
||||
|
||||
---@class UserInputRequest
|
||||
---@field callback function?
|
||||
---@field passthrough_args any[]?
|
||||
---@field pending boolean
|
||||
---@field cancel fun(self: UserInputRequest)
|
||||
---@field update fun(self: UserInputRequest, opts: UserInputOpts)
|
||||
|
||||
---@param fn function
|
||||
---@param opts UserInputOpts
|
||||
---@param ... any passthrough arguments
|
||||
---@return UserInputRequest
|
||||
function user_input_module.get_user_input(fn, opts, ...) end
|
||||
|
||||
return user_input_module
|
||||
@@ -1,181 +0,0 @@
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
------------------------------------------Variable Setup------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
|
||||
local mp = require 'mp'
|
||||
local o = require 'modules.options'
|
||||
|
||||
---@class globals
|
||||
local globals = {}
|
||||
|
||||
--sets the version for the file-browser API
|
||||
globals.API_VERSION = "1.9.0"
|
||||
|
||||
---gets the current platform (in mpv v0.36+)
|
||||
---in earlier versions it is set to `windows`, `darwin` or `other`
|
||||
---@type 'windows'|'darwin'|'linux'|'android'|'freebsd'|'other'|string|nil
|
||||
globals.PLATFORM = mp.get_property_native('platform')
|
||||
if not globals.PLATFORM then
|
||||
local _ = {}
|
||||
if mp.get_property_native('options/vo-mmcss-profile', _) ~= _ then
|
||||
globals.PLATFORM = 'windows'
|
||||
elseif mp.get_property_native('options/macos-force-dedicated-gpu', _) ~= _ then
|
||||
globals.PLATFORM = 'darwin'
|
||||
end
|
||||
return 'other'
|
||||
end
|
||||
|
||||
--the osd_overlay API was not added until v0.31. The expand-path command was not added until 0.30
|
||||
assert(mp.create_osd_overlay, "Script requires minimum mpv version 0.33")
|
||||
|
||||
globals.ass = mp.create_osd_overlay("ass-events")
|
||||
globals.ass.res_y = 720 / o.scaling_factor_base
|
||||
|
||||
local BASE_FONT_SIZE = 25
|
||||
|
||||
--force file-browser to use a specific text alignment (default: top-left)
|
||||
--uses ass tag alignment numbers: https://aegi.vmoe.info/docs/3.0/ASS_Tags/#index23h3
|
||||
globals.ASS_ALIGNMENT_MATRIX = {
|
||||
top = {left = 7, center = 8, right = 9},
|
||||
center = {left = 4, center = 5, right = 6},
|
||||
bottom = {left = 1, center = 2, right = 3},
|
||||
}
|
||||
|
||||
globals.ALIGN_X = o.align_x == 'auto' and mp.get_property('osd-align-x', 'left') or o.align_x
|
||||
globals.ALIGN_Y = o.align_y == 'auto' and mp.get_property('osd-align-y', 'top') or o.align_y
|
||||
|
||||
globals.style = {
|
||||
global = ([[{\an%d}]]):format(globals.ASS_ALIGNMENT_MATRIX[globals.ALIGN_Y][globals.ALIGN_X]),
|
||||
|
||||
-- full line styles
|
||||
header = ([[{\r\q2\b%s\fs%d\fn%s\c&H%s&}]]):format((o.font_bold_header and "1" or "0"), o.scaling_factor_header*BASE_FONT_SIZE, o.font_name_header, o.font_colour_header),
|
||||
body = ([[{\r\q2\fs%d\fn%s\c&H%s&}]]):format(BASE_FONT_SIZE, o.font_name_body, o.font_colour_body),
|
||||
footer_header = ([[{\r\q2\fs%d\fn%s\c&H%s&}]]):format(o.scaling_factor_wrappers*BASE_FONT_SIZE, o.font_name_wrappers, o.font_colour_wrappers),
|
||||
|
||||
--small section styles (for colours)
|
||||
multiselect = ([[{\c&H%s&}]]):format(o.font_colour_multiselect),
|
||||
selected = ([[{\c&H%s&}]]):format(o.font_colour_selected),
|
||||
playing = ([[{\c&H%s&}]]):format(o.font_colour_playing),
|
||||
playing_selected = ([[{\c&H%s&}]]):format(o.font_colour_playing_multiselected),
|
||||
warning = ([[{\c&H%s&}]]):format(o.font_colour_escape_chars),
|
||||
|
||||
--icon styles
|
||||
indent = ([[{\alpha&H%s}]]):format('ff'),
|
||||
cursor = ([[{\fn%s\c&H%s&}]]):format(o.font_name_cursor, o.font_colour_cursor),
|
||||
cursor_select = ([[{\fn%s\c&H%s&}]]):format(o.font_name_cursor, o.font_colour_multiselect),
|
||||
cursor_deselect = ([[{\fn%s\c&H%s&}]]):format(o.font_name_cursor, o.font_colour_selected),
|
||||
folder = ([[{\fn%s}]]):format(o.font_name_folder),
|
||||
selection_marker = ([[{\alpha&H%s}]]):format(o.font_opacity_selection_marker),
|
||||
}
|
||||
|
||||
---@type State
|
||||
globals.state = {
|
||||
list = {},
|
||||
selected = 1,
|
||||
hidden = true,
|
||||
flag_update = false,
|
||||
keybinds = nil,
|
||||
|
||||
parser = nil,
|
||||
directory = nil,
|
||||
directory_label = nil,
|
||||
prev_directory = '',
|
||||
empty_text = 'Empty Directory',
|
||||
co = nil,
|
||||
|
||||
multiselect_start = nil,
|
||||
initial_selection = nil,
|
||||
selection = {}
|
||||
}
|
||||
|
||||
---@class ParserRef
|
||||
---@field id string
|
||||
---@field index number?
|
||||
|
||||
---@type table<number,Parser>|table<string,Parser>|table<Parser,ParserRef>>
|
||||
--the parser table actually contains 3 entries for each parser
|
||||
--a numeric entry which represents the priority of the parsers and has the parser object as the value
|
||||
--a string entry representing the id of each parser and with the parser object as the value
|
||||
--and a table entry with the parser itself as the key and a table value in the form { id = %s, index = %d }
|
||||
globals.parsers = {}
|
||||
|
||||
--this table contains the parse_state tables for every parse operation indexed with the coroutine used for the parse
|
||||
--this table has weakly referenced keys, meaning that once the coroutine for a parse is no-longer used by anything that
|
||||
--field in the table will be removed by the garbage collector
|
||||
---@type table<thread,ParseState>
|
||||
globals.parse_states = setmetatable({}, { __mode = "k"})
|
||||
|
||||
---@type Set<string>
|
||||
globals.extensions = {}
|
||||
|
||||
---@type Set<string>
|
||||
globals.sub_extensions = {}
|
||||
|
||||
---@type Set<string>
|
||||
globals.audio_extensions = {}
|
||||
|
||||
---@type Set<string>
|
||||
globals.parseable_extensions = {}
|
||||
|
||||
---This table contains mappings to convert external directories to cannonical
|
||||
--locations within the file-browser file tree. The keys of the table are Lua
|
||||
--patterns used to evaluate external directory paths. The value is the path
|
||||
--that should replace the part of the path than matched the pattern.
|
||||
--These mappings should only applied at the edges where external paths are
|
||||
--ingested by file-browser.
|
||||
---@type table<string,string>
|
||||
globals.directory_mappings = {}
|
||||
|
||||
---@class CurrentFile
|
||||
---@field directory string?
|
||||
---@field name string?
|
||||
---@field path string?
|
||||
---@field original_path string?
|
||||
globals.current_file = {
|
||||
directory = nil,
|
||||
name = nil,
|
||||
path = nil,
|
||||
original_path = nil,
|
||||
}
|
||||
|
||||
---@type List
|
||||
globals.root = {}
|
||||
|
||||
---@class (strict) History
|
||||
---@field list string[]
|
||||
---@field size number
|
||||
---@field position number
|
||||
globals.history = {
|
||||
list = {},
|
||||
size = 0,
|
||||
position = 0,
|
||||
}
|
||||
|
||||
---@class (strict) DirectoryStack
|
||||
---@field stack string[]
|
||||
---@field position number
|
||||
globals.directory_stack = {
|
||||
stack = {},
|
||||
position = 0,
|
||||
}
|
||||
|
||||
|
||||
--default list of compatible file extensions
|
||||
--adding an item to this list is a valid request on github
|
||||
globals.compatible_file_extensions = {
|
||||
"264","265","3g2","3ga","3ga2","3gp","3gp2","3gpp","3iv","a52","aac","adt","adts","ahn","aif","aifc","aiff","amr","ape","asf","au","avc","avi","awb","ay",
|
||||
"bmp","cue","divx","dts","dtshd","dts-hd","dv","dvr","dvr-ms","eac3","evo","evob","f4a","flac","flc","fli","flic","flv","gbs","gif","gxf","gym",
|
||||
"h264","h265","hdmov","hdv","hes","hevc","jpeg","jpg","kss","lpcm","m1a","m1v","m2a","m2t","m2ts","m2v","m3u","m3u8","m4a","m4v","mk3d","mka","mkv",
|
||||
"mlp","mod","mov","mp1","mp2","mp2v","mp3","mp4","mp4v","mp4v","mpa","mpe","mpeg","mpeg2","mpeg4","mpg","mpg4","mpv","mpv2","mts","mtv","mxf","nsf",
|
||||
"nsfe","nsv","nut","oga","ogg","ogm","ogv","ogx","opus","pcm","pls","png","qt","ra","ram","rm","rmvb","sap","snd","spc","spx","svg","thd","thd+ac3",
|
||||
"tif","tiff","tod","trp","truehd","true-hd","ts","tsa","tsv","tta","tts","vfw","vgm","vgz","vob","vro","wav","weba","webm","webp","wm","wma","wmv","wtv",
|
||||
"wv","x264","x265","xvid","y4m","yuv"
|
||||
}
|
||||
|
||||
---@class BrowserAbortError
|
||||
globals.ABORT_ERROR = {
|
||||
msg = "browser is no longer waiting for list - aborting parse"
|
||||
}
|
||||
|
||||
return globals
|
||||
@@ -1,354 +0,0 @@
|
||||
------------------------------------------------------------------------------------------
|
||||
----------------------------------Keybind Implementation----------------------------------
|
||||
------------------------------------------------------------------------------------------
|
||||
------------------------------------------------------------------------------------------
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local addons = require 'modules.addons'
|
||||
local playlist = require 'modules.playlist'
|
||||
local controls = require 'modules.controls'
|
||||
local movement = require 'modules.navigation.directory-movement'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
local cursor = require 'modules.navigation.cursor'
|
||||
|
||||
g.state.keybinds = {
|
||||
{'ENTER', 'play', function() playlist.add_files('replace', false) end},
|
||||
{'Shift+ENTER', 'play_append', function() playlist.add_files('append-play', false) end},
|
||||
{'Alt+ENTER', 'play_autoload', function() playlist.add_files('replace', true) end},
|
||||
{'ESC', 'close', controls.escape},
|
||||
{'RIGHT', 'down_dir', movement.down_dir},
|
||||
{'LEFT', 'up_dir', movement.up_dir},
|
||||
{'Alt+RIGHT', 'history_forward', movement.forwards_history},
|
||||
{'Alt+LEFT', 'history_back', movement.back_history},
|
||||
{'DOWN', 'scroll_down', function() cursor.scroll(1, o.wrap) end, {repeatable = true}},
|
||||
{'UP', 'scroll_up', function() cursor.scroll(-1, o.wrap) end, {repeatable = true}},
|
||||
{'PGDWN', 'page_down', function() cursor.scroll(o.num_entries) end, {repeatable = true}},
|
||||
{'PGUP', 'page_up', function() cursor.scroll(-o.num_entries) end, {repeatable = true}},
|
||||
{'Shift+PGDWN', 'list_bottom', function() cursor.scroll(math.huge) end},
|
||||
{'Shift+PGUP', 'list_top', function() cursor.scroll(-math.huge) end},
|
||||
{'HOME', 'goto_current', movement.goto_current_dir},
|
||||
{'Shift+HOME', 'goto_root', movement.goto_root},
|
||||
{'Ctrl+r', 'reload', function() scanning.rescan() end},
|
||||
{'s', 'select_mode', cursor.toggle_select_mode},
|
||||
{'S', 'select_item', cursor.toggle_selection},
|
||||
{'Ctrl+a', 'select_all', cursor.select_all}
|
||||
}
|
||||
|
||||
---a map of key-keybinds - only saves the latest keybind if multiple have the same key code
|
||||
---@type KeybindList
|
||||
local top_level_keys = {}
|
||||
|
||||
---Format the item string for either single or multiple items.
|
||||
---@param base_code_fn Replacer
|
||||
---@param items Item[]
|
||||
---@param state State
|
||||
---@param cmd Keybind
|
||||
---@param quoted? boolean
|
||||
---@return string|nil
|
||||
local function create_item_string(base_code_fn, items, state, cmd, quoted)
|
||||
if not items[1] then return end
|
||||
local func = quoted and function(...) return ("%q"):format(base_code_fn(...)) end or base_code_fn
|
||||
|
||||
local out = {}
|
||||
for _, item in ipairs(items) do
|
||||
table.insert(out, func(item, state))
|
||||
end
|
||||
|
||||
return table.concat(out, cmd['concat-string'] or ' ')
|
||||
end
|
||||
|
||||
local KEYBIND_CODE_PATTERN = fb_utils.get_code_pattern(fb_utils.code_fns)
|
||||
local item_specific_codes = 'fnij'
|
||||
|
||||
---Replaces codes in the given string using the replacers.
|
||||
---@param str string
|
||||
---@param cmd Keybind
|
||||
---@param items Item[]
|
||||
---@param state State
|
||||
---@return string
|
||||
local function substitute_codes(str, cmd, items, state)
|
||||
---@type ReplacerTable
|
||||
local overrides = {}
|
||||
|
||||
for code in item_specific_codes:gmatch('.') do
|
||||
overrides[code] = function(_,s) return create_item_string(fb_utils.code_fns[code], items, s, cmd) end
|
||||
overrides[code:upper()] = function(_,s) return create_item_string(fb_utils.code_fns[code], items, s, cmd, true) end
|
||||
end
|
||||
|
||||
return fb_utils.substitute_codes(str, overrides, items[1], state)
|
||||
end
|
||||
|
||||
---Iterates through the command table and substitutes special
|
||||
---character codes for the correct strings used for custom functions.
|
||||
---@param cmd Keybind
|
||||
---@param items Item[]
|
||||
---@param state State
|
||||
---@return KeybindCommand
|
||||
local function format_command_table(cmd, items, state)
|
||||
local command = cmd.command
|
||||
if type(command) == 'function' then return command end
|
||||
---@type string[][]
|
||||
local copy = {}
|
||||
for i = 1, #command do
|
||||
---@type string[]
|
||||
copy[i] = {}
|
||||
|
||||
for j = 1, #command[i] do
|
||||
copy[i][j] = substitute_codes(cmd.command[i][j], cmd, items, state)
|
||||
end
|
||||
end
|
||||
return copy
|
||||
end
|
||||
|
||||
---Runs all of the commands in the command table.
|
||||
---@param cmd Keybind key.command must be an array of command tables compatible with mp.command_native
|
||||
---@param items Item[] must be an array of multiple items (when multi-type ~= concat the array will be 1 long).
|
||||
---@param state State
|
||||
local function run_custom_command(cmd, items, state)
|
||||
local custom_cmds = cmd.codes and format_command_table(cmd, items, state) or cmd.command
|
||||
if type(custom_cmds) == 'function' then
|
||||
error(('attempting to run a function keybind as a command table keybind\n%s'):format(utils.to_string(cmd)))
|
||||
end
|
||||
|
||||
for _, custom_cmd in ipairs(custom_cmds) do
|
||||
msg.debug("running command:", utils.to_string(custom_cmd))
|
||||
mp.command_native(custom_cmd)
|
||||
end
|
||||
end
|
||||
|
||||
---returns true if the given code set has item specific codes (%f, %i, etc)
|
||||
---@param codes Set<string>
|
||||
---@return boolean
|
||||
local function has_item_codes(codes)
|
||||
for code in pairs(codes) do
|
||||
if item_specific_codes:find(code:lower(), 1, true) then return true end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
---Runs one of the custom commands.
|
||||
---@async
|
||||
---@param cmd Keybind
|
||||
---@param state State
|
||||
---@param co thread
|
||||
---@return boolean|nil
|
||||
local function run_custom_keybind(cmd, state, co)
|
||||
--evaluates a condition and passes through the correct values
|
||||
local function evaluate_condition(condition, items)
|
||||
local cond = substitute_codes(condition, cmd, items, state)
|
||||
return fb_utils.evaluate_string('return '..cond) == true
|
||||
end
|
||||
|
||||
-- evaluates the string condition to decide if the keybind should be run
|
||||
---@type boolean
|
||||
local do_item_condition
|
||||
if cmd.condition then
|
||||
if has_item_codes(cmd.condition_codes) then
|
||||
do_item_condition = true
|
||||
elseif not evaluate_condition(cmd.condition, {}) then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
if cmd.parser then
|
||||
local parser_str = ' '..cmd.parser..' '
|
||||
if not parser_str:find( '%W'..(state.parser.keybind_name or state.parser.name)..'%W' ) then return false end
|
||||
end
|
||||
|
||||
--these are for the default keybinds, or from addons which use direct functions
|
||||
if type(cmd.command) == 'function' then return cmd.command(cmd, cmd.addon and fb_utils.copy_table(state) or state, co) end
|
||||
|
||||
--the function terminates here if we are running the command on a single item
|
||||
if not (cmd.multiselect and next(state.selection)) then
|
||||
if cmd.filter then
|
||||
if not state.list[state.selected] then return false end
|
||||
if state.list[state.selected].type ~= cmd.filter then return false end
|
||||
end
|
||||
|
||||
if cmd.codes then
|
||||
--if the directory is empty, and this command needs to work on an item, then abort and fallback to the next command
|
||||
if not state.list[state.selected] and has_item_codes(cmd.codes) then return false end
|
||||
end
|
||||
|
||||
if do_item_condition and not evaluate_condition(cmd.condition, { state.list[state.selected] }) then
|
||||
return false
|
||||
end
|
||||
run_custom_command(cmd, { state.list[state.selected] }, state)
|
||||
return true
|
||||
end
|
||||
|
||||
--runs the command on all multi-selected items
|
||||
local selection = fb_utils.sort_keys(state.selection, function(item)
|
||||
if do_item_condition and not evaluate_condition(cmd.condition, { item }) then return false end
|
||||
return not cmd.filter or item.type == cmd.filter
|
||||
end)
|
||||
if not next(selection) then return false end
|
||||
|
||||
if cmd["multi-type"] == "concat" then
|
||||
run_custom_command(cmd, selection, state)
|
||||
|
||||
elseif cmd["multi-type"] == "repeat" or cmd["multi-type"] == nil then
|
||||
for i,_ in ipairs(selection) do
|
||||
run_custom_command(cmd, {selection[i]}, state)
|
||||
|
||||
if cmd.delay then
|
||||
mp.add_timeout(cmd.delay, function() fb_utils.coroutine.resume_err(co) end)
|
||||
coroutine.yield()
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--we passthrough by default if the command is not run on every selected item
|
||||
if cmd.passthrough ~= nil then return end
|
||||
|
||||
local num_selection = 0
|
||||
for _ in pairs(state.selection) do num_selection = num_selection+1 end
|
||||
return #selection == num_selection
|
||||
end
|
||||
|
||||
---Recursively runs the keybind functions, passing down through the chain
|
||||
---of keybinds with the same key value.
|
||||
---@async
|
||||
---@param keybind Keybind
|
||||
---@param state State
|
||||
---@param co thread
|
||||
local function run_keybind_recursive(keybind, state, co)
|
||||
msg.trace("Attempting custom command:", utils.to_string(keybind))
|
||||
|
||||
if keybind.passthrough ~= nil then
|
||||
run_custom_keybind(keybind, state, co)
|
||||
if keybind.passthrough == true and keybind.prev_key then
|
||||
run_keybind_recursive(keybind.prev_key, state, co)
|
||||
end
|
||||
else
|
||||
if run_custom_keybind(keybind, state, co) == false and keybind.prev_key then
|
||||
run_keybind_recursive(keybind.prev_key, state, co)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
---A wrapper to run a custom keybind as a lua coroutine.
|
||||
---@param key Keybind
|
||||
local function run_keybind_coroutine(key)
|
||||
msg.debug("Received custom keybind "..key.key)
|
||||
local co = coroutine.create(run_keybind_recursive)
|
||||
|
||||
local state_copy = {
|
||||
directory = g.state.directory,
|
||||
directory_label = g.state.directory_label,
|
||||
list = g.state.list, --the list should remain unchanged once it has been saved to the global state, new directories get new tables
|
||||
selected = g.state.selected,
|
||||
selection = fb_utils.copy_table(g.state.selection),
|
||||
parser = g.state.parser,
|
||||
}
|
||||
local success, err = coroutine.resume(co, key, state_copy, co)
|
||||
if not success then
|
||||
msg.error("error running keybind:", utils.to_string(key))
|
||||
fb_utils.traceback(err, co)
|
||||
end
|
||||
end
|
||||
|
||||
---Scans the given command table to identify if they contain any custom keybind codes.
|
||||
---@param command_table KeybindCommand
|
||||
---@param codes Set<string>
|
||||
---@return Set<string>
|
||||
local function scan_for_codes(command_table, codes)
|
||||
if type(command_table) ~= "table" then return codes end
|
||||
for _, value in pairs(command_table) do
|
||||
local type = type(value)
|
||||
if type == "table" then
|
||||
scan_for_codes(value, codes)
|
||||
elseif type == "string" then
|
||||
for code in value:gmatch(KEYBIND_CODE_PATTERN) do
|
||||
codes[code] = true
|
||||
end
|
||||
end
|
||||
end
|
||||
return codes
|
||||
end
|
||||
|
||||
---Inserting the custom keybind into the keybind array for declaration when file-browser is opened.
|
||||
---Custom keybinds with matching names will overwrite eachother.
|
||||
---@param keybind Keybind
|
||||
local function insert_custom_keybind(keybind)
|
||||
-- api checking for the keybinds is optional, so set to a valid version if it does not exist
|
||||
keybind.api_version = keybind.api_version or '1.0.0'
|
||||
if not addons.check_api_version(keybind, 'keybind '..keybind.name) then return end
|
||||
|
||||
local command = keybind.command
|
||||
|
||||
--we'll always save the keybinds as either an array of command arrays or a function
|
||||
if type(command) == "table" and type(command[1]) ~= "table" then
|
||||
keybind.command = {command}
|
||||
end
|
||||
|
||||
keybind.codes = scan_for_codes(keybind.command, {})
|
||||
if not next(keybind.codes) then keybind.codes = nil end
|
||||
keybind.prev_key = top_level_keys[keybind.key]
|
||||
|
||||
if keybind.condition then
|
||||
keybind.condition_codes = {}
|
||||
for code in string.gmatch(keybind.condition, KEYBIND_CODE_PATTERN) do keybind.condition_codes[code] = true end
|
||||
end
|
||||
|
||||
table.insert(g.state.keybinds, {keybind.key, keybind.name, function() run_keybind_coroutine(keybind) end, keybind.flags or {}})
|
||||
top_level_keys[keybind.key] = keybind
|
||||
end
|
||||
|
||||
---Loading the custom keybinds.
|
||||
---Can either load keybinds from the config file, from addons, or from both.
|
||||
local function setup_keybinds()
|
||||
--this is to make the default keybinds compatible with passthrough from custom keybinds
|
||||
for _, keybind in ipairs(g.state.keybinds) do
|
||||
top_level_keys[keybind[1]] = { key = keybind[1], name = keybind[2], command = keybind[3], flags = keybind[4] }
|
||||
end
|
||||
|
||||
--this loads keybinds from addons
|
||||
for i = #g.parsers, 1, -1 do
|
||||
local parser = g.parsers[i]
|
||||
if parser.keybinds then
|
||||
for i, keybind in ipairs(parser.keybinds) do
|
||||
--if addons use the native array command format, then we need to convert them over to the custom command format
|
||||
if not keybind.key then keybind = { key = keybind[1], name = keybind[2], command = keybind[3], flags = keybind[4] }
|
||||
else keybind = fb_utils.copy_table(keybind) end
|
||||
|
||||
keybind.name = g.parsers[parser].id.."/"..(keybind.name or tostring(i))
|
||||
keybind.addon = true
|
||||
insert_custom_keybind(keybind)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--loads custom keybinds from file-browser-keybinds.json
|
||||
if o.custom_keybinds then
|
||||
local path = mp.command_native({"expand-path", o.custom_keybinds_file}) --[[@as string]]
|
||||
local custom_keybinds, err = io.open( path )
|
||||
if not custom_keybinds then
|
||||
msg.debug(err)
|
||||
msg.verbose('could not read custom keybind file', path)
|
||||
return
|
||||
end
|
||||
|
||||
local json = custom_keybinds:read("*a")
|
||||
custom_keybinds:close()
|
||||
|
||||
json = utils.parse_json(json)
|
||||
if not json then return error("invalid json syntax for "..path) end
|
||||
|
||||
for i, keybind in ipairs(json --[[@as KeybindList]]) do
|
||||
keybind.name = "custom/"..(keybind.name or tostring(i))
|
||||
insert_custom_keybind(keybind)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
---@class keybinds
|
||||
return {
|
||||
setup_keybinds = setup_keybinds,
|
||||
}
|
||||
@@ -1,134 +0,0 @@
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
--------------------------------Scroll/Select Implementation--------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local ass = require 'modules.ass'
|
||||
|
||||
---@class cursor
|
||||
local cursor = {}
|
||||
|
||||
--disables multiselect
|
||||
function cursor.disable_select_mode()
|
||||
g.state.multiselect_start = nil
|
||||
g.state.initial_selection = nil
|
||||
end
|
||||
|
||||
--enables multiselect
|
||||
function cursor.enable_select_mode()
|
||||
g.state.multiselect_start = g.state.selected
|
||||
g.state.initial_selection = fb_utils.copy_table(g.state.selection)
|
||||
end
|
||||
|
||||
--calculates what drag behaviour is required for that specific movement
|
||||
local function drag_select(original_pos, new_pos)
|
||||
if original_pos == new_pos then return end
|
||||
|
||||
local setting = g.state.selection[g.state.multiselect_start or -1]
|
||||
for i = original_pos, new_pos, (new_pos > original_pos and 1 or -1) do
|
||||
--if we're moving the cursor away from the starting point then set the selection
|
||||
--otherwise restore the original selection
|
||||
if i > g.state.multiselect_start then
|
||||
if new_pos > original_pos then
|
||||
g.state.selection[i] = setting
|
||||
elseif i ~= new_pos then
|
||||
g.state.selection[i] = g.state.initial_selection[i]
|
||||
end
|
||||
elseif i < g.state.multiselect_start then
|
||||
if new_pos < original_pos then
|
||||
g.state.selection[i] = setting
|
||||
elseif i ~= new_pos then
|
||||
g.state.selection[i] = g.state.initial_selection[i]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--moves the selector up and down the list by the entered amount
|
||||
function cursor.scroll(n, wrap)
|
||||
local num_items = #g.state.list
|
||||
if num_items == 0 then return end
|
||||
|
||||
local original_pos = g.state.selected
|
||||
|
||||
if original_pos + n > num_items then
|
||||
g.state.selected = wrap and 1 or num_items
|
||||
elseif original_pos + n < 1 then
|
||||
g.state.selected = wrap and num_items or 1
|
||||
else
|
||||
g.state.selected = original_pos + n
|
||||
end
|
||||
|
||||
if g.state.multiselect_start then drag_select(original_pos, g.state.selected) end
|
||||
ass.update_ass()
|
||||
end
|
||||
|
||||
--selects the first item in the list which is highlighted as playing
|
||||
function cursor.select_playing_item()
|
||||
for i,item in ipairs(g.state.list) do
|
||||
if ass.highlight_entry(item) then
|
||||
g.state.selected = i
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--scans the list for which item to select by default
|
||||
--chooses the folder that the script just moved out of
|
||||
--or, otherwise, the item highlighted as currently playing
|
||||
function cursor.select_prev_directory()
|
||||
-- makes use of the directory stack to more exactly select the prev directory
|
||||
local down_stack = g.directory_stack.stack[g.directory_stack.position + 1]
|
||||
if down_stack then
|
||||
for i, item in ipairs(g.state.list) do
|
||||
if fb_utils.get_new_directory(item, g.state.directory) == down_stack then
|
||||
g.state.selected = i
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if g.state.prev_directory:find(g.state.directory, 1, true) == 1 then
|
||||
for i, item in ipairs(g.state.list) do
|
||||
if
|
||||
g.state.prev_directory:find(fb_utils.get_full_path(item), 1, true) or
|
||||
g.state.prev_directory:find(fb_utils.get_new_directory(item, g.state.directory), 1, true)
|
||||
then
|
||||
g.state.selected = i
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
cursor.select_playing_item()
|
||||
end
|
||||
|
||||
--toggles the selection
|
||||
function cursor.toggle_selection()
|
||||
if not g.state.list[g.state.selected] then return end
|
||||
g.state.selection[g.state.selected] = not g.state.selection[g.state.selected] or nil
|
||||
ass.update_ass()
|
||||
end
|
||||
|
||||
--select all items in the list
|
||||
function cursor.select_all()
|
||||
for i,_ in ipairs(g.state.list) do
|
||||
g.state.selection[i] = true
|
||||
end
|
||||
ass.update_ass()
|
||||
end
|
||||
|
||||
--toggles select mode
|
||||
function cursor.toggle_select_mode()
|
||||
if g.state.multiselect_start == nil then
|
||||
cursor.enable_select_mode()
|
||||
cursor.toggle_selection()
|
||||
else
|
||||
cursor.disable_select_mode()
|
||||
ass.update_ass()
|
||||
end
|
||||
end
|
||||
|
||||
return cursor
|
||||
@@ -1,209 +0,0 @@
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local ass = require 'modules.ass'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local cursor = require 'modules.navigation.cursor'
|
||||
|
||||
---@class directory_movement
|
||||
local directory_movement = {}
|
||||
local NavType = scanning.NavType
|
||||
|
||||
---Appends an item to the directory stack, wiping any
|
||||
---directories further ahead than the current position.
|
||||
---@param dir string
|
||||
local function directory_stack_append(dir)
|
||||
-- don't clear the stack if we're re-entering the same directory
|
||||
if g.directory_stack.stack[g.directory_stack.position + 1] == dir then
|
||||
g.directory_stack.position = g.directory_stack.position + 1
|
||||
return
|
||||
end
|
||||
|
||||
local j = #g.directory_stack.stack
|
||||
while g.directory_stack.position < j do
|
||||
g.directory_stack.stack[j] = nil
|
||||
j = j - 1
|
||||
end
|
||||
table.insert(g.directory_stack.stack, dir)
|
||||
g.directory_stack.position = g.directory_stack.position + 1
|
||||
end
|
||||
|
||||
---@param dir string
|
||||
local function directory_stack_prepend(dir)
|
||||
table.insert(g.directory_stack.stack, 1, dir)
|
||||
g.directory_stack.position = 1
|
||||
end
|
||||
|
||||
---Clears directories from the history
|
||||
---@param from? number All entries >= this index are cleared.
|
||||
---@return string[]
|
||||
function directory_movement.clear_history(from)
|
||||
---@type string[]
|
||||
local cleared = {}
|
||||
|
||||
from = from or 1
|
||||
for i = g.history.size, from, -1 do
|
||||
table.insert(cleared, g.history.list[i])
|
||||
g.history.list[i] = nil
|
||||
g.history.size = g.history.size - 1
|
||||
|
||||
if g.history.position >= i then
|
||||
g.history.position = g.history.position - 1
|
||||
end
|
||||
end
|
||||
|
||||
return cleared
|
||||
end
|
||||
|
||||
---Append a directory to the history
|
||||
---If we have navigated backward in the history,
|
||||
---then clear any history beyond the current point.
|
||||
---@param directory string
|
||||
function directory_movement.append_history(directory)
|
||||
if g.history.list[g.history.position] == directory then
|
||||
msg.debug('reloading same directory - history unchanged:', directory)
|
||||
return
|
||||
end
|
||||
|
||||
msg.debug('appending to history:', directory)
|
||||
if g.history.position < g.history.size then
|
||||
directory_movement.clear_history(g.history.position + 1)
|
||||
end
|
||||
|
||||
table.insert(g.history.list, directory)
|
||||
g.history.size = g.history.size + 1
|
||||
g.history.position = g.history.position + 1
|
||||
|
||||
if g.history.size > o.history_size then
|
||||
table.remove(g.history.list, 1)
|
||||
g.history.size = g.history.size - 1
|
||||
end
|
||||
end
|
||||
|
||||
---@param filepath string
|
||||
function directory_movement.set_current_file(filepath)
|
||||
--if we're in idle mode then we want to open the working directory
|
||||
if filepath == nil then
|
||||
g.current_file.directory = fb_utils.fix_path( mp.get_property("working-directory", ""), true)
|
||||
g.current_file.name = nil
|
||||
g.current_file.path = nil
|
||||
g.current_file.original_path = nil
|
||||
return
|
||||
end
|
||||
|
||||
local absolute_path = fb_utils.absolute_path(filepath)
|
||||
local resolved_path = fb_utils.resolve_directory_mapping(absolute_path)
|
||||
|
||||
g.current_file.directory, g.current_file.name = utils.split_path(resolved_path)
|
||||
g.current_file.original_path = absolute_path
|
||||
g.current_file.path = resolved_path
|
||||
|
||||
if o.cursor_follows_playing_item then cursor.select_playing_item() end
|
||||
ass.update_ass()
|
||||
end
|
||||
|
||||
--the base function for moving to a directory
|
||||
---@param directory string
|
||||
---@param nav_type? NavigationType
|
||||
---@param store_history? boolean default `true`
|
||||
---@param parse_properties? ParseProperties
|
||||
---@return thread
|
||||
function directory_movement.goto_directory(directory, nav_type, store_history, parse_properties)
|
||||
local current = g.state.list[g.state.selected]
|
||||
g.state.directory = directory
|
||||
|
||||
if g.state.directory_label then
|
||||
if nav_type == NavType.DOWN then
|
||||
g.state.directory_label = g.state.directory_label..(current.label or current.name)
|
||||
elseif nav_type == NavType.UP then
|
||||
g.state.directory_label = string.match(g.state.directory_label, "^(.-/+)[^/]+/*$")
|
||||
end
|
||||
end
|
||||
|
||||
if o.history_size > 0 and store_history == nil or store_history then
|
||||
directory_movement.append_history(directory)
|
||||
end
|
||||
|
||||
return scanning.rescan(nav_type or NavType.GOTO, nil, parse_properties)
|
||||
end
|
||||
|
||||
---Move the browser to a particular point in the browser history.
|
||||
---The history is a linear list of visited directories from oldest to newest.
|
||||
---If the user changes directories while the current history position is not the head of the list,
|
||||
---any later directories get cleared and the new directory becomes the new head.
|
||||
---@param pos number The history index to move to. Clamped to [1,history_length]
|
||||
---@return number|false # The index actually moved to after clamping. Returns -1 if the index was invalid (can occur if history is empty or disabled)
|
||||
function directory_movement.goto_history(pos)
|
||||
if type(pos) ~= "number" then return false end
|
||||
|
||||
if pos < 1 then pos = 1
|
||||
elseif pos > g.history.size then pos = g.history.size end
|
||||
if not g.history.list[pos] then return false end
|
||||
|
||||
g.history.position = pos
|
||||
directory_movement.goto_directory(g.history.list[pos])
|
||||
return pos
|
||||
end
|
||||
|
||||
--loads the root list
|
||||
function directory_movement.goto_root()
|
||||
msg.verbose('jumping to root')
|
||||
return directory_movement.goto_directory("")
|
||||
end
|
||||
|
||||
--switches to the directory of the currently playing file
|
||||
function directory_movement.goto_current_dir()
|
||||
msg.verbose('jumping to current directory')
|
||||
return directory_movement.goto_directory(g.current_file.directory)
|
||||
end
|
||||
|
||||
--moves up a directory
|
||||
function directory_movement.up_dir()
|
||||
if g.state.directory == '' then return end
|
||||
|
||||
local cached_parent_dir = g.directory_stack.stack[g.directory_stack.position - 1]
|
||||
if cached_parent_dir then
|
||||
g.directory_stack.position = g.directory_stack.position - 1
|
||||
return directory_movement.goto_directory(cached_parent_dir, NavType.UP)
|
||||
end
|
||||
|
||||
local parent_dir = g.state.directory:match("^(.-/+)[^/]+/*$") or ""
|
||||
|
||||
if o.skip_protocol_schemes and parent_dir:find("^(%a[%w+-.]*)://$") then
|
||||
return directory_movement.goto_root()
|
||||
end
|
||||
|
||||
directory_stack_prepend(parent_dir)
|
||||
return directory_movement.goto_directory(parent_dir, NavType.UP)
|
||||
end
|
||||
|
||||
--moves down a directory
|
||||
function directory_movement.down_dir()
|
||||
local current = g.state.list[g.state.selected]
|
||||
if not current or not fb_utils.parseable_item(current) then return end
|
||||
|
||||
local directory, redirected = fb_utils.get_new_directory(current, g.state.directory)
|
||||
directory_stack_append(directory)
|
||||
return directory_movement.goto_directory(directory, redirected and NavType.REDIRECT or NavType.DOWN)
|
||||
end
|
||||
|
||||
--moves backwards through the directory history
|
||||
function directory_movement.back_history()
|
||||
msg.debug('moving backwards in history to', g.history.list[g.history.position-1])
|
||||
if g.history.position == 1 then return end
|
||||
directory_movement.goto_history(g.history.position - 1)
|
||||
end
|
||||
|
||||
--moves forward through the history
|
||||
function directory_movement.forwards_history()
|
||||
msg.debug('moving forwards in history to', g.history.list[g.history.position+1])
|
||||
if g.history.position == g.history.size then return end
|
||||
directory_movement.goto_history(g.history.position + 1)
|
||||
end
|
||||
|
||||
return directory_movement
|
||||
@@ -1,210 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local cursor = require 'modules.navigation.cursor'
|
||||
local ass = require 'modules.ass'
|
||||
|
||||
local parse_state_API = require 'modules.apis.parse-state'
|
||||
|
||||
---@class scanning
|
||||
local scanning = {}
|
||||
|
||||
---@enum NavigationType
|
||||
local NavType = {
|
||||
DOWN = 1,
|
||||
UP = -1,
|
||||
REDIRECT = 2,
|
||||
GOTO = 3,
|
||||
RESCAN = 4,
|
||||
}
|
||||
|
||||
scanning.NavType = NavType
|
||||
|
||||
---@param directory_stack? boolean
|
||||
local function clear_non_adjacent_state(directory_stack)
|
||||
g.state.directory_label = nil
|
||||
if directory_stack then
|
||||
g.directory_stack.stack = {g.state.directory}
|
||||
g.directory_stack.position = 1
|
||||
end
|
||||
end
|
||||
|
||||
---parses the given directory or defers to the next parser if nil is returned
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param index number
|
||||
---@return List?
|
||||
---@return Opts?
|
||||
function scanning.choose_and_parse(directory, index)
|
||||
msg.debug(("finding parser for %q"):format(directory))
|
||||
---@type Parser, List?, Opts?
|
||||
local parser, list, opts
|
||||
local parse_state = g.parse_states[coroutine.running() or ""]
|
||||
while list == nil and not parse_state.already_deferred and index <= #g.parsers do
|
||||
parser = g.parsers[index]
|
||||
if parser:can_parse(directory, parse_state) then
|
||||
msg.debug("attempting parser:", parser:get_id())
|
||||
list, opts = parser:parse(directory, parse_state)
|
||||
end
|
||||
index = index + 1
|
||||
end
|
||||
if not list then return nil, {} end
|
||||
|
||||
msg.debug("list returned from:", parser:get_id())
|
||||
opts = opts or {}
|
||||
if list then opts.id = opts.id or parser:get_id() end
|
||||
return list, opts
|
||||
end
|
||||
|
||||
---Sets up the parse_state table and runs the parse operation.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param parse_state_template ParseStateTemplate
|
||||
---@return List|nil
|
||||
---@return Opts
|
||||
local function run_parse(directory, parse_state_template)
|
||||
msg.verbose(("scanning files in %q"):format(directory))
|
||||
|
||||
---@type ParseStateFields
|
||||
local parse_state = {
|
||||
source = parse_state_template.source,
|
||||
directory = directory,
|
||||
properties = parse_state_template.properties or {}
|
||||
}
|
||||
|
||||
local co = coroutine.running()
|
||||
g.parse_states[co] = fb_utils.set_prototype(parse_state, parse_state_API) --[[@as ParseState]]
|
||||
|
||||
local list, opts = scanning.choose_and_parse(directory, 1)
|
||||
|
||||
if list == nil then return msg.debug("no successful parsers found"), {} end
|
||||
opts = opts or {}
|
||||
opts.parser = g.parsers[opts.id]
|
||||
|
||||
if not opts.filtered then fb_utils.filter(list) end
|
||||
if not opts.sorted then fb_utils.sort(list) end
|
||||
return list, opts
|
||||
end
|
||||
|
||||
---Returns the contents of the given directory using the given parse state.
|
||||
---If a coroutine has already been used for a parse then create a new coroutine so that
|
||||
---the every parse operation has a unique thread ID.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param parse_state ParseStateTemplate
|
||||
---@return List|nil
|
||||
---@return Opts
|
||||
function scanning.scan_directory(directory, parse_state)
|
||||
local co = fb_utils.coroutine.assert("scan_directory must be executed from within a coroutine - aborting scan "..utils.to_string(parse_state))
|
||||
if not g.parse_states[co] then return run_parse(directory, parse_state) end
|
||||
|
||||
--if this coroutine is already is use by another parse operation then we create a new
|
||||
--one and hand execution over to that
|
||||
---@async
|
||||
local new_co = coroutine.create(function()
|
||||
fb_utils.coroutine.resume_err(co, run_parse(directory, parse_state))
|
||||
end)
|
||||
|
||||
--queue the new coroutine on the mpv event queue
|
||||
mp.add_timeout(0, function()
|
||||
local success, err = coroutine.resume(new_co)
|
||||
if not success then
|
||||
fb_utils.traceback(err, new_co)
|
||||
fb_utils.coroutine.resume_err(co)
|
||||
end
|
||||
end)
|
||||
return g.parse_states[co]:yield()
|
||||
end
|
||||
|
||||
---Sends update requests to the different parsers.
|
||||
---@async
|
||||
---@param moving_adjacent? number|boolean
|
||||
---@param parse_properties? ParseProperties
|
||||
local function update_list(moving_adjacent, parse_properties)
|
||||
msg.verbose('opening directory: ' .. g.state.directory)
|
||||
|
||||
g.state.selected = 1
|
||||
g.state.selection = {}
|
||||
|
||||
local directory = g.state.directory
|
||||
local list, opts = scanning.scan_directory(g.state.directory, { source = "browser", properties = parse_properties })
|
||||
|
||||
--if the running coroutine isn't the one stored in the state variable, then the user
|
||||
--changed directories while the coroutine was paused, and this operation should be aborted
|
||||
if coroutine.running() ~= g.state.co then
|
||||
msg.verbose(g.ABORT_ERROR.msg)
|
||||
msg.debug("expected:", g.state.directory, "received:", directory)
|
||||
return
|
||||
end
|
||||
|
||||
--apply fallbacks if the scan failed
|
||||
if not list then
|
||||
msg.warn("could not read directory", g.state.directory)
|
||||
list, opts = {}, {}
|
||||
opts.empty_text = g.style.warning..'Error: could not parse directory'
|
||||
end
|
||||
|
||||
g.state.list = list
|
||||
g.state.parser = opts.parser
|
||||
|
||||
--setting custom options from parsers
|
||||
g.state.directory_label = opts.directory_label
|
||||
g.state.empty_text = opts.empty_text or g.state.empty_text
|
||||
|
||||
--we assume that directory is only changed when redirecting to a different location
|
||||
--therefore we need to change the `moving_adjacent` flag and clear some state values
|
||||
if opts.directory then
|
||||
g.state.directory = opts.directory
|
||||
moving_adjacent = false
|
||||
clear_non_adjacent_state(true)
|
||||
end
|
||||
|
||||
if opts.selected_index then
|
||||
g.state.selected = opts.selected_index or g.state.selected
|
||||
if g.state.selected > #g.state.list then g.state.selected = #g.state.list
|
||||
elseif g.state.selected < 1 then g.state.selected = 1 end
|
||||
end
|
||||
|
||||
if moving_adjacent then cursor.select_prev_directory()
|
||||
else cursor.select_playing_item() end
|
||||
g.state.prev_directory = g.state.directory
|
||||
end
|
||||
|
||||
---rescans the folder and updates the list.
|
||||
---@param nav_type? NavigationType
|
||||
---@param cb? function
|
||||
---@param parse_properties? ParseProperties
|
||||
---@return thread # The coroutine for the triggered parse operation. May be aborted early if directory is in the cache.
|
||||
function scanning.rescan(nav_type, cb, parse_properties)
|
||||
if nav_type == nil then nav_type = NavType.RESCAN end
|
||||
|
||||
--we can only make assumptions about the directory label when moving from adjacent directories
|
||||
if nav_type == NavType.GOTO or nav_type == NavType.REDIRECT then
|
||||
clear_non_adjacent_state(nav_type == NavType.GOTO)
|
||||
end
|
||||
|
||||
g.state.empty_text = "~"
|
||||
g.state.list = {}
|
||||
cursor.disable_select_mode()
|
||||
ass.update_ass()
|
||||
|
||||
--the directory is always handled within a coroutine to allow addons to
|
||||
--pause execution for asynchronous operations
|
||||
---@async
|
||||
local co = fb_utils.coroutine.queue(function()
|
||||
update_list(nav_type, parse_properties)
|
||||
if g.state.empty_text == "~" then g.state.empty_text = "empty directory" end
|
||||
|
||||
ass.update_ass()
|
||||
if cb then fb_utils.coroutine.run(cb) end
|
||||
end)
|
||||
|
||||
g.state.co = co
|
||||
return co
|
||||
end
|
||||
|
||||
|
||||
return scanning
|
||||
@@ -1,48 +0,0 @@
|
||||
local g = require 'modules.globals'
|
||||
local directory_movement = require 'modules.navigation.directory-movement'
|
||||
local fb = require 'modules.apis.fb'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local ass = require 'modules.ass'
|
||||
|
||||
---@class observers
|
||||
local observers ={}
|
||||
|
||||
---saves the directory and name of the currently playing file
|
||||
---@param _ string
|
||||
---@param filepath string
|
||||
function observers.current_directory(_, filepath)
|
||||
directory_movement.set_current_file(filepath)
|
||||
end
|
||||
|
||||
---@param _ string
|
||||
---@param device string
|
||||
function observers.dvd_device(_, device)
|
||||
if not device or device == "" then device = '/dev/dvd' end
|
||||
fb.register_directory_mapping(fb_utils.absolute_path(device), '^dvd://.*', true)
|
||||
end
|
||||
|
||||
---@param _ string
|
||||
---@param device string
|
||||
function observers.bd_device(_, device)
|
||||
if not device or device == '' then device = '/dev/bd' end
|
||||
fb.register_directory_mapping(fb_utils.absolute_path(device), '^bd://.*', true)
|
||||
end
|
||||
|
||||
---@param _ string
|
||||
---@param device string
|
||||
function observers.cd_device(_, device)
|
||||
if not device or device == '' then device = '/dev/cdrom' end
|
||||
fb.register_directory_mapping(fb_utils.absolute_path(device), '^cdda://.*', true)
|
||||
end
|
||||
|
||||
---@param property string
|
||||
---@param alignment string
|
||||
function observers.osd_align(property, alignment)
|
||||
if property == 'osd-align-x' then g.ALIGN_X = alignment
|
||||
elseif property == 'osd-align-y' then g.ALIGN_Y = alignment end
|
||||
|
||||
g.style.global = ([[{\an%d}]]):format(g.ASS_ALIGNMENT_MATRIX[g.ALIGN_Y][g.ALIGN_X])
|
||||
ass.update_ass()
|
||||
end
|
||||
|
||||
return observers
|
||||
@@ -1,193 +0,0 @@
|
||||
local utils = require 'mp.utils'
|
||||
local opt = require 'mp.options'
|
||||
|
||||
---@class options
|
||||
local o = {
|
||||
--root directories
|
||||
root = "~/",
|
||||
|
||||
--automatically detect windows drives and adds them to the root.
|
||||
auto_detect_windows_drives = true,
|
||||
|
||||
--characters to use as separators
|
||||
root_separators = ",",
|
||||
|
||||
--number of entries to show on the screen at once
|
||||
num_entries = 20,
|
||||
|
||||
--number of directories to keep in the history
|
||||
history_size = 100,
|
||||
|
||||
--wrap the cursor around the top and bottom of the list
|
||||
wrap = false,
|
||||
|
||||
--only show files compatible with mpv
|
||||
filter_files = true,
|
||||
|
||||
--recurses directories concurrently when appending items to the playlist
|
||||
concurrent_recursion = true,
|
||||
|
||||
--maximum number of recursions that can run concurrently
|
||||
max_concurrency = 16,
|
||||
|
||||
--enable custom keybinds
|
||||
custom_keybinds = true,
|
||||
custom_keybinds_file = "~~/script-opts/file-browser-keybinds.json",
|
||||
|
||||
--blacklist compatible files, it's recommended to use this rather than to edit the
|
||||
--compatible list directly. A comma separated list of extensions without spaces
|
||||
extension_blacklist = "",
|
||||
|
||||
--add extra file extensions
|
||||
extension_whitelist = "",
|
||||
|
||||
--files with these extensions will be added as additional audio tracks for the current file instead of appended to the playlist
|
||||
audio_extensions = "mka,dts,dtshd,dts-hd,truehd,true-hd",
|
||||
|
||||
--files with these extensions will be added as additional subtitle tracks instead of appended to the playlist
|
||||
subtitle_extensions = "etf,etf8,utf-8,idx,sub,srt,rt,ssa,ass,mks,vtt,sup,scc,smi,lrc,pgs",
|
||||
|
||||
--filter dot directories like .config
|
||||
--most useful on linux systems
|
||||
---@type 'auto'|'yes'|'no'
|
||||
filter_dot_dirs = 'auto',
|
||||
---@type 'auto'|'yes'|'no'
|
||||
filter_dot_files = 'auto',
|
||||
|
||||
--substitute forward slashes for backslashes when appending a local file to the playlist
|
||||
--potentially useful on windows systems
|
||||
substitute_backslash = false,
|
||||
|
||||
--interpret backslashes `\` in paths as forward slashes `/`
|
||||
--this is useful on Windows, which natively uses backslashes.
|
||||
--As backslashes are valid filename characters in Unix systems this could
|
||||
--cause mangled paths, though such filenames are rare.
|
||||
--Use `yes` and `no` to enable/disable. `auto` tries to use the mpv `platform`
|
||||
--property (mpv v0.36+) to decide. If the property is unavailable it defaults to `yes`.
|
||||
---@type 'auto'|'yes'|'no'
|
||||
normalise_backslash = 'auto',
|
||||
|
||||
--a directory cache to improve directory reading time,
|
||||
--enable if it takes a long time to load directories.
|
||||
--may cause 'ghost' files to be shown that no-longer exist or
|
||||
--fail to show files that have recently been created.
|
||||
cache = false,
|
||||
|
||||
--this option reverses the behaviour of the alt+ENTER keybind
|
||||
--when disabled the keybind is required to enable autoload for the file
|
||||
--when enabled the keybind disables autoload for the file
|
||||
autoload = false,
|
||||
|
||||
--if autoload is triggered by selecting the currently playing file, then
|
||||
--the current file will have it's watch-later config saved before being closed
|
||||
--essentially the current file will not be restarted
|
||||
autoload_save_current = true,
|
||||
|
||||
--when opening the browser in idle mode prefer the current working directory over the root
|
||||
--note that the working directory is set as the 'current' directory regardless, so `home` will
|
||||
--move the browser there even if this option is set to false
|
||||
default_to_working_directory = false,
|
||||
|
||||
--When opening the browser prefer the directory last opened by a previous mpv instance of file-browser.
|
||||
--Overrides the `default_to_working_directory` option.
|
||||
--Requires `save_last_opened_directory` to be true.
|
||||
--Uses the internal `last-opened-directory` addon.
|
||||
default_to_last_opened_directory = false,
|
||||
|
||||
--Whether to save the last opened directory and the file to save this value in.
|
||||
save_last_opened_directory = false,
|
||||
last_opened_directory_file = '~~state/file_browser-last_opened_directory',
|
||||
|
||||
--when moving up a directory do not stop on empty protocol schemes like `ftp://`
|
||||
--e.g. moving up from `ftp://localhost/` will move straight to the root instead of `ftp://`
|
||||
skip_protocol_schemes = true,
|
||||
|
||||
--move the cursor to the currently playing item (if available) when the playing file changes
|
||||
cursor_follows_playing_item = false,
|
||||
|
||||
--Replace the user's home directory with `~/` in the header.
|
||||
--Uses the internal home-label addon.
|
||||
home_label = true,
|
||||
|
||||
--map optical device paths to their respective file paths,
|
||||
--e.g. mapping bd:// to the value of the bluray-device property
|
||||
map_bd_device = true,
|
||||
map_dvd_device = true,
|
||||
map_cdda_device = true,
|
||||
|
||||
--allows custom icons be set for the folder and cursor
|
||||
--the `\h` character is a hard space to add padding between the symbol and the text
|
||||
folder_icon = [[{\p1}m 6.52 0 l 1.63 0 b 0.73 0 0.01 0.73 0.01 1.63 l 0 11.41 b 0 12.32 0.73 13.05 1.63 13.05 l 14.68 13.05 b 15.58 13.05 16.31 12.32 16.31 11.41 l 16.31 3.26 b 16.31 2.36 15.58 1.63 14.68 1.63 l 8.15 1.63{\p0}\h]],
|
||||
cursor_icon = [[{\p1}m 14.11 6.86 l 0.34 0.02 b 0.25 -0.02 0.13 -0 0.06 0.08 b -0.01 0.16 -0.02 0.28 0.04 0.36 l 3.38 5.55 l 3.38 5.55 3.67 6.15 3.81 6.79 3.79 7.45 3.61 8.08 3.39 8.5l 0.04 13.77 b -0.02 13.86 -0.01 13.98 0.06 14.06 b 0.11 14.11 0.17 14.13 0.24 14.13 b 0.27 14.13 0.31 14.13 0.34 14.11 l 14.11 7.28 b 14.2 7.24 14.25 7.16 14.25 7.07 b 14.25 6.98 14.2 6.9 14.11 6.86{\p0}\h]],
|
||||
cursor_icon_flipped = [[{\p1}m 0.13 6.86 l 13.9 0.02 b 14 -0.02 14.11 -0 14.19 0.08 b 14.26 0.16 14.27 0.28 14.21 0.36 l 10.87 5.55 l 10.87 5.55 10.44 6.79 10.64 8.08 10.86 8.5l 14.21 13.77 b 14.27 13.86 14.26 13.98 14.19 14.06 b 14.14 14.11 14.07 14.13 14.01 14.13 b 13.97 14.13 13.94 14.13 13.9 14.11 l 0.13 7.28 b 0.05 7.24 0 7.16 0 7.07 b 0 6.98 0.05 6.9 0.13 6.86{\p0}\h]],
|
||||
|
||||
--enable addons
|
||||
addons = true,
|
||||
addon_directory = "~~/script-modules/file-browser-addons",
|
||||
|
||||
--Enables the internal `ls` addon that parses directories using the `ls` commandline tool.
|
||||
--Allows directory parsing to run concurrently, which prevents the browser from locking up.
|
||||
--Automatically disables itself on Windows systems.
|
||||
ls_parser = true,
|
||||
|
||||
--Enables the internal `windir` addon that parses directories using the `dir` command in cmd.exe.
|
||||
--Allows directory parsing to run concurrently, which prevents the browser from locking up.
|
||||
--Automatically disables itself on non-Windows systems.
|
||||
windir_parser = true,
|
||||
|
||||
--directory to load external modules - currently just user-input-module
|
||||
module_directory = "~~/script-modules",
|
||||
|
||||
--turn the OSC idle screen off and on when opening and closing the browser
|
||||
toggle_idlescreen = false,
|
||||
|
||||
--Set the current open status of the browser in the `file_browser/open` field of the `user-data` property.
|
||||
--This property is only available in mpv v0.36+.
|
||||
set_user_data = true,
|
||||
|
||||
--Set the current open status of the browser in the `file_browser-open` field of the `shared-script-properties` property.
|
||||
--This property is deprecated. When it is removed in mpv v0.37 file-browser will automatically ignore this option.
|
||||
set_shared_script_properties = false,
|
||||
|
||||
---@type 'auto'|'left'|'center'|'right'
|
||||
align_x = 'left',
|
||||
---@type 'auto'|'top'|'center'|'bottom'
|
||||
align_y = 'top',
|
||||
|
||||
--style settings
|
||||
format_string_header = [[{\fnMonospace}[%i/%x]%^ %q\N------------------------------------------------------------------]],
|
||||
format_string_topwrapper = '...',
|
||||
format_string_bottomwrapper = '...',
|
||||
|
||||
font_bold_header = true,
|
||||
font_opacity_selection_marker = "99",
|
||||
|
||||
scaling_factor_base = 1,
|
||||
scaling_factor_header = 1.4,
|
||||
scaling_factor_wrappers = 1,
|
||||
|
||||
font_name_header = "",
|
||||
font_name_body = "",
|
||||
font_name_wrappers = "",
|
||||
font_name_folder = "",
|
||||
font_name_cursor = "",
|
||||
|
||||
font_colour_header = "00ccff",
|
||||
font_colour_body = "ffffff",
|
||||
font_colour_wrappers = "00ccff",
|
||||
font_colour_cursor = "00ccff",
|
||||
font_colour_escape_chars = "413eff",
|
||||
|
||||
font_colour_multiselect = "fcad88",
|
||||
font_colour_selected = "fce788",
|
||||
font_colour_playing = "33ff66",
|
||||
font_colour_playing_multiselected = "22b547"
|
||||
|
||||
}
|
||||
|
||||
opt.read_options(o, 'file_browser')
|
||||
|
||||
---@diagnostic disable-next-line deprecated
|
||||
o.set_shared_script_properties = o.set_shared_script_properties and utils.shared_script_property_set
|
||||
|
||||
return o
|
||||
@@ -1,362 +0,0 @@
|
||||
------------------------------------------------------------------------------------------
|
||||
---------------------------------File/Playlist Opening------------------------------------
|
||||
------------------------------------------------------------------------------------------
|
||||
------------------------------------------------------------------------------------------
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local ass = require 'modules.ass'
|
||||
local cursor = require 'modules.navigation.cursor'
|
||||
local controls = require 'modules.controls'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
local movement = require 'modules.navigation.directory-movement'
|
||||
|
||||
local state = g.state
|
||||
|
||||
---@alias LoadfileFlag 'replace'|'append-play'
|
||||
|
||||
---@class LoadOpts
|
||||
---@field directory string
|
||||
---@field flag LoadfileFlag
|
||||
---@field autoload boolean
|
||||
---@field items_appended number
|
||||
---@field co thread
|
||||
---@field concurrency number
|
||||
|
||||
---In mpv v0.38 a new index argument was added to the loadfile command.
|
||||
---For some crazy reason this new argument is placed before the existing options
|
||||
---argument, breaking any scripts that used it. This function finds the correct index
|
||||
---for the options argument using the `command-list` property.
|
||||
---@return integer
|
||||
local function get_loadfile_options_arg_index()
|
||||
---@type table[]
|
||||
local command_list = mp.get_property_native('command-list', {})
|
||||
for _, command in ipairs(command_list) do
|
||||
if command.name == 'loadfile' then
|
||||
for i, arg in ipairs(command.args or {} --[=[@as table[]]=]) do
|
||||
if arg.name == 'options' then
|
||||
return i
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return 3
|
||||
end
|
||||
|
||||
local LEGACY_LOADFILE_SYNTAX = get_loadfile_options_arg_index() == 3
|
||||
|
||||
---A wrapper around loadfile to handle the syntax changes introduced in mpv v0.38.
|
||||
---@param file string
|
||||
---@param flag string
|
||||
---@param options? string|table<string,unknown>
|
||||
---@return boolean
|
||||
local function legacy_loadfile_wrapper(file, flag, options)
|
||||
if LEGACY_LOADFILE_SYNTAX then
|
||||
return mp.command_native({"loadfile", file, flag, options}) ~= nil
|
||||
else
|
||||
return mp.command_native({"loadfile", file, flag, -1, options}) ~= nil
|
||||
end
|
||||
end
|
||||
|
||||
---Adds a file to the playlist and changes the flag to `append-play` in preparation for future items.
|
||||
---@param file string
|
||||
---@param opts LoadOpts
|
||||
---@param mpv_opts? string|table<string,unknown>
|
||||
local function loadfile(file, opts, mpv_opts)
|
||||
if o.substitute_backslash and not fb_utils.get_protocol(file) then
|
||||
file = string.gsub(file, "/", "\\")
|
||||
end
|
||||
|
||||
if opts.flag == "replace" then msg.verbose("Playling file", file)
|
||||
else msg.verbose("Appending", file, "to the playlist") end
|
||||
|
||||
if mpv_opts then
|
||||
msg.debug('Settings opts on', file, ':', utils.to_string(mpv_opts))
|
||||
end
|
||||
|
||||
if not legacy_loadfile_wrapper(file, opts.flag, mpv_opts) then msg.warn(file) end
|
||||
if opts.flag == 'replace' and mp.get_property_bool('pause') then mp.set_property_bool('pause', false) end
|
||||
|
||||
opts.flag = "append-play"
|
||||
opts.items_appended = opts.items_appended + 1
|
||||
end
|
||||
|
||||
---@diagnostic disable-next-line no-unknown
|
||||
local concurrent_loadlist_wrapper
|
||||
|
||||
---@alias ConcurrentRefMap table<List|Item,{directory: string?, sublist: List?, recurse: boolean?}>
|
||||
|
||||
---This function recursively loads directories concurrently in separate coroutines.
|
||||
---Results are saved in a tree of tables that allows asynchronous access.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param load_opts LoadOpts
|
||||
---@param prev_dirs Set<string>
|
||||
---@param item_t Item
|
||||
---@param refs ConcurrentRefMap
|
||||
---@return boolean?
|
||||
local function concurrent_loadlist_parse(directory, load_opts, prev_dirs, item_t, refs)
|
||||
if not refs[item_t] then refs[item_t] = {} end
|
||||
|
||||
--prevents infinite recursion from the item.path or opts.directory fields
|
||||
if prev_dirs[directory] then return end
|
||||
prev_dirs[directory] = true
|
||||
|
||||
local list, list_opts = scanning.scan_directory(directory, { source = 'loadlist' })
|
||||
if list == g.root then return end
|
||||
|
||||
--if we can't parse the directory then append it and hope mpv fares better
|
||||
if list == nil then
|
||||
msg.warn("Could not parse", directory, "appending to playlist anyway")
|
||||
refs[item_t].recurse = false
|
||||
return
|
||||
end
|
||||
|
||||
directory = list_opts.directory or directory
|
||||
|
||||
--we must declare these before we start loading sublists otherwise the append thread will
|
||||
--need to wait until the whole list is loaded (when synchronous IO is used)
|
||||
refs[item_t].sublist = list or {}
|
||||
refs[list] = {directory = directory}
|
||||
|
||||
if directory == "" then return end
|
||||
|
||||
--launches new parse operations for directories, each in a different coroutine
|
||||
for _, item in ipairs(list) do
|
||||
if fb_utils.parseable_item(item) then
|
||||
fb_utils.coroutine.run(concurrent_loadlist_wrapper, fb_utils.get_new_directory(item, directory), load_opts, prev_dirs, item, refs)
|
||||
end
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
---A wrapper function that ensures the concurrent_loadlist_parse is run correctly.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param opts LoadOpts
|
||||
---@param prev_dirs Set<string>
|
||||
---@param item Item
|
||||
---@param refs ConcurrentRefMap
|
||||
function concurrent_loadlist_wrapper(directory, opts, prev_dirs, item, refs)
|
||||
--ensures that only a set number of concurrent parses are operating at any one time.
|
||||
--the mpv event queue is seemingly limited to 1000 items, but only async mpv actions like
|
||||
--command_native_async should use that, events like mp.add_timeout (which coroutine.sleep() uses) should
|
||||
--be handled enturely on the Lua side with a table, which has a significantly larger maximum size.
|
||||
while (opts.concurrency > o.max_concurrency) do
|
||||
fb_utils.coroutine.sleep(0.1)
|
||||
end
|
||||
opts.concurrency = opts.concurrency + 1
|
||||
|
||||
local success = concurrent_loadlist_parse(directory, opts, prev_dirs, item, refs)
|
||||
opts.concurrency = opts.concurrency - 1
|
||||
if not success then refs[item].sublist = {} end
|
||||
if coroutine.status(opts.co) == "suspended" then fb_utils.coroutine.resume_err(opts.co) end
|
||||
end
|
||||
|
||||
---Recursively appends items to the playlist, acts as a consumer to the previous functions producer;
|
||||
---If the next directory has not been parsed this function will yield until the parse has completed.
|
||||
---@async
|
||||
---@param list List
|
||||
---@param load_opts LoadOpts
|
||||
---@param refs ConcurrentRefMap
|
||||
local function concurrent_loadlist_append(list, load_opts, refs)
|
||||
local directory = refs[list].directory
|
||||
|
||||
for _, item in ipairs(list) do
|
||||
if not g.sub_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
and not g.audio_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
then
|
||||
while fb_utils.parseable_item(item) and (not refs[item] or not refs[item].sublist) do
|
||||
coroutine.yield()
|
||||
end
|
||||
|
||||
if fb_utils.parseable_item(item) and refs[item] ~= false then
|
||||
concurrent_loadlist_append(refs[item].sublist, load_opts, refs)
|
||||
else
|
||||
loadfile(fb_utils.get_full_path(item, directory), load_opts, item.mpv_options)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
---Recursive function to load directories serially.
|
||||
---Returns true if any items were appended to the playlist.
|
||||
---@async
|
||||
---@param directory string
|
||||
---@param load_opts LoadOpts
|
||||
---@param prev_dirs Set<string>
|
||||
---@return true|nil
|
||||
local function custom_loadlist_recursive(directory, load_opts, prev_dirs)
|
||||
--prevents infinite recursion from the item.path or opts.directory fields
|
||||
if prev_dirs[directory] then return end
|
||||
prev_dirs[directory] = true
|
||||
|
||||
local list, opts = scanning.scan_directory(directory, { source = "loadlist" })
|
||||
if list == g.root then return end
|
||||
|
||||
--if we can't parse the directory then append it and hope mpv fares better
|
||||
if list == nil then
|
||||
msg.warn("Could not parse", directory, "appending to playlist anyway")
|
||||
loadfile(directory, load_opts)
|
||||
return true
|
||||
end
|
||||
|
||||
directory = opts.directory or directory
|
||||
if directory == "" then return end
|
||||
|
||||
for _, item in ipairs(list) do
|
||||
if not g.sub_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
and not g.audio_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
then
|
||||
if fb_utils.parseable_item(item) then
|
||||
custom_loadlist_recursive( fb_utils.get_new_directory(item, directory) , load_opts, prev_dirs)
|
||||
else
|
||||
local path = fb_utils.get_full_path(item, directory)
|
||||
loadfile(path, load_opts, item.mpv_options)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
---A wrapper for the custom_loadlist_recursive function.
|
||||
---@async
|
||||
---@param item Item
|
||||
---@param opts LoadOpts
|
||||
local function loadlist(item, opts)
|
||||
local dir = fb_utils.get_full_path(item, opts.directory)
|
||||
local num_items = opts.items_appended
|
||||
|
||||
if o.concurrent_recursion then
|
||||
item = fb_utils.copy_table(item)
|
||||
opts.co = fb_utils.coroutine.assert()
|
||||
opts.concurrency = 0
|
||||
|
||||
---@type List
|
||||
local v_list = {item}
|
||||
---@type ConcurrentRefMap
|
||||
local refs = setmetatable({[v_list] = {directory = opts.directory}}, {__mode = 'k'})
|
||||
|
||||
--we need the current coroutine to suspend before we run the first parse operation, so
|
||||
--we schedule the coroutine to run on the mpv event queue
|
||||
fb_utils.coroutine.queue(concurrent_loadlist_wrapper, dir, opts, {}, item, refs)
|
||||
concurrent_loadlist_append(v_list, opts, refs)
|
||||
else
|
||||
custom_loadlist_recursive(dir, opts, {})
|
||||
end
|
||||
|
||||
if opts.items_appended == num_items then msg.warn(dir, "contained no valid files") end
|
||||
end
|
||||
|
||||
---Load playlist entries before and after the currently playing file.
|
||||
---@param path string
|
||||
---@param opts LoadOpts
|
||||
local function autoload_dir(path, opts)
|
||||
if o.autoload_save_current and path == g.current_file.path then
|
||||
mp.commandv("write-watch-later-config") end
|
||||
|
||||
--loads the currently selected file, clearing the playlist in the process
|
||||
loadfile(path, opts)
|
||||
|
||||
local pos = 1
|
||||
local file_count = 0
|
||||
for _,item in ipairs(state.list) do
|
||||
if item.type == "file"
|
||||
and not g.sub_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
and not g.audio_extensions[ fb_utils.get_extension(item.name, "") ]
|
||||
then
|
||||
local p = fb_utils.get_full_path(item)
|
||||
|
||||
if p == path then pos = file_count
|
||||
else loadfile( p, opts, item.mpv_options) end
|
||||
|
||||
file_count = file_count + 1
|
||||
end
|
||||
end
|
||||
mp.commandv("playlist-move", 0, pos+1)
|
||||
end
|
||||
|
||||
---Runs the loadfile or loadlist command.
|
||||
---@async
|
||||
---@param item Item
|
||||
---@param opts LoadOpts
|
||||
---@return nil
|
||||
local function open_item(item, opts)
|
||||
if fb_utils.parseable_item(item) then
|
||||
return loadlist(item, opts)
|
||||
end
|
||||
|
||||
local path = fb_utils.get_full_path(item, opts.directory)
|
||||
if g.sub_extensions[ fb_utils.get_extension(item.name, "") ] then
|
||||
mp.commandv("sub-add", path, opts.flag == "replace" and "select" or "auto")
|
||||
elseif g.audio_extensions[ fb_utils.get_extension(item.name, "") ] then
|
||||
mp.commandv("audio-add", path, opts.flag == "replace" and "select" or "auto")
|
||||
else
|
||||
if opts.autoload then autoload_dir(path, opts)
|
||||
else loadfile(path, opts, item.mpv_options) end
|
||||
end
|
||||
end
|
||||
|
||||
---Handles the open options as a coroutine.
|
||||
---Once loadfile has been run we can no-longer guarantee synchronous execution - the state values may change
|
||||
---therefore, we must ensure that any state values that could be used after a loadfile call are saved beforehand.
|
||||
---@async
|
||||
---@param opts LoadOpts
|
||||
---@return nil
|
||||
local function open_file_coroutine(opts)
|
||||
if not state.list[state.selected] then return end
|
||||
if opts.flag == 'replace' then controls.close() end
|
||||
|
||||
--we want to set the idle option to yes to ensure that if the first item
|
||||
--fails to load then the player has a chance to attempt to load further items (for async append operations)
|
||||
local idle = mp.get_property("idle", "once")
|
||||
mp.set_property("idle", "yes")
|
||||
|
||||
--handles multi-selection behaviour
|
||||
if next(state.selection) then
|
||||
local selection = fb_utils.sort_keys(state.selection)
|
||||
--reset the selection after
|
||||
state.selection = {}
|
||||
|
||||
cursor.disable_select_mode()
|
||||
ass.update_ass()
|
||||
|
||||
--the currently selected file will be loaded according to the flag
|
||||
--the flag variable will be switched to append once a file is loaded
|
||||
for i=1, #selection do
|
||||
open_item(selection[i], opts)
|
||||
end
|
||||
|
||||
else
|
||||
local item = state.list[state.selected]
|
||||
if opts.flag == "replace" then movement.down_dir() end
|
||||
open_item(item, opts)
|
||||
end
|
||||
|
||||
if mp.get_property("idle") == "yes" then mp.set_property("idle", idle) end
|
||||
end
|
||||
|
||||
--opens the selelected file(s)
|
||||
local function open_file(flag, autoload)
|
||||
---@type LoadOpts
|
||||
local opts = {
|
||||
flag = flag,
|
||||
autoload = (autoload ~= o.autoload and flag == "replace"),
|
||||
directory = state.directory,
|
||||
items_appended = 0,
|
||||
concurrency = 0,
|
||||
co = coroutine.create(open_file_coroutine)
|
||||
}
|
||||
fb_utils.coroutine.resume_err(opts.co, opts)
|
||||
end
|
||||
|
||||
---@class playlist
|
||||
return {
|
||||
add_files = open_file,
|
||||
}
|
||||
@@ -1,111 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local scanning = require 'modules.navigation.scanning'
|
||||
|
||||
---@class script_messages
|
||||
local script_messages = {}
|
||||
|
||||
---Allows other scripts to request directory contents from file-browser.
|
||||
---@param directory string
|
||||
---@param response_str string
|
||||
function script_messages.get_directory_contents(directory, response_str)
|
||||
---@async
|
||||
fb_utils.coroutine.run(function()
|
||||
if not directory then msg.error("did not receive a directory string"); return end
|
||||
if not response_str then msg.error("did not receive a response string"); return end
|
||||
|
||||
directory = mp.command_native({"expand-path", directory}, "") --[[@as string]]
|
||||
if directory ~= "" then directory = fb_utils.fix_path(directory, true) end
|
||||
msg.verbose(("recieved %q from 'get-directory-contents' script message - returning result to %q"):format(directory, response_str))
|
||||
|
||||
directory = fb_utils.resolve_directory_mapping(directory)
|
||||
|
||||
---@class OptsWithVersion: Opts
|
||||
---@field API_VERSION string?
|
||||
|
||||
---@type List|nil, OptsWithVersion|Opts|nil
|
||||
local list, opts = scanning.scan_directory(directory, { source = "script-message" } )
|
||||
if opts then opts.API_VERSION = g.API_VERSION end
|
||||
|
||||
local list_str, err = fb_utils.format_json_safe(list)
|
||||
if not list_str then msg.error(err) end
|
||||
|
||||
local opts_str, err2 = fb_utils.format_json_safe(opts)
|
||||
if not opts_str then msg.error(err2) end
|
||||
|
||||
mp.commandv("script-message", response_str, list_str or "", opts_str or "")
|
||||
end)
|
||||
end
|
||||
|
||||
---A helper script message for custom keybinds.
|
||||
---Substitutes any '=>' arguments for 'script-message'.
|
||||
---Makes chaining script-messages much easier.
|
||||
---@param ... string
|
||||
function script_messages.chain(...)
|
||||
---@type string[]
|
||||
local command = table.pack('script-message', ...)
|
||||
for i, v in ipairs(command) do
|
||||
if v == '=>' then command[i] = 'script-message' end
|
||||
end
|
||||
mp.commandv(table.unpack(command))
|
||||
end
|
||||
|
||||
---A helper script message for custom keybinds.
|
||||
---Sends a command after the specified delay.
|
||||
---@param delay string
|
||||
---@param ... string
|
||||
---@return nil
|
||||
function script_messages.delay_command(delay, ...)
|
||||
local command = table.pack(...)
|
||||
local success, err = pcall(mp.add_timeout, fb_utils.evaluate_string('return '..delay), function() mp.commandv(table.unpack(command)) end)
|
||||
if not success then return msg.error(err) end
|
||||
end
|
||||
|
||||
---A helper script message for custom keybinds.
|
||||
---Sends a command only if the given expression returns true.
|
||||
---@param condition string
|
||||
---@param ... string
|
||||
function script_messages.conditional_command(condition, ...)
|
||||
local command = table.pack(...)
|
||||
fb_utils.coroutine.run(function()
|
||||
if fb_utils.evaluate_string('return '..condition) == true then mp.commandv(table.unpack(command)) end
|
||||
end)
|
||||
end
|
||||
|
||||
---A helper script message for custom keybinds.
|
||||
---Extracts lua expressions from the command and evaluates them.
|
||||
---Expressions must be surrounded by !{}. Another ! before the { will escape the evaluation.
|
||||
---@param ... string
|
||||
function script_messages.evaluate_expressions(...)
|
||||
---@type string[]
|
||||
local args = table.pack(...)
|
||||
fb_utils.coroutine.run(function()
|
||||
for i, arg in ipairs(args) do
|
||||
args[i] = arg:gsub('(!+)(%b{})', function(lead, expression)
|
||||
if #lead % 2 == 0 then return string.rep('!', #lead/2)..expression end
|
||||
|
||||
---@type any
|
||||
local eval = fb_utils.evaluate_string('return '..expression:sub(2, -2))
|
||||
return type(eval) == "table" and utils.to_string(eval) or tostring(eval)
|
||||
end)
|
||||
end
|
||||
|
||||
mp.commandv(table.unpack(args))
|
||||
end)
|
||||
end
|
||||
|
||||
---A helper function for custom-keybinds.
|
||||
---Concatenates the command arguments with newlines and runs the
|
||||
---string as a statement of code.
|
||||
---@param ... string
|
||||
function script_messages.run_statement(...)
|
||||
local statement = table.concat(table.pack(...), '\n')
|
||||
fb_utils.coroutine.run(fb_utils.evaluate_string, statement)
|
||||
end
|
||||
|
||||
return script_messages
|
||||
@@ -1,60 +0,0 @@
|
||||
local mp = require 'mp'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
local fb_utils = require 'modules.utils'
|
||||
local fb = require 'modules.apis.fb'
|
||||
|
||||
--sets up the compatible extensions list
|
||||
local function setup_extensions_list()
|
||||
--setting up subtitle extensions
|
||||
for ext in fb_utils.iterate_opt(o.subtitle_extensions:lower(), ',') do
|
||||
g.sub_extensions[ext] = true
|
||||
g.extensions[ext] = true
|
||||
end
|
||||
|
||||
--setting up audio extensions
|
||||
for ext in fb_utils.iterate_opt(o.audio_extensions:lower(), ',') do
|
||||
g.audio_extensions[ext] = true
|
||||
g.extensions[ext] = true
|
||||
end
|
||||
|
||||
--adding file extensions to the set
|
||||
for _, ext in ipairs(g.compatible_file_extensions) do
|
||||
g.extensions[ext] = true
|
||||
end
|
||||
|
||||
--adding extra extensions on the whitelist
|
||||
for str in fb_utils.iterate_opt(o.extension_whitelist:lower(), ',') do
|
||||
g.extensions[str] = true
|
||||
end
|
||||
|
||||
--removing extensions that are in the blacklist
|
||||
for str in fb_utils.iterate_opt(o.extension_blacklist:lower(), ',') do
|
||||
g.extensions[str] = nil
|
||||
end
|
||||
end
|
||||
|
||||
--splits the string into a table on the separators
|
||||
local function setup_root()
|
||||
for str in fb_utils.iterate_opt(o.root) do
|
||||
local path = mp.command_native({'expand-path', str}) --[[@as string]]
|
||||
path = fb_utils.fix_path(path, true)
|
||||
|
||||
local temp = {name = path, type = 'dir', label = str, ass = fb_utils.ass_escape(str, true)}
|
||||
|
||||
g.root[#g.root+1] = temp
|
||||
end
|
||||
|
||||
if g.PLATFORM == 'windows' then
|
||||
fb.register_root_item('C:/')
|
||||
elseif g.PLATFORM ~= nil then
|
||||
fb.register_root_item('/')
|
||||
end
|
||||
end
|
||||
|
||||
---@class setup
|
||||
return {
|
||||
extensions_list = setup_extensions_list,
|
||||
root = setup_root,
|
||||
}
|
||||
@@ -1,637 +0,0 @@
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
-----------------------------------------Utility Functions----------------------------------------------
|
||||
---------------------------------------Part of the addon API--------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local o = require 'modules.options'
|
||||
local g = require 'modules.globals'
|
||||
|
||||
local input_loaded, input = pcall(require, 'mp.input')
|
||||
local user_input_loaded, user_input = pcall(require, 'user-input-module')
|
||||
|
||||
--creates a table for the API functions
|
||||
--adds one metatable redirect to prevent addon authors from accidentally breaking file-browser
|
||||
---@class fb_utils
|
||||
local fb_utils = { API_VERSION = g.API_VERSION }
|
||||
|
||||
fb_utils.list = {}
|
||||
fb_utils.coroutine = {}
|
||||
|
||||
--implements table.pack if on lua 5.1
|
||||
if not table.pack then
|
||||
table.unpack = unpack ---@diagnostic disable-line deprecated
|
||||
---@diagnostic disable-next-line: duplicate-set-field
|
||||
function table.pack(...)
|
||||
local t = {n = select("#", ...), ...}
|
||||
return t
|
||||
end
|
||||
end
|
||||
|
||||
---Returns the index of the given item in the table.
|
||||
---Return -1 if item does not exist.
|
||||
---@generic T
|
||||
---@param t T[]
|
||||
---@param item T
|
||||
---@param from_index? number
|
||||
---@return integer
|
||||
function fb_utils.list.indexOf(t, item, from_index)
|
||||
for i = from_index or 1, #t, 1 do
|
||||
if t[i] == item then return i end
|
||||
end
|
||||
return -1
|
||||
end
|
||||
|
||||
---Returns whether or not the given table contains an entry that
|
||||
---causes the given function to evaluate to true.
|
||||
---@generic T
|
||||
---@param t T[]
|
||||
---@param fn fun(v: T, i: number, t: T[]): boolean
|
||||
---@return boolean
|
||||
function fb_utils.list.some(t, fn)
|
||||
for i, v in ipairs(t --[=[@as any[]]=]) do
|
||||
if fn(v, i, t) then return true end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
---Creates a new table populated with the results of
|
||||
---calling a provided function on every element in t.
|
||||
---@generic T
|
||||
---@generic R
|
||||
---@param t T[]
|
||||
---@param fn fun(v: T, i: number, t: T[]): R
|
||||
---@return R[]
|
||||
function fb_utils.list.map(t, fn)
|
||||
local new_t = {}
|
||||
for i, v in ipairs(t --[=[@as any[]]=]) do
|
||||
new_t[i] = fn(v, i, t) ---@diagnostic disable-line no-unknown
|
||||
end
|
||||
return new_t
|
||||
end
|
||||
|
||||
---Prints an error message and a stack trace.
|
||||
---Can be passed directly to xpcall.
|
||||
---@param errmsg string
|
||||
---@param co? thread A coroutine to grab the stack trace from.
|
||||
function fb_utils.traceback(errmsg, co)
|
||||
if co then
|
||||
msg.warn(debug.traceback(co))
|
||||
else
|
||||
msg.warn(debug.traceback("", 2))
|
||||
end
|
||||
msg.error(errmsg)
|
||||
end
|
||||
|
||||
---Returns a table that stores the given table t as the __index in its metatable.
|
||||
---Creates a prototypally inherited table.
|
||||
---@generic T: table
|
||||
---@param t T
|
||||
---@return T
|
||||
function fb_utils.redirect_table(t)
|
||||
return setmetatable({}, { __index = t })
|
||||
end
|
||||
|
||||
---Sets the given table `proto` as the `__index` field in table `t`s metatable.
|
||||
---@generic T: table
|
||||
---@param t T
|
||||
---@param proto table
|
||||
---@return T
|
||||
function fb_utils.set_prototype(t, proto)
|
||||
return setmetatable(t, { __index = proto })
|
||||
end
|
||||
|
||||
---Prints an error if a coroutine returns an error.
|
||||
---Unlike coroutine.resume_err this still returns the results of coroutine.resume().
|
||||
---@param ... any
|
||||
---@return boolean
|
||||
---@return ...
|
||||
function fb_utils.coroutine.resume_catch(...)
|
||||
local returns = table.pack(coroutine.resume(...))
|
||||
if not returns[1] and returns[2] ~= g.ABORT_ERROR then
|
||||
fb_utils.traceback(returns[2], select(1, ...))
|
||||
end
|
||||
return table.unpack(returns, 1, returns.n)
|
||||
end
|
||||
|
||||
---Resumes a coroutine and prints an error if it was not sucessful.
|
||||
---@param ... any
|
||||
---@return boolean
|
||||
function fb_utils.coroutine.resume_err(...)
|
||||
local success, err = coroutine.resume(...)
|
||||
if not success and err ~= g.ABORT_ERROR then
|
||||
fb_utils.traceback(err, select(1, ...))
|
||||
end
|
||||
return success
|
||||
end
|
||||
|
||||
---Throws an error if not run from within a coroutine.
|
||||
---In lua 5.1 there is only one return value which will be nil if run from the main thread.
|
||||
---In lua 5.2 main will be true if running from the main thread.
|
||||
---@param err any
|
||||
---@return thread
|
||||
function fb_utils.coroutine.assert(err)
|
||||
local co, main = coroutine.running()
|
||||
assert(not main and co, err or "error - function must be executed from within a coroutine")
|
||||
return co
|
||||
end
|
||||
|
||||
---Creates a callback function to resume the current coroutine with the given time limit.
|
||||
---If the time limit expires the coroutine will be resumed. The first return value will be true
|
||||
---if the callback was resumed within the time limit and false otherwise.
|
||||
---If time_limit is falsy then there will be no time limit and there will be no additional return value.
|
||||
---@param time_limit? number seconds
|
||||
---@return fun(...)
|
||||
function fb_utils.coroutine.callback(time_limit)
|
||||
local co = fb_utils.coroutine.assert("cannot create a coroutine callback for the main thread")
|
||||
local timer = time_limit and mp.add_timeout(time_limit, function ()
|
||||
msg.debug("time limit on callback expired")
|
||||
fb_utils.coroutine.resume_err(co, false)
|
||||
end)
|
||||
|
||||
local function fn(...)
|
||||
if timer then
|
||||
if not timer:is_enabled() then return
|
||||
else timer:kill() end
|
||||
return fb_utils.coroutine.resume_err(co, true, ...)
|
||||
end
|
||||
return fb_utils.coroutine.resume_err(co, ...)
|
||||
end
|
||||
return fn
|
||||
end
|
||||
|
||||
---Puts the current coroutine to sleep for the given number of seconds.
|
||||
---@async
|
||||
---@param n number
|
||||
---@return nil
|
||||
function fb_utils.coroutine.sleep(n)
|
||||
mp.add_timeout(n, fb_utils.coroutine.callback())
|
||||
coroutine.yield()
|
||||
end
|
||||
|
||||
---Runs the given function in a coroutine, passing through any additional arguments.
|
||||
---Does not run the coroutine immediately, instead it queues the coroutine to run when the thread is next idle.
|
||||
---Returns the coroutine object so that the caller can act on it before it is run.
|
||||
---@param fn async fun()
|
||||
---@param ... any
|
||||
---@return thread
|
||||
function fb_utils.coroutine.queue(fn, ...)
|
||||
local co = coroutine.create(fn)
|
||||
local args = table.pack(...)
|
||||
mp.add_timeout(0, function() fb_utils.coroutine.resume_err(co, table.unpack(args, 1, args.n)) end)
|
||||
return co
|
||||
end
|
||||
|
||||
---Runs the given function in a coroutine, passing through any additional arguments.
|
||||
---This is for triggering an event in a coroutine.
|
||||
---@param fn async fun()
|
||||
---@param ... any
|
||||
function fb_utils.coroutine.run(fn, ...)
|
||||
local co = coroutine.create(fn)
|
||||
fb_utils.coroutine.resume_err(co, ...)
|
||||
end
|
||||
|
||||
---Get the full path for the current file.
|
||||
---@param item Item
|
||||
---@param dir? string
|
||||
---@return string
|
||||
function fb_utils.get_full_path(item, dir)
|
||||
if item.path then return item.path end
|
||||
return (dir or g.state.directory)..item.name
|
||||
end
|
||||
|
||||
---Gets the path for a new subdirectory, redirects if the path field is set.
|
||||
---Returns the new directory path and a boolean specifying if a redirect happened.
|
||||
---@param item Item
|
||||
---@param directory string
|
||||
---@return string new_directory
|
||||
---@return boolean? redirected `true` if the path was redirected
|
||||
function fb_utils.get_new_directory(item, directory)
|
||||
if item.path and item.redirect ~= false then return item.path, true end
|
||||
if directory == "" then return item.name end
|
||||
if string.sub(directory, -1) == "/" then return directory..item.name end
|
||||
return directory.."/"..item.name
|
||||
end
|
||||
|
||||
---Returns the file extension of the given file, or def if there is none.
|
||||
---@generic T
|
||||
---@param filename string
|
||||
---@param def? T
|
||||
---@return string|T
|
||||
---@overload fun(filename: string): string|nil
|
||||
function fb_utils.get_extension(filename, def)
|
||||
return string.lower(filename):match("%.([^%./]+)$") or def
|
||||
end
|
||||
|
||||
---Returns the protocol scheme of the given url, or def if there is none.
|
||||
---@generic T
|
||||
---@param filename string
|
||||
---@param def T
|
||||
---@return string|T
|
||||
---@overload fun(filename: string): string|nil
|
||||
function fb_utils.get_protocol(filename, def)
|
||||
return string.lower(filename):match("^(%a[%w+-.]*)://") or def
|
||||
end
|
||||
|
||||
---Formats strings for ass handling.
|
||||
---This function is based on a similar function from
|
||||
---https://github.com/mpv-player/mpv/blob/master/player/lua/console.lua#L110.
|
||||
---@param str string
|
||||
---@param replace_newline? true|string
|
||||
---@return string
|
||||
function fb_utils.ass_escape(str, replace_newline)
|
||||
if replace_newline == true then replace_newline = "\\\239\187\191n" end
|
||||
|
||||
--escape the invalid single characters
|
||||
str = string.gsub(str, '[\\{}\n]', {
|
||||
-- There is no escape for '\' in ASS (I think?) but '\' is used verbatim if
|
||||
-- it isn't followed by a recognised character, so add a zero-width
|
||||
-- non-breaking space
|
||||
['\\'] = '\\\239\187\191',
|
||||
['{'] = '\\{',
|
||||
['}'] = '\\}',
|
||||
-- Precede newlines with a ZWNBSP to prevent ASS's weird collapsing of
|
||||
-- consecutive newlines
|
||||
['\n'] = '\239\187\191\\N',
|
||||
})
|
||||
|
||||
-- Turn leading spaces into hard spaces to prevent ASS from stripping them
|
||||
str = str:gsub('\\N ', '\\N\\h')
|
||||
str = str:gsub('^ ', '\\h')
|
||||
|
||||
if replace_newline then
|
||||
str = string.gsub(str, "\\N", replace_newline)
|
||||
end
|
||||
return str
|
||||
end
|
||||
|
||||
---Escape lua pattern characters.
|
||||
---@param str string
|
||||
---@return string
|
||||
function fb_utils.pattern_escape(str)
|
||||
return (string.gsub(str, "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1"))
|
||||
end
|
||||
|
||||
---Standardises filepaths across systems.
|
||||
---@param str string
|
||||
---@param is_directory? boolean
|
||||
---@return string
|
||||
function fb_utils.fix_path(str, is_directory)
|
||||
if str == '' then return str end
|
||||
if o.normalise_backslash == 'yes' or (o.normalise_backslash == 'auto' and g.PLATFORM == 'windows') then
|
||||
str = string.gsub(str, [[\]],[[/]])
|
||||
end
|
||||
str = str:gsub([[/%./]], [[/]])
|
||||
if is_directory and str:sub(-1) ~= '/' then str = str..'/' end
|
||||
return str
|
||||
end
|
||||
|
||||
---Wrapper for mp.utils.join_path to handle protocols.
|
||||
---@param working string
|
||||
---@param relative string
|
||||
---@return string
|
||||
function fb_utils.join_path(working, relative)
|
||||
return fb_utils.get_protocol(relative) and relative or utils.join_path(working, relative)
|
||||
end
|
||||
|
||||
---Converts the given path into an absolute path and normalises it using fb_utils.fix_path.
|
||||
---@param path string
|
||||
---@return string
|
||||
function fb_utils.absolute_path(path)
|
||||
local absolute_path = fb_utils.join_path(mp.get_property('working-directory', ''), path)
|
||||
return fb_utils.fix_path(absolute_path)
|
||||
end
|
||||
|
||||
---Sorts the table lexicographically ignoring case and accounting for leading/non-leading zeroes.
|
||||
---The number format functionality was proposed by github user twophyro, and was presumably taken
|
||||
---from here: http://notebook.kulchenko.com/algorithms/alphanumeric-natural-sorting-for-humans-in-lua.
|
||||
---@param t List
|
||||
---@return List
|
||||
function fb_utils.sort(t)
|
||||
local function padnum(n, d)
|
||||
return #d > 0 and ("%03d%s%.12f"):format(#n, n, tonumber(d) / (10 ^ #d))
|
||||
or ("%03d%s"):format(#n, n)
|
||||
end
|
||||
|
||||
--appends the letter d or f to the start of the comparison to sort directories and folders as well
|
||||
---@type [string,Item][]
|
||||
local tuples = {}
|
||||
for i, f in ipairs(t) do
|
||||
tuples[i] = {f.type:sub(1, 1) .. (f.label or f.name):lower():gsub("0*(%d+)%.?(%d*)", padnum), f}
|
||||
end
|
||||
table.sort(tuples, function(a, b)
|
||||
-- pretty sure that `#b[2] < #a[2]` does not do anything as they are both Item tables and not strings or arrays
|
||||
return a[1] == b[1] and #b[2] < #a[2] or a[1] < b[1]
|
||||
end)
|
||||
for i, tuple in ipairs(tuples) do t[i] = tuple[2] end
|
||||
return t
|
||||
end
|
||||
|
||||
---@param dir string
|
||||
---@return boolean
|
||||
function fb_utils.valid_dir(dir)
|
||||
if o.filter_dot_dirs == 'yes' or o.filter_dot_dirs == 'auto' and g.PLATFORM ~= 'windows' then
|
||||
return string.sub(dir, 1, 1) ~= "."
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
---@param file string
|
||||
---@return boolean
|
||||
function fb_utils.valid_file(file)
|
||||
if o.filter_dot_files == 'yes' or o.filter_dot_files == 'auto' and g.PLATFORM ~= 'windows' then
|
||||
if string.sub(file, 1, 1) == "." then return false end
|
||||
end
|
||||
if o.filter_files and not g.extensions[ fb_utils.get_extension(file, "") ] then return false end
|
||||
return true
|
||||
end
|
||||
|
||||
---Returns whether or not the item can be parsed.
|
||||
---@param item Item
|
||||
---@return boolean
|
||||
function fb_utils.parseable_item(item)
|
||||
return item.type == "dir" or g.parseable_extensions[fb_utils.get_extension(item.name, "")]
|
||||
end
|
||||
|
||||
---Takes a directory string and resolves any directory mappings,
|
||||
---returning the resolved directory.
|
||||
---@param path string
|
||||
---@return string
|
||||
function fb_utils.resolve_directory_mapping(path)
|
||||
if not path then return path end
|
||||
|
||||
for mapping, target in pairs(g.directory_mappings) do
|
||||
local start, finish = string.find(path, mapping)
|
||||
if start then
|
||||
msg.debug('mapping', mapping, 'found for', path, 'changing to', target)
|
||||
|
||||
-- if the mapping is an exact match then return the target as is
|
||||
if finish == #path then return target end
|
||||
|
||||
-- else make sure the path is correctly formatted
|
||||
target = fb_utils.fix_path(target, true)
|
||||
return (string.gsub(path, mapping, target))
|
||||
end
|
||||
end
|
||||
|
||||
return path
|
||||
end
|
||||
|
||||
---Removes items and folders from the list that fail the configured filters.
|
||||
---@param t List
|
||||
---@return List
|
||||
function fb_utils.filter(t)
|
||||
local max = #t
|
||||
local top = 1
|
||||
for i = 1, max do
|
||||
local temp = t[i]
|
||||
t[i] = nil
|
||||
|
||||
if ( temp.type == "dir" and fb_utils.valid_dir(temp.label or temp.name) ) or
|
||||
( temp.type == "file" and fb_utils.valid_file(temp.label or temp.name) )
|
||||
then
|
||||
t[top] = temp
|
||||
top = top+1
|
||||
end
|
||||
end
|
||||
return t
|
||||
end
|
||||
|
||||
---Returns a string iterator that uses the root separators.
|
||||
---@param str any
|
||||
---@param separators? string Override the root separators.
|
||||
---@return fun():(string, ...)
|
||||
function fb_utils.iterate_opt(str, separators)
|
||||
return string.gmatch(str, "([^"..fb_utils.pattern_escape(separators or o.root_separators).."]+)")
|
||||
end
|
||||
|
||||
---Sorts a table into an array of selected items in the correct order.
|
||||
---If a predicate function is passed, then the item will only be added to
|
||||
---the table if the function returns true.
|
||||
---@param t Set<number>
|
||||
---@param include_item? fun(item: Item): boolean
|
||||
---@return Item[]
|
||||
function fb_utils.sort_keys(t, include_item)
|
||||
---@class Ref
|
||||
---@field item Item
|
||||
---@field index number
|
||||
|
||||
---@type Ref[]
|
||||
local keys = {}
|
||||
for k in pairs(t) do
|
||||
local item = g.state.list[k]
|
||||
if not include_item or include_item(item) then
|
||||
keys[#keys+1] = {
|
||||
item = item,
|
||||
index = k,
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
table.sort(keys, function(a,b) return a.index < b.index end)
|
||||
return fb_utils.list.map(keys, function(ref) return ref.item end)
|
||||
end
|
||||
|
||||
---Uses a loop to get the length of an array. The `#` operator is undefined if there
|
||||
---are gaps in the array, this ensures there are none as expected by the mpv node function.
|
||||
---@param t any[]
|
||||
---@return integer
|
||||
local function get_length(t)
|
||||
local i = 1
|
||||
while t[i] do i = i+1 end
|
||||
return i - 1
|
||||
end
|
||||
|
||||
---Recursively removes elements of the table which would cause
|
||||
---utils.format_json to throw an error.
|
||||
---@generic T
|
||||
---@param t T
|
||||
---@return T
|
||||
local function json_safe_recursive(t)
|
||||
if type(t) ~= "table" then return t end
|
||||
|
||||
local array_length = get_length(t)
|
||||
local isarray = array_length > 0
|
||||
|
||||
for key, value in pairs(t --[[@as table<any,any>]]) do
|
||||
local ktype = type(key)
|
||||
local vtype = type(value)
|
||||
|
||||
if vtype ~= "userdata" and vtype ~= "function" and vtype ~= "thread"
|
||||
and (( isarray and ktype == "number" and key <= array_length)
|
||||
or (not isarray and ktype == "string"))
|
||||
then
|
||||
---@diagnostic disable-next-line no-unknown
|
||||
t[key] = json_safe_recursive(t[key])
|
||||
elseif key then
|
||||
---@diagnostic disable-next-line no-unknown
|
||||
t[key] = nil
|
||||
if isarray then array_length = get_length(t) end
|
||||
end
|
||||
end
|
||||
return t
|
||||
end
|
||||
|
||||
---Formats a table into a json string but ensures there are no invalid datatypes inside the table first.
|
||||
---@param t any
|
||||
---@return string|nil
|
||||
---@return string|nil err
|
||||
function fb_utils.format_json_safe(t)
|
||||
--operate on a copy of the table to prevent any data loss in the original table
|
||||
t = json_safe_recursive(fb_utils.copy_table(t))
|
||||
local success, result, err = pcall(utils.format_json, t)
|
||||
if success then return result, err
|
||||
else return nil, result end
|
||||
end
|
||||
|
||||
---Evaluates and runs the given string in both Lua 5.1 and 5.2.
|
||||
---Provides the mpv modules and the fb module to the string.
|
||||
---@param str string
|
||||
---@param chunkname? string Used for error reporting.
|
||||
---@param custom_env? table A custom environment that shadows the default environment.
|
||||
---@param env_defaults? boolean Load lua defaults in environment, as well as mpv and file-browser modules. Defaults to `true`.
|
||||
---@return unknown
|
||||
function fb_utils.evaluate_string(str, chunkname, custom_env, env_defaults)
|
||||
---@type table
|
||||
local env
|
||||
if env_defaults ~= false then
|
||||
---@type table
|
||||
env = fb_utils.redirect_table(_G)
|
||||
env.mp = fb_utils.redirect_table(mp)
|
||||
env.msg = fb_utils.redirect_table(msg)
|
||||
env.utils = fb_utils.redirect_table(utils)
|
||||
env.fb = fb_utils.redirect_table(require 'file-browser')
|
||||
env.input = input_loaded and fb_utils.redirect_table(input)
|
||||
env.user_input = user_input_loaded and fb_utils.redirect_table(user_input)
|
||||
env = fb_utils.set_prototype(custom_env or {}, env)
|
||||
else
|
||||
env = custom_env or {}
|
||||
end
|
||||
|
||||
---@type function, any
|
||||
local chunk, err
|
||||
if setfenv then ---@diagnostic disable-line deprecated
|
||||
chunk, err = loadstring(str, chunkname) ---@diagnostic disable-line deprecated
|
||||
if chunk then setfenv(chunk, env) end ---@diagnostic disable-line deprecated
|
||||
else
|
||||
chunk, err = load(str, chunkname, 't', env) ---@diagnostic disable-line redundant-parameter
|
||||
end
|
||||
if not chunk then
|
||||
msg.warn('failed to load string:', str)
|
||||
msg.error(err)
|
||||
chunk = function() return nil end
|
||||
end
|
||||
|
||||
return chunk()
|
||||
end
|
||||
|
||||
---Copies a table without leaving any references to the original.
|
||||
---Uses a structured clone algorithm to maintain cyclic references.
|
||||
---@generic T
|
||||
---@param t T
|
||||
---@param references table<table,table>
|
||||
---@param depth number
|
||||
---@return T
|
||||
local function copy_table_recursive(t, references, depth)
|
||||
if type(t) ~= "table" or depth == 0 then return t end
|
||||
if references[t] then return references[t] end
|
||||
|
||||
local copy = setmetatable({}, { __original = t })
|
||||
references[t] = copy
|
||||
|
||||
for key, value in pairs(t --[[@as table<any,any>]]) do
|
||||
key = copy_table_recursive(key, references, depth - 1)
|
||||
copy[key] = copy_table_recursive(value, references, depth - 1) ---@diagnostic disable-line no-unknown
|
||||
end
|
||||
return copy
|
||||
end
|
||||
|
||||
---A wrapper around copy_table to provide the reference table.
|
||||
---@generic T
|
||||
---@param t T
|
||||
---@param depth? number
|
||||
---@return T
|
||||
function fb_utils.copy_table(t, depth)
|
||||
--this is to handle cyclic table references
|
||||
return copy_table_recursive(t, {}, depth or math.huge)
|
||||
end
|
||||
|
||||
---@alias Replacer fun(item: Item, s: State): (string|number|nil)
|
||||
---@alias ReplacerTable table<string,Replacer>
|
||||
|
||||
---functions to replace custom-keybind codes
|
||||
---@type ReplacerTable
|
||||
fb_utils.code_fns = {
|
||||
["%"] = function() return "%" end,
|
||||
|
||||
f = function(item, s) return item and fb_utils.get_full_path(item, s.directory) or "" end,
|
||||
n = function(item, s) return item and (item.label or item.name) or "" end,
|
||||
i = function(item, s)
|
||||
local i = fb_utils.list.indexOf(s.list, item)
|
||||
if #s.list == 0 then return 0 end
|
||||
return ('%0'..math.ceil(math.log10(#s.list))..'d'):format(i ~= -1 and i or 0) ---@diagnostic disable-line deprecated
|
||||
end,
|
||||
j = function (item, s)
|
||||
return fb_utils.list.indexOf(s.list, item) ~= -1 and math.abs(fb_utils.list.indexOf( fb_utils.sort_keys(s.selection) , item)) or 0
|
||||
end,
|
||||
x = function(_, s) return #s.list or 0 end,
|
||||
p = function(_, s) return s.directory or "" end,
|
||||
q = function(_, s) return s.directory == '' and 'ROOT' or s.directory_label or s.directory or "" end,
|
||||
d = function(_, s) return (s.directory_label or s.directory):match("([^/]+)/?$") or "" end,
|
||||
r = function(_, s) return s.parser.keybind_name or s.parser.name or "" end,
|
||||
}
|
||||
|
||||
---Programatically creates a pattern that matches any key code.
|
||||
---This will result in some duplicates but that shouldn't really matter.
|
||||
---@param codes ReplacerTable
|
||||
---@return string
|
||||
function fb_utils.get_code_pattern(codes)
|
||||
---@type string
|
||||
local CUSTOM_KEYBIND_CODES = ""
|
||||
for key in pairs(codes) do CUSTOM_KEYBIND_CODES = CUSTOM_KEYBIND_CODES..key:lower()..key:upper() end
|
||||
for key in pairs((getmetatable(codes) or {}).__index or {} --[[@as ReplacerTable]]) do
|
||||
---@type string
|
||||
CUSTOM_KEYBIND_CODES = CUSTOM_KEYBIND_CODES..key:lower()..key:upper()
|
||||
end
|
||||
return('%%%%([%s])'):format(fb_utils.pattern_escape(CUSTOM_KEYBIND_CODES))
|
||||
end
|
||||
|
||||
---Substitutes codes in the given string for other substrings.
|
||||
---@param str string
|
||||
---@param overrides? ReplacerTable Replacer functions for additional characters to match to after `%` characters.
|
||||
---@param item? Item Uses the currently selected item if nil.
|
||||
---@param state? State Uses the global state if nil.
|
||||
---@param modifier_fn? fun(new_str: string, code: string): string given the replacement substrings before they are placed in the main string
|
||||
--- (the return value is the new replacement string).
|
||||
---@return string
|
||||
function fb_utils.substitute_codes(str, overrides, item, state, modifier_fn)
|
||||
local replacers = overrides and setmetatable(fb_utils.copy_table(overrides), {__index = fb_utils.code_fns}) or fb_utils.code_fns
|
||||
item = item or g.state.list[g.state.selected]
|
||||
state = state or g.state
|
||||
|
||||
return (string.gsub(str, fb_utils.get_code_pattern(replacers), function(code)
|
||||
---@type string|number|nil
|
||||
local result
|
||||
local replacer = replacers[code]
|
||||
|
||||
if type(replacer) == "string" then
|
||||
result = replacer
|
||||
--encapsulates the string if using an uppercase code
|
||||
elseif not replacer then
|
||||
local lower_fn = replacers[code:lower()]
|
||||
if not lower_fn then return end
|
||||
result = string.format("%q", lower_fn(item, state))
|
||||
else
|
||||
result = replacer(item, state)
|
||||
end
|
||||
|
||||
if result and modifier_fn then return modifier_fn(tostring(result), code) end
|
||||
return result
|
||||
end))
|
||||
end
|
||||
|
||||
|
||||
return fb_utils
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.8 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 975 KiB |
@@ -1,25 +0,0 @@
|
||||
--[[
|
||||
Fixed A/V sync when switching the audio output device with using audio filters
|
||||
available at: https://github.com/dyphire/mpv-scripts
|
||||
]]--
|
||||
|
||||
local msg = require "mp.msg"
|
||||
|
||||
local function fix_avsync()
|
||||
local paused = mp.get_property_bool("pause")
|
||||
msg.info("fix A/V sync.")
|
||||
mp.commandv("frame-back-step")
|
||||
if paused then
|
||||
return
|
||||
else
|
||||
mp.set_property_bool("pause", false)
|
||||
end
|
||||
end
|
||||
|
||||
mp.observe_property("current-ao", "native", function(_, device)
|
||||
local aid = mp.get_property_number("aid")
|
||||
local has_af = mp.get_property("af", "") ~= ""
|
||||
if device and aid and has_af then
|
||||
fix_avsync()
|
||||
end
|
||||
end)
|
||||
@@ -1,307 +0,0 @@
|
||||
-- Copyright (c) 2025 dyphire <qimoge@gmail.com>
|
||||
-- License: MIT
|
||||
-- link: https://github.com/dyphire/mpv-scripts
|
||||
-- Automatically switches the display's SDR and HDR modes for HDR passthrough
|
||||
-- based on the content of the video being played by the mpv, only works on Windows 10 and later systems
|
||||
|
||||
--! Required for use with mpv-display-plugin: https://github.com/dyphire/mpv-display-plugin
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local options = require 'mp.options'
|
||||
|
||||
local o = {
|
||||
-- Specify the script working mode, value: noth, pass, switch. default: noth
|
||||
-- noth: Do nothing
|
||||
-- pass: Passing HDR signals for HDR content when the monitor is in HDR mode
|
||||
-- switch: Automatically switch between HDR displays and SDR displays
|
||||
-- on Windows 10 and later based on video specifications
|
||||
hdr_mode = "noth",
|
||||
-- Specify whether to switch HDR mode only when the window is in fullscreen or window maximized
|
||||
-- only works with hdr_mode = "switch", default: false
|
||||
fullscreen_only = false,
|
||||
-- Specify the target peak of the HDR display, default: 203
|
||||
-- must be the true peak brightness of the monitor,
|
||||
-- otherwise it will cause HDR content to display incorrectly
|
||||
target_peak = "203",
|
||||
-- Specifies the measured contrast of the output display.
|
||||
-- Used in black point compensation during HDR tone-mapping and HDR passthrough.
|
||||
-- Must be the true contrast information of the display, e.g. 100000 means 100000:1 maximum contrast
|
||||
-- OLED display do not need to change this, default: auto
|
||||
target_contrast = "auto",
|
||||
}
|
||||
options.read_options(o, _, function() end)
|
||||
|
||||
local hdr_active = false
|
||||
local hdr_supported = false
|
||||
local first_switch_check = true
|
||||
local file_loaded = false
|
||||
|
||||
local state = {
|
||||
icc_profile = mp.get_property_native("icc-profile"),
|
||||
icc_profile_auto = mp.get_property_native("icc-profile-auto"),
|
||||
target_peak = mp.get_property_native("target-peak"),
|
||||
target_prim = mp.get_property_native("target-prim"),
|
||||
target_trc = mp.get_property_native("target-trc"),
|
||||
target_contrast = mp.get_property_native("target_contrast"),
|
||||
colorspace_hint = mp.get_property_native("target-colorspace-hint"),
|
||||
inverse_mapping = mp.get_property_native("inverse-tone-mapping")
|
||||
}
|
||||
|
||||
local function query_hdr_state()
|
||||
hdr_supported = mp.get_property_native("user-data/display-info/hdr-supported")
|
||||
hdr_active = mp.get_property_native("user-data/display-info/hdr-status") == "on"
|
||||
end
|
||||
|
||||
local function switch_display_mode(enable)
|
||||
if enable == hdr_active then return end
|
||||
local arg = enable and "on" or "off"
|
||||
mp.commandv('script-message', 'toggle-hdr-display', arg)
|
||||
end
|
||||
|
||||
local function apply_hdr_settings()
|
||||
mp.set_property_native("icc-profile", "")
|
||||
mp.set_property_native("icc-profile-auto", false)
|
||||
mp.set_property_native("target-prim", "bt.2020")
|
||||
mp.set_property_native("target-trc", "pq")
|
||||
mp.set_property_native("target-peak", o.target_peak)
|
||||
mp.set_property_native("target-contrast", o.target_contrast)
|
||||
mp.set_property_native("target-colorspace-hint", "yes")
|
||||
mp.set_property_native("inverse-tone-mapping", "no")
|
||||
end
|
||||
|
||||
local function apply_sdr_settings()
|
||||
mp.set_property_native("icc-profile", state.icc_profile)
|
||||
mp.set_property_native("icc-profile-auto", state.icc_profile_auto)
|
||||
mp.set_property_native("target-peak", "203")
|
||||
mp.set_property_native("target-contrast", state.target_contrast)
|
||||
mp.set_property_native("target-colorspace-hint", "no")
|
||||
if state.target_prim ~= "bt.2020" then
|
||||
mp.set_property_native("target-prim", state.target_prim)
|
||||
else
|
||||
mp.set_property_native("target-prim", "auto")
|
||||
end
|
||||
if state.target_trc ~= "pq" then
|
||||
mp.set_property_native("target-trc", state.target_trc)
|
||||
else
|
||||
mp.set_property_native("target-trc", "auto")
|
||||
end
|
||||
end
|
||||
|
||||
local function reset_target_settings()
|
||||
mp.set_property_native("target-peak", state.target_peak)
|
||||
mp.set_property_native("target-prim", state.target_prim)
|
||||
mp.set_property_native("target-trc", state.target_trc)
|
||||
mp.set_property_native("target-contrast", state.target_contrast)
|
||||
mp.set_property_native("target-colorspace-hint", state.colorspace_hint)
|
||||
mp.set_property_native("inverse-tone-mapping", state.inverse_mapping)
|
||||
end
|
||||
|
||||
local function pause_if_needed()
|
||||
local paused = mp.get_property_native("pause")
|
||||
if not paused then
|
||||
mp.set_property_native("pause", true)
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function resume_if_needed(paused_before)
|
||||
if paused_before then
|
||||
mp.add_timeout(1, function()
|
||||
mp.set_property_native("pause", false)
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
local function handle_hdr_logic(paused_before, target_peak, target_prim, target_trc)
|
||||
query_hdr_state()
|
||||
if hdr_active and o.hdr_mode ~= "noth" then
|
||||
apply_hdr_settings()
|
||||
resume_if_needed(paused_before)
|
||||
elseif not hdr_active and o.hdr_mode ~= "noth" and
|
||||
(tonumber(target_peak) ~= 203 or target_prim == "bt.2020" or target_trc == "pq") then
|
||||
apply_sdr_settings()
|
||||
end
|
||||
end
|
||||
|
||||
local function handle_sdr_logic(paused_before, target_peak, target_prim, target_trc)
|
||||
query_hdr_state()
|
||||
if not hdr_active or o.hdr_mode ~= "noth" then
|
||||
if (not hdr_active or not state.inverse_mapping) and
|
||||
(tonumber(target_peak) ~= 203 or target_prim == "bt.2020" or target_trc == "pq") then
|
||||
apply_sdr_settings()
|
||||
elseif hdr_active and state.inverse_mapping then
|
||||
reset_target_settings()
|
||||
end
|
||||
resume_if_needed(paused_before)
|
||||
end
|
||||
if hdr_active and o.hdr_mode == "pass" and state.inverse_mapping then
|
||||
reset_target_settings()
|
||||
end
|
||||
end
|
||||
|
||||
local function should_switch_hdr(hdr_active, is_fullscreen)
|
||||
if o.hdr_mode ~= "switch" then return false end
|
||||
if not hdr_active and (not o.fullscreen_only or is_fullscreen) then
|
||||
return true
|
||||
elseif hdr_active and o.fullscreen_only and not is_fullscreen then
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function switch_hdr()
|
||||
query_hdr_state()
|
||||
local params = mp.get_property_native("video-params")
|
||||
local gamma = params and params["gamma"]
|
||||
local max_luma = params and params["max-luma"]
|
||||
local is_hdr = max_luma and max_luma > 203
|
||||
if not gamma then return end
|
||||
|
||||
local current_state = is_hdr and "hdr" or "sdr"
|
||||
local pause_changed = false
|
||||
local fullscreen = mp.get_property_native("fullscreen")
|
||||
local maximized = mp.get_property_native("window-maximized")
|
||||
local target_peak = mp.get_property_native("target-peak")
|
||||
local target_prim = mp.get_property_native("target-prim")
|
||||
local target_trc = mp.get_property_native("target-trc")
|
||||
local is_fullscreen = fullscreen or maximized
|
||||
|
||||
if current_state == "hdr" then
|
||||
local function continue_hdr()
|
||||
handle_hdr_logic(pause_changed, target_peak, target_prim, target_trc)
|
||||
end
|
||||
|
||||
if first_switch_check and o.fullscreen_only and not is_fullscreen then
|
||||
first_switch_check = false
|
||||
elseif should_switch_hdr(hdr_active, is_fullscreen) then
|
||||
pause_changed = pause_if_needed()
|
||||
if hdr_active and o.fullscreen_only and not is_fullscreen then
|
||||
msg.info("Switching to SDR output...")
|
||||
switch_display_mode(false)
|
||||
else
|
||||
msg.info("Switching to HDR output...")
|
||||
switch_display_mode(true)
|
||||
end
|
||||
mp.add_timeout(3, continue_hdr)
|
||||
return
|
||||
end
|
||||
|
||||
handle_hdr_logic(false, target_peak, target_prim, target_trc)
|
||||
|
||||
elseif current_state == "sdr" then
|
||||
local function continue_sdr()
|
||||
handle_sdr_logic(pause_changed, target_peak, target_prim, target_trc)
|
||||
end
|
||||
|
||||
if hdr_active and o.hdr_mode == "switch" and (not o.fullscreen_only or is_fullscreen) then
|
||||
msg.info("Switching back to SDR output...")
|
||||
pause_changed = pause_if_needed()
|
||||
switch_display_mode(false)
|
||||
mp.add_timeout(3, continue_sdr)
|
||||
return
|
||||
end
|
||||
|
||||
handle_sdr_logic(false, target_peak, target_prim, target_trc)
|
||||
end
|
||||
end
|
||||
|
||||
local function check_paramet()
|
||||
query_hdr_state()
|
||||
local target_peak = mp.get_property_native("target-peak")
|
||||
local target_prim = mp.get_property_native("target-prim")
|
||||
local target_trc = mp.get_property_native("target-trc")
|
||||
local target_contrast = mp.get_property_native("target-contrast")
|
||||
local colorspace_hint = mp.get_property_native("target-colorspace-hint")
|
||||
local inverse_mapping = mp.get_property_native("inverse-tone-mapping")
|
||||
local params = mp.get_property_native("video-params")
|
||||
local gamma = params and params["gamma"]
|
||||
local max_luma = params and params["max-luma"]
|
||||
local is_hdr = max_luma and max_luma > 203
|
||||
if not gamma then return end
|
||||
|
||||
if is_hdr and hdr_active and o.hdr_mode ~= "noth" then
|
||||
if target_peak ~= o.target_peak then
|
||||
mp.set_property_native("target-peak", o.target_peak)
|
||||
end
|
||||
if target_contrast ~= o.target_contrast then
|
||||
mp.set_property_native("target-contrast", o.target_contrast)
|
||||
end
|
||||
if target_prim ~= "bt.2020" then
|
||||
mp.set_property_native("target-prim", "bt.2020")
|
||||
end
|
||||
if target_trc ~= "pq" then
|
||||
mp.set_property_native("target-trc", "pq")
|
||||
end
|
||||
if colorspace_hint ~= "yes" then
|
||||
mp.set_property_native("target-colorspace-hint", "yes")
|
||||
end
|
||||
if inverse_mapping then
|
||||
mp.set_property_native("inverse-tone-mapping", "no")
|
||||
end
|
||||
end
|
||||
if not is_hdr and o.hdr_mode ~= "noth" and not state.inverse_mapping
|
||||
and (tonumber(target_peak) ~= 203 or target_prim == "bt.2020" or target_trc == "pq") then
|
||||
apply_sdr_settings()
|
||||
end
|
||||
end
|
||||
|
||||
local function on_start()
|
||||
if o.hdr_mode == "noth" or tonumber(o.target_peak) <= 203 then
|
||||
return
|
||||
end
|
||||
local vo = mp.get_property("vo")
|
||||
if vo and vo ~= "gpu-next" then
|
||||
msg.warn("The current video output is not supported, please use gpu-next")
|
||||
return
|
||||
end
|
||||
file_loaded = true
|
||||
query_hdr_state()
|
||||
mp.observe_property("video-params", "native", switch_hdr)
|
||||
mp.observe_property("target-peak", "native", check_paramet)
|
||||
mp.observe_property("target-prim", "native", check_paramet)
|
||||
mp.observe_property("target-trc", "native", check_paramet)
|
||||
mp.observe_property("target-contrast", "native", check_paramet)
|
||||
mp.observe_property("target-colorspace-hint", "native", check_paramet)
|
||||
mp.observe_property("user-data/display-info/hdr-status", "native", switch_hdr)
|
||||
if o.fullscreen_only then
|
||||
mp.observe_property("fullscreen", "native", switch_hdr)
|
||||
mp.observe_property("window-maximized", "native", switch_hdr)
|
||||
end
|
||||
end
|
||||
|
||||
local function on_end(event)
|
||||
query_hdr_state()
|
||||
first_switch_check = true
|
||||
mp.unobserve_property(switch_hdr)
|
||||
mp.unobserve_property(check_paramet)
|
||||
if event["reason"] == "quit" and o.hdr_mode == "switch" then
|
||||
if hdr_active then
|
||||
msg.info("Restoring display to SDR on shutdown")
|
||||
switch_display_mode(false)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function on_idle(_, active)
|
||||
local target_peak = mp.get_property_native("target-peak")
|
||||
local target_prim = mp.get_property_native("target-prim")
|
||||
local target_trc = mp.get_property_native("target-trc")
|
||||
if active and o.hdr_mode ~= "noth" and
|
||||
(tonumber(target_peak) ~= 203 or target_prim == "bt.2020" or target_trc == "pq") then
|
||||
apply_sdr_settings()
|
||||
end
|
||||
if active and file_loaded and o.hdr_mode == "switch" then
|
||||
file_loaded = false
|
||||
query_hdr_state()
|
||||
if hdr_active then
|
||||
msg.info("Restoring display to SDR on shutdown")
|
||||
switch_display_mode(false)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_event("start-file", on_start)
|
||||
mp.register_event("end-file", on_end)
|
||||
mp.observe_property("idle-active", "native", on_idle)
|
||||
@@ -1,602 +0,0 @@
|
||||
--lite version of the code written by sorayuki
|
||||
--only keep the function to record the histroy and recover it
|
||||
|
||||
local mp = require 'mp'
|
||||
local utils = require 'mp.utils'
|
||||
local options = require 'mp.options'
|
||||
local msg = require 'mp.msg' -- this is for debugging
|
||||
|
||||
local o = {
|
||||
enabled = true,
|
||||
-- eng=English, chs=Chinese Simplified
|
||||
language = 'eng',
|
||||
timeout = 15,
|
||||
save_period = 30,
|
||||
-- Set '/:dir%mpvconf%/historybookmarks' to use mpv config directory
|
||||
-- OR change to '/:dir%script%/historybookmarks' for placing it in the same directory of script
|
||||
-- OR change to '~~/historybookmarks' for sub path of mpv portable_config directory
|
||||
-- OR write any variable using '/:var', such as: '/:var%APPDATA%/mpv/historybookmarks' or '/:var%HOME%/mpv/historybookmarks'
|
||||
-- OR specify the absolute path
|
||||
history_dir = "/:dir%mpvconf%/historybookmarks",
|
||||
-- specifies the extension of the history-bookmark file
|
||||
bookmark_ext = ".mpv.history",
|
||||
-- use hash to bookmark_name
|
||||
hash = true,
|
||||
-- set false to get playlist from directory
|
||||
use_playlist = true,
|
||||
-- specifies a whitelist of files to find in a directory
|
||||
whitelist = "3gp,amr,amv,asf,avi,avi,bdmv,f4v,flv,m2ts,m4v,mkv,mov,mp4,mpeg,mpg,ogv,rm,rmvb,ts,vob,webm,wmv",
|
||||
-- excluded directories for shared, #windows: ["X:", "Z:", "F:/Download/", "Download"]
|
||||
excluded_dir = [[
|
||||
[]
|
||||
]],
|
||||
included_dir = [[
|
||||
[]
|
||||
]]
|
||||
}
|
||||
options.read_options(o, _, function() end)
|
||||
|
||||
o.excluded_dir = utils.parse_json(o.excluded_dir)
|
||||
o.included_dir = utils.parse_json(o.included_dir)
|
||||
|
||||
local file_loaded = false
|
||||
|
||||
local locals = {
|
||||
['eng'] = {
|
||||
msg1 = 'Resume successfully',
|
||||
msg2 = 'Resume the last played file in current directory',
|
||||
msg3 = 'Press 1 to confirm, 0 to cancel',
|
||||
},
|
||||
['chs'] = {
|
||||
msg1 = '成功恢复上次播放',
|
||||
msg2 = '是否恢复当前目录的上次播放文件',
|
||||
msg3 = '按1确认,按0取消',
|
||||
}
|
||||
}
|
||||
|
||||
-- apply lang opts
|
||||
local texts = locals[o.language]
|
||||
|
||||
-- `pl` stands for playlist
|
||||
local path = nil
|
||||
local dir = nil
|
||||
local fname = nil
|
||||
local pl_count = 0
|
||||
local pl_name = nil
|
||||
local pl_path = nil
|
||||
local pl_list = {}
|
||||
local pl_idx = 1
|
||||
local current_idx = 1
|
||||
local bookmark_path = nil
|
||||
local history_dir = nil
|
||||
local normalize_path = nil
|
||||
|
||||
local wait_msg
|
||||
local on_key = false
|
||||
|
||||
if o.history_dir:find('^/:dir%%mpvconf%%') then
|
||||
history_dir = o.history_dir:gsub('/:dir%%mpvconf%%', mp.find_config_file('.'))
|
||||
elseif o.history_dir:find('^/:dir%%script%%') then
|
||||
history_dir = o.history_dir:gsub('/:dir%%script%%', mp.find_config_file('scripts'))
|
||||
elseif o.history_dir:find('/:var%%(.*)%%') then
|
||||
local os_variable = o.history_dir:match('/:var%%(.*)%%')
|
||||
history_dir = o.history_dir:gsub('/:var%%(.*)%%', os.getenv(os_variable))
|
||||
else
|
||||
history_dir = mp.command_native({ "expand-path", o.history_dir }) -- Expands both ~ and ~~
|
||||
end
|
||||
|
||||
local is_windows = package.config:sub(1, 1) == "\\" -- detect path separator, detect path separator, windows uses backslashes
|
||||
--create history_dir if it doesn't exist
|
||||
if history_dir ~= '' then
|
||||
local meta = utils.file_info(history_dir)
|
||||
if not meta or not meta.is_dir then
|
||||
local windows_args = { 'powershell', '-NoProfile', '-Command', 'mkdir', string.format("\"%s\"", history_dir) }
|
||||
local unix_args = { 'mkdir', '-p', history_dir }
|
||||
local args = is_windows and windows_args or unix_args
|
||||
local res = mp.command_native({ name = "subprocess", capture_stdout = true, playback_only = false, args = args })
|
||||
if res.status ~= 0 then
|
||||
msg.error("Failed to create history_dir save directory " .. history_dir ..
|
||||
". Error: " .. (res.error or "unknown"))
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function split(input)
|
||||
local ret = {}
|
||||
for str in string.gmatch(input, "([^,]+)") do
|
||||
ret[#ret + 1] = str
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
local ext_whitelist = split(o.whitelist)
|
||||
|
||||
local function exclude(extension)
|
||||
if #ext_whitelist > 0 then
|
||||
for _, ext in pairs(ext_whitelist) do
|
||||
if extension == ext then
|
||||
return true
|
||||
end
|
||||
end
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
local function need_ignore(tab, val)
|
||||
for _, element in pairs(tab) do
|
||||
if string.find(val, element) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function tablelength(tab)
|
||||
local count = 0
|
||||
for _, _ in pairs(tab) do
|
||||
count = count + 1
|
||||
end
|
||||
return count
|
||||
end
|
||||
|
||||
local message_overlay = mp.create_osd_overlay('ass-events')
|
||||
local message_timer = mp.add_timeout(1, function ()
|
||||
message_overlay:remove()
|
||||
end, true)
|
||||
|
||||
function show_message(text, time)
|
||||
message_timer:kill()
|
||||
message_timer.timeout = time or 1
|
||||
message_overlay.data = text
|
||||
message_overlay:update()
|
||||
message_timer:resume()
|
||||
end
|
||||
|
||||
local function normalize(path)
|
||||
if normalize_path ~= nil then
|
||||
if normalize_path then
|
||||
path = mp.command_native({"normalize-path", path})
|
||||
else
|
||||
local directory = mp.get_property("working-directory", "")
|
||||
path = utils.join_path(directory, path:gsub('^%.[\\/]',''))
|
||||
if is_windows then path = path:gsub("\\", "/") end
|
||||
end
|
||||
return path
|
||||
end
|
||||
|
||||
normalize_path = false
|
||||
|
||||
local commands = mp.get_property_native("command-list", {})
|
||||
for _, command in ipairs(commands) do
|
||||
if command.name == "normalize-path" then
|
||||
normalize_path = true
|
||||
break
|
||||
end
|
||||
end
|
||||
return normalize(path)
|
||||
end
|
||||
|
||||
function refresh_globals()
|
||||
path = mp.get_property("path")
|
||||
fname = mp.get_property("filename")
|
||||
pl_count = mp.get_property_number('playlist-count', 0)
|
||||
if path and not is_protocol(path) then
|
||||
path = normalize(path)
|
||||
dir = utils.split_path(path)
|
||||
else
|
||||
dir = nil
|
||||
end
|
||||
end
|
||||
|
||||
-- for unix use only
|
||||
-- returns a table of command path and varargs, or nil if command was not found
|
||||
local function command_exists(command, ...)
|
||||
msg.debug("looking for command:", command)
|
||||
-- msg.debug("args:", )
|
||||
local process = mp.command_native({
|
||||
name = "subprocess",
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
playback_only = false,
|
||||
args = {"sh", "-c", "command -v -- " .. command}
|
||||
})
|
||||
|
||||
if process.status == 0 then
|
||||
local command_path = process.stdout:gsub("\n", "")
|
||||
msg.debug("command found:", command_path)
|
||||
return {command_path, ...}
|
||||
else
|
||||
msg.debug("command not found:", command)
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
-- returns md5 hash of the full path of the current media file
|
||||
local function hash(path)
|
||||
if path == nil then
|
||||
msg.debug("something is wrong with the path, can't get full_path, can't hash it")
|
||||
return
|
||||
end
|
||||
|
||||
msg.debug("hashing:", path)
|
||||
|
||||
local cmd = {
|
||||
name = 'subprocess',
|
||||
capture_stdout = true,
|
||||
playback_only = false,
|
||||
}
|
||||
|
||||
local args = nil
|
||||
local is_unix = package.config:sub(1,1) == "/"
|
||||
if is_unix then
|
||||
local md5 = command_exists("md5sum") or command_exists("md5") or command_exists("openssl", "md5 | cut -d ' ' -f 2")
|
||||
if md5 == nil then
|
||||
msg.warn("no md5 command found, can't generate hash")
|
||||
return
|
||||
end
|
||||
md5 = table.concat(md5, " ")
|
||||
cmd["stdin_data"] = path
|
||||
args = {"sh", "-c", md5 .. " | cut -d ' ' -f 1 | tr '[:lower:]' '[:upper:]'" }
|
||||
else --windows
|
||||
-- https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-filehash?view=powershell-7.3
|
||||
local hash_command = [[
|
||||
$s = [System.IO.MemoryStream]::new();
|
||||
$w = [System.IO.StreamWriter]::new($s);
|
||||
$w.write(']] .. path .. [[');
|
||||
$w.Flush();
|
||||
$s.Position = 0;
|
||||
Get-FileHash -Algorithm MD5 -InputStream $s | Select-Object -ExpandProperty Hash
|
||||
]]
|
||||
|
||||
args = {"powershell", "-NoProfile", "-Command", hash_command}
|
||||
end
|
||||
cmd["args"] = args
|
||||
msg.debug("hash cmd:", utils.to_string(cmd))
|
||||
local process = mp.command_native(cmd)
|
||||
|
||||
if process.status == 0 then
|
||||
local hash = process.stdout:gsub("%s+", "")
|
||||
msg.debug("hash:", hash)
|
||||
return hash
|
||||
else
|
||||
msg.warn("hash function failed")
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function get_bookmark_path(dir)
|
||||
local fpath = string.sub(dir, 1, -2)
|
||||
local _, name = utils.split_path(fpath)
|
||||
local history_name = nil
|
||||
if o.hash then
|
||||
history_name = hash(dir)
|
||||
if history_name == nil then
|
||||
msg.warn("hash function failed, fallback to dirname")
|
||||
history_name = name
|
||||
end
|
||||
else
|
||||
history_name = name
|
||||
end
|
||||
local bookmark_name = history_name .. o.bookmark_ext
|
||||
bookmark_path = utils.join_path(history_dir, bookmark_name)
|
||||
if is_windows then bookmark_path = bookmark_path:gsub("\\", "/") end
|
||||
end
|
||||
|
||||
local function file_exist(path)
|
||||
local meta = utils.file_info(path)
|
||||
if not meta or not meta.is_file then
|
||||
return false
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
-- get the content of the bookmark
|
||||
-- Arg: bookmark_file (path)
|
||||
-- Return: nil / content of the bookmark
|
||||
local function get_record(bookmark_path)
|
||||
local file = io.open(bookmark_path, 'r')
|
||||
local record = file:read()
|
||||
if record == nil then
|
||||
msg.verbose('No history record is found in the bookmark file.')
|
||||
return nil
|
||||
end
|
||||
msg.verbose('last play: ' .. record)
|
||||
file:close()
|
||||
return record
|
||||
end
|
||||
|
||||
----- winapi start -----
|
||||
-- in windows system, we can use the sorting function provided by the win32 API
|
||||
-- see https://learn.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-strcmplogicalw
|
||||
-- this function was taken from https://github.com/mpvnet-player/mpv.net/issues/575#issuecomment-1817413401
|
||||
local winapi = {}
|
||||
local is_windows = mp.get_property_native("platform") == "windows"
|
||||
|
||||
if is_windows then
|
||||
-- is_ffi_loaded is false usually means the mpv builds without luajit
|
||||
local is_ffi_loaded, ffi = pcall(require, "ffi")
|
||||
|
||||
if is_ffi_loaded then
|
||||
winapi = {
|
||||
ffi = ffi,
|
||||
C = ffi.C,
|
||||
CP_UTF8 = 65001,
|
||||
shlwapi = ffi.load("shlwapi"),
|
||||
}
|
||||
|
||||
-- ffi code from https://github.com/po5/thumbfast, Mozilla Public License Version 2.0
|
||||
ffi.cdef[[
|
||||
int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr,
|
||||
int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar);
|
||||
int __stdcall StrCmpLogicalW(wchar_t *psz1, wchar_t *psz2);
|
||||
]]
|
||||
|
||||
winapi.utf8_to_wide = function(utf8_str)
|
||||
if utf8_str then
|
||||
local utf16_len = winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, nil, 0)
|
||||
|
||||
if utf16_len > 0 then
|
||||
local utf16_str = winapi.ffi.new("wchar_t[?]", utf16_len)
|
||||
|
||||
if winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, utf8_str, -1, utf16_str, utf16_len) > 0 then
|
||||
return utf16_str
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return ""
|
||||
end
|
||||
end
|
||||
end
|
||||
----- winapi end -----
|
||||
|
||||
local function alphanumsort_windows(filenames)
|
||||
table.sort(filenames, function(a, b)
|
||||
local a_wide = winapi.utf8_to_wide(a)
|
||||
local b_wide = winapi.utf8_to_wide(b)
|
||||
return winapi.shlwapi.StrCmpLogicalW(a_wide, b_wide) == -1
|
||||
end)
|
||||
|
||||
return filenames
|
||||
end
|
||||
|
||||
-- alphanum sorting for humans in Lua
|
||||
-- http://notebook.kulchenko.com/algorithms/alphanumeric-natural-sorting-for-humans-in-lua
|
||||
local function alphanumsort_lua(filenames)
|
||||
local function padnum(n, d)
|
||||
return #d > 0 and ("%03d%s%.12f"):format(#n, n, tonumber(d) / (10 ^ #d))
|
||||
or ("%03d%s"):format(#n, n)
|
||||
end
|
||||
|
||||
local tuples = {}
|
||||
for i, f in ipairs(filenames) do
|
||||
tuples[i] = {f:lower():gsub("0*(%d+)%.?(%d*)", padnum), f}
|
||||
end
|
||||
table.sort(tuples, function(a, b)
|
||||
return a[1] == b[1] and #b[2] < #a[2] or a[1] < b[1]
|
||||
end)
|
||||
for i, tuple in ipairs(tuples) do filenames[i] = tuple[2] end
|
||||
return filenames
|
||||
end
|
||||
|
||||
local function alphanumsort(filenames)
|
||||
local is_ffi_loaded = pcall(require, "ffi")
|
||||
if is_windows and is_ffi_loaded then
|
||||
alphanumsort_windows(filenames)
|
||||
else
|
||||
alphanumsort_lua(filenames)
|
||||
end
|
||||
end
|
||||
|
||||
local function create_playlist(dir)
|
||||
local pl_list = {}
|
||||
local file_list = utils.readdir(dir, 'files')
|
||||
for i = 1, #file_list do
|
||||
local file = file_list[i]
|
||||
local ext = file:match('%.([^./]+)$')
|
||||
if ext and exclude(ext:lower()) then
|
||||
table.insert(pl_list, file)
|
||||
msg.verbose("Adding " .. file)
|
||||
end
|
||||
end
|
||||
alphanumsort(pl_list)
|
||||
return pl_list
|
||||
end
|
||||
|
||||
local function get_playlist()
|
||||
local pl_list = {}
|
||||
local playlist = mp.get_property_native("playlist")
|
||||
for i = 0, #playlist - 1 do
|
||||
local filename = mp.get_property("playlist/" .. i .. "/filename")
|
||||
local _, file = utils.split_path(filename)
|
||||
table.insert(pl_list, file)
|
||||
end
|
||||
return pl_list
|
||||
end
|
||||
|
||||
-- get the index of the wanted file playlist
|
||||
-- if there is no playlist, return nil
|
||||
local function get_playlist_idx(dst_file)
|
||||
if dst_file == nil or dst_file == " " then
|
||||
return nil
|
||||
end
|
||||
|
||||
local idx = nil
|
||||
for i = 1, #pl_list do
|
||||
if (dst_file == pl_list[i]) then
|
||||
idx = i
|
||||
return idx
|
||||
end
|
||||
end
|
||||
return idx
|
||||
end
|
||||
|
||||
local function jump_resume()
|
||||
mp.unregister_event(jump_resume)
|
||||
show_message(texts.msg1, 2)
|
||||
end
|
||||
|
||||
local function unbind_key()
|
||||
msg.verbose('Unbinding keys')
|
||||
wait_jump_timer:kill()
|
||||
mp.remove_key_binding('key_jump')
|
||||
mp.remove_key_binding('key_cancel')
|
||||
end
|
||||
|
||||
local function key_jump()
|
||||
on_key = true
|
||||
wait_jump_timer:kill()
|
||||
unbind_key()
|
||||
current_idx = pl_idx
|
||||
mp.register_event('file-loaded', jump_resume)
|
||||
msg.verbose('Jumping to ' .. pl_path)
|
||||
mp.commandv('loadfile', pl_path)
|
||||
end
|
||||
|
||||
local function key_cancel()
|
||||
on_key = true
|
||||
wait_jump_timer:kill()
|
||||
unbind_key()
|
||||
end
|
||||
|
||||
local function bind_key()
|
||||
mp.add_forced_key_binding('1', 'key_jump', key_jump)
|
||||
mp.add_forced_key_binding('0', 'key_cancel', key_cancel)
|
||||
end
|
||||
|
||||
-- creat a .history file
|
||||
local function record_history()
|
||||
if not o.enabled or not file_loaded then return end
|
||||
refresh_globals()
|
||||
if not path or is_protocol(path) then return end
|
||||
get_bookmark_path(dir)
|
||||
local eof = mp.get_property_bool("eof-reached")
|
||||
local percent_pos = mp.get_property_number("percent-pos", 0)
|
||||
if not eof and percent_pos < 90 then
|
||||
if fname ~= nil then
|
||||
local file = io.open(bookmark_path, "w")
|
||||
file:write(fname .. "\n")
|
||||
file:close()
|
||||
end
|
||||
else
|
||||
local file = io.open(bookmark_path, "w")
|
||||
file:write(" " .. "\n")
|
||||
file:close()
|
||||
end
|
||||
end
|
||||
|
||||
local timeout = o.timeout
|
||||
local function wait_jumping()
|
||||
timeout = timeout - 1
|
||||
if timeout > 0 then
|
||||
if not on_key then
|
||||
local msg = string.format("%s -- %s? (%s) %02d", wait_msg, texts.msg2, texts.msg3, timeout)
|
||||
show_message(msg, 1)
|
||||
bind_key()
|
||||
else
|
||||
timeout = 0
|
||||
wait_jump_timer:kill()
|
||||
unbind_key()
|
||||
end
|
||||
else
|
||||
wait_jump_timer:kill()
|
||||
unbind_key()
|
||||
end
|
||||
end
|
||||
|
||||
-- record the file name when video is paused
|
||||
-- and stop the timer
|
||||
local function pause(_, paused)
|
||||
if paused then
|
||||
timer4saving_history:stop()
|
||||
record_history()
|
||||
else
|
||||
timer4saving_history:resume()
|
||||
end
|
||||
end
|
||||
|
||||
-- main function of the file
|
||||
local function record()
|
||||
if not o.enabled then return end
|
||||
refresh_globals()
|
||||
if pl_count and pl_count < 1 then return end
|
||||
if not path or is_protocol(path) or not file_exist(path) then return end
|
||||
if not dir or not fname then return end
|
||||
get_bookmark_path(dir)
|
||||
included_dir_count = tablelength(o.included_dir)
|
||||
if included_dir_count > 0 then
|
||||
if not need_ignore(o.included_dir, dir) then return end
|
||||
end
|
||||
if need_ignore(o.excluded_dir, dir) then return end
|
||||
|
||||
msg.verbose('folder -- ' .. dir)
|
||||
msg.verbose('playing -- ' .. fname)
|
||||
msg.verbose('bookmark path -- ' .. bookmark_path)
|
||||
|
||||
if (not file_exist(bookmark_path)) then
|
||||
pl_name = nil
|
||||
return
|
||||
else
|
||||
pl_name = get_record(bookmark_path)
|
||||
if pl_name then
|
||||
pl_path = utils.join_path(dir, pl_name)
|
||||
else
|
||||
pl_name = fname
|
||||
pl_path = path
|
||||
end
|
||||
end
|
||||
|
||||
if o.use_playlist or pl_count > 1 then
|
||||
pl_list = get_playlist()
|
||||
else
|
||||
pl_list = create_playlist(dir)
|
||||
end
|
||||
|
||||
pl_idx = get_playlist_idx(pl_name)
|
||||
if (pl_idx == nil) then
|
||||
msg.verbose('Playlist not found. Creating a new one...')
|
||||
else
|
||||
msg.verbose('playlist index --' .. pl_idx)
|
||||
end
|
||||
|
||||
current_idx = get_playlist_idx(fname)
|
||||
if current_idx then msg.verbose('current index -- ' .. current_idx) end
|
||||
|
||||
if current_idx and (pl_idx == nil) then
|
||||
pl_idx = current_idx
|
||||
pl_name = fname
|
||||
pl_path = path
|
||||
elseif current_idx and (pl_idx ~= current_idx) then
|
||||
wait_msg = pl_idx
|
||||
msg.verbose('Last watched episode -- ' .. wait_msg)
|
||||
wait_jump_timer = mp.add_periodic_timer(1, wait_jumping)
|
||||
end
|
||||
timer4saving_history = mp.add_periodic_timer(o.save_period, record_history)
|
||||
mp.observe_property("pause", "bool", pause)
|
||||
end
|
||||
|
||||
mp.register_event('file-loaded', function()
|
||||
file_loaded = true
|
||||
local path = mp.get_property("path")
|
||||
if not is_protocol(path) then
|
||||
path = normalize(path)
|
||||
directory = utils.split_path(path)
|
||||
else
|
||||
directory = nil
|
||||
end
|
||||
if directory ~= nil and directory ~= dir then
|
||||
mp.add_timeout(0.5, record)
|
||||
end
|
||||
end)
|
||||
|
||||
mp.add_hook("on_unload", 50, function()
|
||||
mp.unobserve_property(pause)
|
||||
record_history()
|
||||
file_loaded = false
|
||||
end)
|
||||
@@ -1,600 +0,0 @@
|
||||
-- InputEvent
|
||||
-- https://github.com/Natural-Harmonia-Gropius/InputEvent
|
||||
|
||||
local utils = require("mp.utils")
|
||||
local opt = require("mp.options")
|
||||
local msg = require("mp.msg")
|
||||
local next = next
|
||||
|
||||
local watched_properties = {} -- indexed by property name (used as a set)
|
||||
local cached_properties = {} -- property name -> last known raw value
|
||||
local o = {
|
||||
--enable external config
|
||||
enable_external_config = false,
|
||||
|
||||
--external config file path
|
||||
external_config = "~~/script-opts/inputevent_key.conf",
|
||||
prefix = "event",
|
||||
}
|
||||
|
||||
opt.read_options(o, _, function() end)
|
||||
|
||||
local bind_map = {}
|
||||
|
||||
local event_pattern = {
|
||||
{ to = "penta_click", from = "down,up,down,up,down,up,down,up,down,up", length = 10 },
|
||||
{ to = "quatra_click", from = "down,up,down,up,down,up,down,up", length = 8 },
|
||||
{ to = "triple_click", from = "down,up,down,up,down,up", length = 6 },
|
||||
{ to = "double_click", from = "down,up,down,up", length = 4 },
|
||||
{ to = "click", from = "down,up", length = 2 },
|
||||
{ to = "press", from = "down", length = 1 },
|
||||
{ to = "release", from = "up", length = 1 },
|
||||
}
|
||||
|
||||
local supported_events = {
|
||||
["repeat"] = true
|
||||
}
|
||||
for _, value in ipairs(event_pattern) do
|
||||
supported_events[value.to] = true
|
||||
end
|
||||
|
||||
-- https://mpv.io/manual/master/#input-command-prefixes
|
||||
local prefixes = { "osd-auto", "no-osd", "osd-bar", "osd-msg", "osd-msg-bar", "raw", "expand-properties",
|
||||
"repeatable", "nonrepeatable", "async", "sync" }
|
||||
|
||||
-- https://mpv.io/manual/master/#list-of-input-commands
|
||||
local commands = { "set", "cycle", "add", "multiply" }
|
||||
|
||||
function table:isEmpty()
|
||||
if next(self) == nil then
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
function table:push(element)
|
||||
self[#self + 1] = element
|
||||
return self
|
||||
end
|
||||
|
||||
function table:assign(source)
|
||||
for key, value in pairs(source) do
|
||||
self[key] = value
|
||||
end
|
||||
return self
|
||||
end
|
||||
|
||||
function table:has(element)
|
||||
for _, value in ipairs(self) do
|
||||
if value == element then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function table:filter(filter)
|
||||
local nt = {}
|
||||
for index, value in ipairs(self) do
|
||||
if (filter(index, value)) then
|
||||
nt = table.push(nt, value)
|
||||
end
|
||||
end
|
||||
return nt
|
||||
end
|
||||
|
||||
function table:join(separator)
|
||||
local result = ""
|
||||
for i, v in ipairs(self) do
|
||||
local value = type(v) == "string" and v or tostring(v)
|
||||
local semi = i == #self and "" or separator
|
||||
result = result .. value .. semi
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
function string:trim()
|
||||
return (self:gsub("^%s*(.-)%s*$", "%1"))
|
||||
end
|
||||
|
||||
function string:replace(pattern, replacement)
|
||||
local result, n = self:gsub(pattern, replacement)
|
||||
return result
|
||||
end
|
||||
|
||||
function string:split(separator)
|
||||
local fields = {}
|
||||
local separator = separator or ":"
|
||||
local pattern = string.format("([^%s]+)", separator)
|
||||
local copy = self:gsub(pattern, function(c) fields[#fields + 1] = c end)
|
||||
return fields
|
||||
end
|
||||
|
||||
local function debounce(func, wait)
|
||||
func = type(func) == "function" and func or function() end
|
||||
wait = type(wait) == "number" and wait / 1000 or 0
|
||||
|
||||
local timer = nil
|
||||
local timer_end = function()
|
||||
if timer then
|
||||
timer:kill()
|
||||
timer = nil
|
||||
end
|
||||
func()
|
||||
end
|
||||
|
||||
return function()
|
||||
if timer then
|
||||
timer:kill()
|
||||
end
|
||||
timer = mp.add_timeout(wait, timer_end)
|
||||
end
|
||||
end
|
||||
|
||||
local function now()
|
||||
return mp.get_time() * 1000
|
||||
end
|
||||
|
||||
local function command(command)
|
||||
if not command or command == '' then return true end
|
||||
return mp.command(command)
|
||||
end
|
||||
|
||||
local function command_split(command)
|
||||
local separator = { ";" }
|
||||
local escape = { "\\" }
|
||||
local quotation = { '"', "'" }
|
||||
local quotation_stack = {}
|
||||
local result = {}
|
||||
local temp = ""
|
||||
|
||||
for i = 1, #command do
|
||||
local char = command:sub(i, i)
|
||||
|
||||
if table.has(separator, char) and #quotation_stack == 0 then
|
||||
result = table.push(result, temp)
|
||||
temp = ""
|
||||
elseif table.has(quotation, char) and not table.has(escape, temp:sub(#temp, #temp)) then
|
||||
temp = temp .. char
|
||||
if quotation_stack[#quotation_stack] == char then
|
||||
quotation_stack = table.filter(quotation_stack, function(i, v) return i ~= #quotation_stack end)
|
||||
else
|
||||
quotation_stack = table.push(quotation_stack, char)
|
||||
end
|
||||
else
|
||||
temp = temp .. char
|
||||
end
|
||||
end
|
||||
|
||||
if #temp then
|
||||
result = table.push(result, temp)
|
||||
end
|
||||
|
||||
return result
|
||||
end
|
||||
|
||||
local function command_invert(command)
|
||||
local invert = ""
|
||||
local command_list = command_split(command)
|
||||
for i, v in ipairs(command_list) do
|
||||
local trimed = v:trim()
|
||||
local subs = trimed:split("%s*")
|
||||
local prefix, command, property = "", nil, nil
|
||||
for _, s in ipairs(subs) do
|
||||
local sub = s:trim()
|
||||
if not command and table.has(prefixes, sub) then
|
||||
prefix = prefix .. " " .. sub
|
||||
elseif not command then
|
||||
if table.has(commands, sub) then
|
||||
command = sub
|
||||
else
|
||||
msg.warn("\"" .. trimed .. "\" doesn't support auto restore.")
|
||||
break
|
||||
end
|
||||
elseif command and not property then
|
||||
property = sub
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
repeat -- workaround continue
|
||||
if not command or not property then
|
||||
msg.warn("\"" .. trimed .. "\" doesn't support auto restore.")
|
||||
break
|
||||
end
|
||||
|
||||
local value = mp.get_property(property)
|
||||
if value then
|
||||
local semi = i == #command_list and "" or ";"
|
||||
invert = invert .. prefix:trim() .. " set " .. property .. " " .. value .. semi
|
||||
else
|
||||
msg.warn("\"" .. trimed .. "\" doesn't support auto restore.")
|
||||
end
|
||||
until true
|
||||
end
|
||||
msg.verbose("command_invert:" .. invert)
|
||||
return invert
|
||||
end
|
||||
|
||||
-- https://github.com/mpv-player/mpv/blob/master/player/lua/auto_profiles.lua
|
||||
local function on_property_change(name, val)
|
||||
cached_properties[name] = val
|
||||
end
|
||||
|
||||
local function magic_get(name)
|
||||
-- Lua identifiers can't contain "-", so in order to match with mpv
|
||||
-- property conventions, replace "_" to "-"
|
||||
name = string.gsub(name, "_", "-")
|
||||
if not watched_properties[name] then
|
||||
watched_properties[name] = true
|
||||
local res, err = mp.get_property_native(name)
|
||||
if err == "property not found" then
|
||||
msg.error("Property '" .. name .. "' was not found.")
|
||||
return default
|
||||
end
|
||||
cached_properties[name] = res
|
||||
mp.observe_property(name, "native", on_property_change)
|
||||
end
|
||||
return cached_properties[name]
|
||||
end
|
||||
|
||||
local evil_magic = {}
|
||||
setmetatable(evil_magic, {
|
||||
__index = function(table, key)
|
||||
-- interpret everything as property, unless it already exists as
|
||||
-- a non-nil global value
|
||||
local v = _G[key]
|
||||
if type(v) ~= "nil" then
|
||||
return v
|
||||
end
|
||||
return magic_get(key)
|
||||
end,
|
||||
})
|
||||
|
||||
p = {}
|
||||
setmetatable(p, {
|
||||
__index = function(table, key)
|
||||
return magic_get(key)
|
||||
end,
|
||||
})
|
||||
|
||||
local function compile_cond(name, s)
|
||||
local code, chunkname = "return " .. s, "Event " .. name .. " condition"
|
||||
local chunk, err
|
||||
if setfenv then -- lua 5.1
|
||||
chunk, err = loadstring(code, chunkname)
|
||||
if chunk then
|
||||
setfenv(chunk, evil_magic)
|
||||
end
|
||||
else -- lua 5.2
|
||||
chunk, err = load(code, chunkname, "t", evil_magic)
|
||||
end
|
||||
if not chunk then
|
||||
msg.error("Event '" .. name .. "' condition: " .. err)
|
||||
chunk = function() return false end
|
||||
end
|
||||
return chunk
|
||||
end
|
||||
|
||||
local InputEvent = {}
|
||||
|
||||
function InputEvent:new(key, on)
|
||||
local Instance = {}
|
||||
setmetatable(Instance, self);
|
||||
self.__index = self;
|
||||
|
||||
Instance.key = key
|
||||
Instance.on = table.assign({ click = {} }, on) -- event -> actions {cmd="",cond=function}
|
||||
Instance.queue = {}
|
||||
Instance.queue_max = { length = 0 }
|
||||
Instance.duration = mp.get_property_number("input-doubleclick-time", 300)
|
||||
Instance.ignored = {}
|
||||
|
||||
for _, event in ipairs(event_pattern) do
|
||||
if Instance.on[event.to] and event.length > 1 then
|
||||
Instance.queue_max = { event = event.to, length = event.length }
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
return Instance
|
||||
end
|
||||
|
||||
function InputEvent:evaluate(event)
|
||||
msg.verbose("Evaluating event: " .. event)
|
||||
local seleted = nil
|
||||
local actions = self.on[event]
|
||||
if not actions or table.isEmpty(actions) then return end
|
||||
for _, action in ipairs(actions) do
|
||||
msg.verbose("Evaluating comand: " .. action.cmd)
|
||||
if type(action.cond) ~= "function" then
|
||||
seleted = action.cmd
|
||||
break
|
||||
else
|
||||
local status, res = pcall(action.cond)
|
||||
if not status then
|
||||
-- errors can be "normal", e.g. in case properties are unavailable
|
||||
msg.verbose("Action condition error on evaluating: " .. res)
|
||||
res = false
|
||||
end
|
||||
res = not not res
|
||||
if res then
|
||||
seleted = action.cmd
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return seleted
|
||||
end
|
||||
|
||||
local function cmd_filter(i,v) return (v.cmd ~= nil and v.cmd ~= "ignore") end
|
||||
|
||||
function InputEvent:emit(event)
|
||||
if self.ignored[event] then
|
||||
if now() - self.ignored[event] < self.duration then
|
||||
return
|
||||
end
|
||||
|
||||
self.ignored[event] = nil
|
||||
end
|
||||
|
||||
if event == "release" and (
|
||||
self.on["release"] == nil or
|
||||
table.isEmpty(self.on["release"]) or
|
||||
table.isEmpty( table.filter(self.on["release"], cmd_filter) )
|
||||
)
|
||||
then
|
||||
event = "release-auto"
|
||||
end
|
||||
|
||||
if event == "repeat" and self.on[event] == "ignore" then
|
||||
event = "click"
|
||||
end
|
||||
|
||||
local cmd = self:evaluate(event)
|
||||
if not cmd or cmd == "" then
|
||||
return
|
||||
end
|
||||
|
||||
if event == "press" and (
|
||||
self.on["release"] == nil or
|
||||
table.isEmpty(self.on["release"]) or
|
||||
table.isEmpty( table.filter(self.on["release"], cmd_filter) )
|
||||
)
|
||||
then
|
||||
self.on["release-auto"] = {{cmd = command_invert(cmd), cond = nil}}
|
||||
end
|
||||
|
||||
local expand = mp.command_native({'expand-text', cmd})
|
||||
if #command_split(cmd) == #command_split(expand) then
|
||||
cmd = mp.command_native({'expand-text', cmd})
|
||||
else
|
||||
mp.msg.warn("Unsafe property-expansion detected.")
|
||||
end
|
||||
|
||||
msg.verbose("Apply comand: " .. cmd)
|
||||
command(cmd)
|
||||
end
|
||||
|
||||
function InputEvent:handler(event)
|
||||
if event == "press" then
|
||||
self:handler("down")
|
||||
self:handler("up")
|
||||
return
|
||||
end
|
||||
|
||||
if event == "down" then
|
||||
self:ignore("repeat")
|
||||
end
|
||||
|
||||
if event == "repeat" then
|
||||
self:emit(event)
|
||||
return
|
||||
end
|
||||
|
||||
if event == "up" then
|
||||
if #self.queue == 0 then
|
||||
self:emit("release")
|
||||
return
|
||||
end
|
||||
|
||||
if #self.queue + 1 == self.queue_max.length then
|
||||
self.queue = {}
|
||||
self:emit(self.queue_max.event)
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if event == "cancel" then
|
||||
if #self.queue == 0 then
|
||||
self:emit("release")
|
||||
return
|
||||
end
|
||||
|
||||
table.remove(self.queue)
|
||||
return
|
||||
end
|
||||
|
||||
self.queue = table.push(self.queue, event)
|
||||
self.exec_debounced()
|
||||
end
|
||||
|
||||
function InputEvent:exec()
|
||||
if #self.queue == 0 then
|
||||
return
|
||||
end
|
||||
|
||||
local separator = ","
|
||||
|
||||
local queue_string = table.join(self.queue, separator)
|
||||
for _, v in ipairs(event_pattern) do
|
||||
if self.on[v.to] then
|
||||
queue_string = queue_string:replace(v.from, v.to)
|
||||
end
|
||||
end
|
||||
|
||||
self.queue = queue_string:split(separator)
|
||||
for _, event in ipairs(self.queue) do
|
||||
self:emit(event)
|
||||
end
|
||||
|
||||
self.queue = {}
|
||||
end
|
||||
|
||||
function InputEvent:ignore(event, timeout)
|
||||
timeout = timeout or 0
|
||||
|
||||
self.ignored[event] = now() + timeout
|
||||
end
|
||||
|
||||
function InputEvent:bind()
|
||||
self.exec_debounced = debounce(function() self:exec() end, self.duration)
|
||||
mp.add_forced_key_binding(self.key, self.key, function(e)
|
||||
local event = e.canceled and "cancel" or e.event
|
||||
self:handler(event)
|
||||
end, { complex = true })
|
||||
end
|
||||
|
||||
function InputEvent:unbind()
|
||||
mp.remove_key_binding(self.key)
|
||||
end
|
||||
|
||||
function InputEvent:rebind(diff)
|
||||
if type(diff) == "table" then
|
||||
self = table.assign(self, diff)
|
||||
end
|
||||
|
||||
self:unbind()
|
||||
self:bind()
|
||||
end
|
||||
|
||||
local function bind(key, on)
|
||||
key = #key == 1 and key or key:upper()
|
||||
|
||||
if type(on) == "string" then
|
||||
on = utils.parse_json(on)
|
||||
end
|
||||
|
||||
if bind_map[key] then
|
||||
on = table.assign(bind_map[key].on, on)
|
||||
bind_map[key]:unbind()
|
||||
end
|
||||
|
||||
bind_map[key] = InputEvent:new(key, on)
|
||||
bind_map[key]:bind()
|
||||
end
|
||||
|
||||
local function unbind(key)
|
||||
bind_map[key]:unbind()
|
||||
end
|
||||
|
||||
local function bind_from_conf(conf)
|
||||
local parsed = {}
|
||||
for _, line in pairs(conf:split("\n")) do
|
||||
line = line:trim()
|
||||
if line ~= "" and line:sub(1, 1) ~= "#" then
|
||||
local key, cmd, comment = line:trim():match("^([%S]+)%s+(.-)%s+#%s*(.-)$")
|
||||
if comment then
|
||||
local comments = {}
|
||||
for _, item in ipairs(comment:split("#")) do
|
||||
item = item:trim()
|
||||
local prefix, value = item:match("^(.-)%s*:%s*(.-)$")
|
||||
if not prefix then
|
||||
prefix, value = item:match("^(%p)%s*(.-)$")
|
||||
end
|
||||
if prefix then
|
||||
comments[prefix] = value
|
||||
end
|
||||
end
|
||||
|
||||
local event, cond = comments[o.prefix], nil
|
||||
local parts = event and event:split("|")
|
||||
if parts and #parts > 1 then
|
||||
event, cond = event:match("(.-)%s*|%s*(.-)$")
|
||||
end
|
||||
|
||||
if event and event ~= "" then
|
||||
if not supported_events[event] then
|
||||
event = "click"
|
||||
end
|
||||
if parsed[key] == nil then
|
||||
parsed[key] = {}
|
||||
end
|
||||
if parsed[key][event] == nil then
|
||||
parsed[key][event] = {}
|
||||
end
|
||||
|
||||
local index = table.isEmpty(parsed[key][event]) and 1 or #parsed[key][event]+1
|
||||
local cond_name = string.format("%s-%s-%d", key, event, index)
|
||||
table.insert(parsed[key][event], 1,{
|
||||
cmd = cmd,
|
||||
cond = cond ~= nil and compile_cond(cond_name, cond) or nil
|
||||
})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
return parsed
|
||||
end
|
||||
|
||||
local function bind_content(content)
|
||||
local parsed = bind_from_conf(content)
|
||||
if parsed and not table.isEmpty(parsed) then
|
||||
for key, on in pairs(parsed) do
|
||||
bind(key, on)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function read_conf(path)
|
||||
local content = ""
|
||||
local meta, meta_error = utils.file_info(path)
|
||||
if meta and meta.is_file then
|
||||
local file = io.open(path, "r")
|
||||
if file then
|
||||
content = file:read("*all")
|
||||
file:close()
|
||||
end
|
||||
end
|
||||
return content
|
||||
end
|
||||
|
||||
local function on_input_doubleclick_time_update(_, duration)
|
||||
for _, binding in pairs(bind_map) do
|
||||
binding:rebind({ duration = duration })
|
||||
end
|
||||
end
|
||||
|
||||
local function on_focused_update(_, focused)
|
||||
if not focused then
|
||||
return
|
||||
end
|
||||
|
||||
local binding = bind_map["MBTN_LEFT"]
|
||||
if not binding then
|
||||
return
|
||||
end
|
||||
|
||||
binding:ignore("click", binding.duration)
|
||||
end
|
||||
|
||||
|
||||
mp.register_script_message("bind", bind)
|
||||
mp.register_script_message("unbind", unbind)
|
||||
mp.observe_property("input-doubleclick-time", "native", on_input_doubleclick_time_update)
|
||||
mp.observe_property("focused", "native", on_focused_update)
|
||||
|
||||
local content = ""
|
||||
local input_conf = mp.get_property_native("input-conf")
|
||||
local input_conf_path = mp.command_native({ "expand-path", input_conf == "" and "~~/input.conf" or input_conf })
|
||||
if o.enable_external_config then
|
||||
local external_config_path = mp.command_native({ "expand-path", o.external_config })
|
||||
content = read_conf(external_config_path)
|
||||
elseif input_conf:match("^memory://") then
|
||||
content = input_conf:replace("^memory://", "")
|
||||
else
|
||||
content = read_conf(input_conf_path)
|
||||
end
|
||||
if content ~= "" then bind_content(content) end
|
||||
@@ -1,159 +0,0 @@
|
||||
local msg = require "mp.msg"
|
||||
local utils = require "mp.utils"
|
||||
local legacy = mp.command_native_async == nil
|
||||
local config = {}
|
||||
local dir_cache = {}
|
||||
|
||||
function run(args)
|
||||
if legacy then
|
||||
return utils.subprocess({args = args})
|
||||
end
|
||||
return mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = args})
|
||||
end
|
||||
|
||||
function parent(path)
|
||||
return string.match(path, "(.*)[/\\]")
|
||||
end
|
||||
|
||||
function cache(path)
|
||||
local p_path = parent(path)
|
||||
if p_path == nil or p_path == "" or dir_cache[p_path] then return end
|
||||
cache(p_path)
|
||||
dir_cache[path] = 1
|
||||
end
|
||||
|
||||
function mkdir(path)
|
||||
if dir_cache[path] then return end
|
||||
cache(path)
|
||||
run({"git", "init", path})
|
||||
end
|
||||
|
||||
function match(str, patterns)
|
||||
for pattern in string.gmatch(patterns, "[^|]+") do
|
||||
if string.match(str, pattern) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function apply_defaults(info)
|
||||
if info.git == nil then return false end
|
||||
if info.whitelist == nil then info.whitelist = "" end
|
||||
if info.blacklist == nil then info.blacklist = "" end
|
||||
if info.dest == nil then info.dest = "~~/scripts" end
|
||||
if info.branch == nil then info.branch = "master" end
|
||||
return info
|
||||
end
|
||||
|
||||
local function build_directory_string(dir, repo)
|
||||
local str = ""
|
||||
local contents = utils.readdir(dir)
|
||||
if not contents then return msg.error("could not access local repo:", repo) end
|
||||
for _, item in ipairs(contents) do
|
||||
local path = dir..'/'..item
|
||||
if utils.file_info(path).is_dir then
|
||||
if item ~= ".git" then str = str..'/'..build_directory_string(path, repo)..'\n' end
|
||||
else
|
||||
str = str..(path:sub(repo:len()+2))..'\n'
|
||||
end
|
||||
end
|
||||
return str
|
||||
end
|
||||
|
||||
local function get_file_list(info)
|
||||
if not info.local_repo then
|
||||
return run({"git", "-C", info.edist, "ls-tree", "-r", "--name-only", "remotes/manager/"..info.branch}).stdout
|
||||
else
|
||||
return build_directory_string(info.local_repo, info.local_repo)
|
||||
end
|
||||
end
|
||||
|
||||
function update(info)
|
||||
info = apply_defaults(info)
|
||||
if not info then return false end
|
||||
|
||||
local base = nil
|
||||
|
||||
info.edist = string.match(mp.command_native({"expand-path", info.dest}), "(.-)[/\\]?$")
|
||||
mkdir(info.edist)
|
||||
|
||||
local files = {}
|
||||
|
||||
if info.local_repo then
|
||||
info.local_repo = mp.command_native({"expand-path", info.local_repo})
|
||||
if not utils.file_info(info.local_repo) then
|
||||
info.local_repo = false
|
||||
msg.warn("local repo not found - falling back to git")
|
||||
end
|
||||
end
|
||||
|
||||
if not info.local_repo then
|
||||
run({"git", "-C", info.edist, "remote", "add", "manager", info.git})
|
||||
run({"git", "-C", info.edist, "remote", "set-url", "manager", info.git})
|
||||
run({"git", "-C", info.edist, "fetch", "manager", info.branch})
|
||||
end
|
||||
|
||||
for file in string.gmatch(get_file_list(info), "[^\r\n]+") do
|
||||
local l_file = string.lower(file)
|
||||
if info.whitelist == "" or match(l_file, info.whitelist) then
|
||||
if info.blacklist == "" or not match(l_file, info.blacklist) then
|
||||
table.insert(files, file)
|
||||
if base == nil then base = parent(l_file) or "" end
|
||||
while string.match(base, l_file) == nil do
|
||||
if l_file == "" then break end
|
||||
l_file = parent(l_file) or ""
|
||||
end
|
||||
base = l_file
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if base == nil then return false end
|
||||
|
||||
if base ~= "" then base = base.."/" end
|
||||
|
||||
if next(files) == nil then
|
||||
print("no files matching patterns")
|
||||
else
|
||||
for _, file in ipairs(files) do
|
||||
local based = string.sub(file, string.len(base)+1)
|
||||
local p_based = parent(based)
|
||||
if p_based and not info.flatten_folders then mkdir(info.edist.."/"..p_based) end
|
||||
|
||||
local c = ""
|
||||
if info.local_repo then
|
||||
local source = io.open(info.local_repo..'/'..file)
|
||||
c = source:read("*a")
|
||||
source:close()
|
||||
else
|
||||
c = string.match(run({"git", "-C", info.edist, "--no-pager", "show", "remotes/manager/"..info.branch..":"..file}).stdout, "(.-)[\r\n]?$")
|
||||
end
|
||||
|
||||
local f = io.open(info.edist.."/"..(info.flatten_folders and file:match("[^/]+$") or based), "w")
|
||||
f:write(c)
|
||||
f:close()
|
||||
end
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
function update_all()
|
||||
local f = io.open(mp.command_native({"expand-path", "~~/manager.json"}), "r")
|
||||
if f then
|
||||
local json = f:read("*all")
|
||||
f:close()
|
||||
|
||||
local props = utils.parse_json(json or "")
|
||||
if props then
|
||||
config = props
|
||||
end
|
||||
end
|
||||
|
||||
for i, info in ipairs(config) do
|
||||
print("updating", (info.git:match("([^/]+)%.git$") or info.git).."...")
|
||||
if not update(info) then msg.error("FAILED") end
|
||||
end
|
||||
print("all files updated")
|
||||
end
|
||||
|
||||
mp.add_key_binding(nil, "manager-update-all", update_all)
|
||||
@@ -1,249 +0,0 @@
|
||||
-- Original by Scheliux, Dragoner7 which was ported from Ruin0x11
|
||||
-- Adapted to webp by DonCanjas
|
||||
-- Modify_: https://github.com/dyphire/mpv-scripts
|
||||
|
||||
-- Create animated webps or gifs with mpv
|
||||
-- Requires ffmpeg.
|
||||
-- Adapted from https://github.com/Scheliux/mpv-gif-generator
|
||||
-- Usage: "w" to set start frame, "W" to set end frame, "Ctrl+w" to create.
|
||||
|
||||
-- Note:
|
||||
-- Requires FFmpeg in PATH environment variable or edit ffmpeg_path in the script options,
|
||||
-- Note:
|
||||
-- A small circle at the top-right corner is a sign that creat is happenning now.
|
||||
|
||||
require 'mp.options'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require "mp.utils"
|
||||
|
||||
local options = {
|
||||
type = "gif", -- gif or webp
|
||||
ffmpeg_path = "ffmpeg",
|
||||
dir = "~~desktop/",
|
||||
rez = 600,
|
||||
fps = 15,
|
||||
lossless = 0,
|
||||
quality = 90,
|
||||
compression_level = 6,
|
||||
loop = 0,
|
||||
}
|
||||
|
||||
read_options(options)
|
||||
|
||||
|
||||
local fps
|
||||
local ext
|
||||
local text
|
||||
|
||||
if options.type == "webp" then
|
||||
ext = "webp"
|
||||
text = "webP"
|
||||
else
|
||||
ext = "gif"
|
||||
text = "GIF"
|
||||
end
|
||||
|
||||
-- Check for invalid fps values
|
||||
-- Can you believe Lua doesn't have a proper ternary operator in the year of our lord 2020?
|
||||
if options.fps ~= nil and options.fps >= 1 and options.fps < 30 then
|
||||
fps = options.fps
|
||||
else
|
||||
fps = 15
|
||||
end
|
||||
|
||||
-- Set this to the filters to pass into ffmpeg's -vf option.
|
||||
-- filters="fps=24,scale=320:-1:flags=spline"
|
||||
filters=string.format("fps=%s,scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1,scale=%s:-1:flags=lanczos", fps, options.rez)
|
||||
|
||||
local is_windows = package.config:sub(1, 1) == "\\" -- detect path separator, windows uses backslashes
|
||||
-- Setup output directory
|
||||
local output_directory = mp.command_native({ "expand-path", options.dir })
|
||||
--create output_directory if it doesn't exist
|
||||
if output_directory ~= '' then
|
||||
local meta, meta_error = utils.file_info(output_directory)
|
||||
if not meta or not meta.is_dir then
|
||||
local windows_args = { 'powershell', '-NoProfile', '-Command', 'mkdir', string.format("\"%s\"", output_directory) }
|
||||
local unix_args = { 'mkdir', '-p', output_directory }
|
||||
local args = is_windows and windows_args or unix_args
|
||||
local res = mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = args})
|
||||
if res.status ~= 0 then
|
||||
msg.error("Failed to create animated_dir save directory "..output_directory..". Error: "..(res.error or "unknown"))
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
start_time = -1
|
||||
end_time = -1
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
|
||||
function make_animated_with_subtitles()
|
||||
make_animated_internal(true)
|
||||
end
|
||||
|
||||
function make_animated()
|
||||
make_animated_internal(false)
|
||||
end
|
||||
|
||||
function table_length(t)
|
||||
local count = 0
|
||||
for _ in pairs(t) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
|
||||
function make_animated_internal(burn_subtitles)
|
||||
local start_time_l = start_time
|
||||
local end_time_l = end_time
|
||||
if start_time_l == -1 or end_time_l == -1 or start_time_l >= end_time_l then
|
||||
mp.osd_message("Invalid start/end time.")
|
||||
return
|
||||
end
|
||||
|
||||
local trim_filters = filters
|
||||
local position = start_time_l
|
||||
local duration = end_time_l - start_time_l
|
||||
local filename = mp.get_property("filename/no-ext")
|
||||
|
||||
msg.info("Creating " .. text)
|
||||
mp.osd_message("Creating " .. text)
|
||||
|
||||
-- shell escape
|
||||
function esc_for_sub(s)
|
||||
s = string.gsub(s, "\\", "/")
|
||||
s = string.gsub(s, '"', '\\"')
|
||||
s = string.gsub(s, ":", "\\:")
|
||||
s = string.gsub(s, "'", "\\'")
|
||||
s = string.gsub(s, "%[", "\\%[")
|
||||
s = string.gsub(s, "%]", "\\%]")
|
||||
return s
|
||||
end
|
||||
|
||||
local pathname = mp.get_property("path", "")
|
||||
local path = mp.get_property_native("path")
|
||||
local cache = mp.get_property_native("cache")
|
||||
local cache_state = mp.get_property_native("demuxer-cache-state")
|
||||
local cache_ranges = cache_state and cache_state["seekable-ranges"] or {}
|
||||
if path and is_protocol(path) or cache == "auto" and #cache_ranges > 0 then
|
||||
local pid = mp.get_property_native('pid')
|
||||
local temp_path = os.getenv("TEMP") or "/tmp/"
|
||||
local temp_video_file = utils.join_path(temp_path, "mpv_dump_" .. pid .. ".mkv")
|
||||
mp.commandv("dump-cache", start_time_l, end_time_l, temp_video_file)
|
||||
position = 0
|
||||
filename = mp.get_property("media-title")
|
||||
pathname = temp_video_file
|
||||
end
|
||||
|
||||
if burn_subtitles then
|
||||
-- Determine currently active sub track
|
||||
|
||||
local i = 0
|
||||
local tracks_count = mp.get_property_number("track-list/count")
|
||||
local subs_array = {}
|
||||
|
||||
-- check for subtitle tracks
|
||||
|
||||
while i < tracks_count do
|
||||
local type = mp.get_property(string.format("track-list/%d/type", i))
|
||||
local selected = mp.get_property(string.format("track-list/%d/selected", i))
|
||||
local external = mp.get_property(string.format("track-list/%d/external", i))
|
||||
|
||||
-- if it's a sub track, save it
|
||||
|
||||
if type == "sub" then
|
||||
local length = table_length(subs_array)
|
||||
if selected == "yes" and external == "yes" then
|
||||
msg.info("Error: external subtitles have been selected")
|
||||
mp.osd_message("Error: external subtitles have been selected", 2)
|
||||
return
|
||||
else
|
||||
subs_array[length] = selected == "yes"
|
||||
end
|
||||
end
|
||||
i = i + 1
|
||||
end
|
||||
|
||||
if table_length(subs_array) > 0 then
|
||||
|
||||
local correct_track = 0
|
||||
|
||||
-- iterate through saved subtitle tracks until the correct one is found
|
||||
|
||||
for index, is_selected in pairs(subs_array) do
|
||||
if (is_selected) then
|
||||
correct_track = index
|
||||
end
|
||||
end
|
||||
|
||||
trim_filters = trim_filters .. string.format(",subtitles='%s':si=%s", esc_for_sub(pathname), correct_track)
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
-- make the animated
|
||||
local file_path = utils.join_path(output_directory, filename)
|
||||
|
||||
-- increment filename
|
||||
for i = 0, 999 do
|
||||
local fn = string.format('%s_%03d.%s', file_path, i, ext)
|
||||
if not file_exists(fn) then
|
||||
animated_name = fn
|
||||
break
|
||||
end
|
||||
end
|
||||
if not animated_name then
|
||||
mp.osd_message('No available filenames!')
|
||||
return
|
||||
end
|
||||
|
||||
local copyts = ""
|
||||
|
||||
if burn_subtitles then
|
||||
copyts = "-copyts"
|
||||
end
|
||||
|
||||
if options.type == "webp" then
|
||||
arg = string.format("%s -y -hide_banner -loglevel error -ss %s %s -t %s -i '%s' -lavfi %s -lossless %s -q:v %s -compression_level %s -loop %s '%s'", options.ffmpeg_path, position, copyts, duration, pathname, trim_filters, options.lossless, options.quality, options.compression_level, options.loop, animated_name)
|
||||
else
|
||||
arg = string.format("%s -y -hide_banner -loglevel error -ss %s %s -t %s -i '%s' -lavfi %s,'split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse' -loop %s '%s'", options.ffmpeg_path, position, copyts, duration, pathname, trim_filters, options.loop, animated_name)
|
||||
end
|
||||
local windows_args = { 'powershell', '-NoProfile', '-Command', arg }
|
||||
local unix_args = { '/bin/bash', '-c', arg }
|
||||
local args = is_windows and windows_args or unix_args
|
||||
local screenx, screeny, aspect = mp.get_osd_size()
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
local res = mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = args})
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
if res.status ~= 0 then
|
||||
msg.info("Failed to creat " .. animated_name)
|
||||
mp.osd_message("Error creating " .. text .. ", check console for more info.")
|
||||
return
|
||||
end
|
||||
msg.info(animated_name .. " created.")
|
||||
mp.osd_message(text .. " created.")
|
||||
end
|
||||
|
||||
function set_animated_start()
|
||||
start_time = mp.get_property_number("time-pos", -1)
|
||||
mp.osd_message(text .. " Start: " .. start_time)
|
||||
end
|
||||
|
||||
function set_animated_end()
|
||||
end_time = mp.get_property_number("time-pos", -1)
|
||||
mp.osd_message(text .. " End: " .. end_time)
|
||||
end
|
||||
|
||||
function file_exists(name)
|
||||
local f = io.open(name, "r")
|
||||
if f ~= nil then io.close(f) return true else return false end
|
||||
end
|
||||
|
||||
mp.add_key_binding("w", "set_animated_start", set_animated_start)
|
||||
mp.add_key_binding("W", "set_animated_end", set_animated_end)
|
||||
mp.add_key_binding("Ctrl+w", "make_animated", make_animated)
|
||||
mp.add_key_binding("Ctrl+W", "make_animated_with_subtitles", make_animated_with_subtitles) --only works with srt for now
|
||||
@@ -1,341 +0,0 @@
|
||||
-- Copyright (c) 2022-2024 dyphire <qimoge@gmail.com>
|
||||
-- License: MIT
|
||||
-- link: https://github.com/dyphire/mpv-scripts
|
||||
|
||||
--[[
|
||||
The script calls up a window in mpv to quickly load the folder/files/iso/clipboard (support url)/other subtitles/other audio tracks/other video tracks.
|
||||
Usage, add bindings to input.conf:
|
||||
key script-message-to open_dialog import_folder
|
||||
key script-message-to open_dialog import_files
|
||||
key script-message-to open_dialog import_files <type> # vid, aid, sid (video/audio/subtitle track)
|
||||
key script-message-to open_dialog import_clipboard
|
||||
key script-message-to open_dialog import_clipboard <type> # vid, aid, sid (video/audio/subtitle track)
|
||||
key script-message-to open_dialog set_clipboard <text> # text can be mpv properties as ${path}
|
||||
|
||||
Also supports open dialog to select folder/files for other scripts.
|
||||
Scripting Example:
|
||||
-- open a folder select dialog
|
||||
mp.commandv('script-message-to', 'open_dialog', 'select_folder', mp.get_script_name())
|
||||
-- receive the selected folder reply
|
||||
mp.register_script_message('select_folder_reply', function(folder_path)
|
||||
if folder_path and folder_path ~= '' then
|
||||
-- do something with folder_path
|
||||
end
|
||||
end)
|
||||
-- open a xml file select dialog
|
||||
mp.commandv('script-message-to', 'open_dialog', 'select_files', mp.get_script_name(), 'XML File|*.xml')
|
||||
-- receive the selected files reply
|
||||
mp.register_script_message('select_files_reply', function(file_paths)
|
||||
for i, file_path in ipairs(utils.parse_json(file_paths)) do
|
||||
-- do something with file_path
|
||||
end
|
||||
end)
|
||||
|
||||
]]--
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local options = require 'mp.options'
|
||||
|
||||
o = {
|
||||
video_types = '3g2,3gp,asf,avi,f4v,flv,h264,h265,m2ts,m4v,mkv,mov,mp4,mp4v,mpeg,mpg,ogm,ogv,rm,rmvb,ts,vob,webm,wmv,y4m',
|
||||
audio_types = 'aac,ac3,aiff,ape,au,cue,dsf,dts,flac,m4a,mid,midi,mka,mp3,mp4a,oga,ogg,opus,spx,tak,tta,wav,weba,wma,wv',
|
||||
image_types = 'apng,avif,bmp,gif,j2k,jp2,jfif,jpeg,jpg,jxl,mj2,png,svg,tga,tif,tiff,webp',
|
||||
subtitle_types = 'aqt,ass,gsub,idx,jss,lrc,mks,pgs,pjs,psb,rt,sbv,slt,smi,sub,sup,srt,ssa,ssf,ttxt,txt,usf,vt,vtt',
|
||||
playlist_types = 'm3u,m3u8,pls,cue',
|
||||
iso_types = 'iso',
|
||||
}
|
||||
options.read_options(o)
|
||||
|
||||
local function split(input)
|
||||
local ret = {}
|
||||
for str in string.gmatch(input, "([^,]+)") do
|
||||
ret[#ret + 1] = string.format("*.%s", str)
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
-- pre-defined file types
|
||||
local file_types = {
|
||||
video = table.concat(split(o.video_types), ';'),
|
||||
audio = table.concat(split(o.audio_types), ';'),
|
||||
image = table.concat(split(o.image_types), ';'),
|
||||
iso = table.concat(split(o.iso_types), ';'),
|
||||
subtitle = table.concat(split(o.subtitle_types), ';'),
|
||||
playlist = table.concat(split(o.playlist_types), ';'),
|
||||
}
|
||||
|
||||
local powershell = nil
|
||||
|
||||
local function pwsh_check()
|
||||
local arg = {"cmd", "/c", "pwsh", "--version"}
|
||||
local res = mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = arg})
|
||||
if res.status ~= 0 or res.stdout:match("^PowerShell") == nil then
|
||||
powershell = "powershell"
|
||||
else
|
||||
powershell = "pwsh"
|
||||
end
|
||||
end
|
||||
|
||||
-- escapes a string so that it can be inserted into powershell as a string literal
|
||||
local function escape_powershell(str)
|
||||
if not str then return '""' end
|
||||
str = str:gsub('[$"`]', '`%1'):gsub('“', '`%1'):gsub('”', '`%1')
|
||||
return '"'..str..'"'
|
||||
end
|
||||
|
||||
local function end_file(event)
|
||||
mp.unregister_event(end_file)
|
||||
if event["reason"] == "eof" or event["reason"] == "stop" or event["reason"] == "error" then
|
||||
local bd_device = mp.get_property_native("bluray-device")
|
||||
local dvd_device = mp.get_property_native("dvd-device")
|
||||
if event["reason"] == "error" and bd_device and bd_device ~= "" then
|
||||
loaded_fail = true
|
||||
else
|
||||
loaded_fail = false
|
||||
end
|
||||
if bd_device then mp.set_property("bluray-device", "") end
|
||||
if dvd_device then mp.set_property("dvd-device", "") end
|
||||
end
|
||||
end
|
||||
|
||||
-- open bluray iso or dir
|
||||
local function open_bluray(path)
|
||||
mp.set_property('bluray-device', path)
|
||||
mp.commandv('loadfile', 'bd://')
|
||||
end
|
||||
|
||||
-- open dvd iso or dir
|
||||
local function open_dvd(path)
|
||||
mp.set_property('dvd-device', path)
|
||||
mp.commandv('loadfile', 'dvd://')
|
||||
end
|
||||
|
||||
-- open folder
|
||||
local function open_folder(path, i)
|
||||
local fpath, dir = utils.split_path(path)
|
||||
if utils.file_info(utils.join_path(path, "BDMV")) then
|
||||
open_bluray(path)
|
||||
elseif utils.file_info(utils.join_path(path, "VIDEO_TS")) then
|
||||
open_dvd(path)
|
||||
elseif dir:upper() == "BDMV" then
|
||||
open_bluray(fpath)
|
||||
elseif dir:upper() == "VIDEO_TS" then
|
||||
open_dvd(fpath)
|
||||
else
|
||||
mp.commandv('loadfile', path, i == 1 and 'replace' or 'append')
|
||||
end
|
||||
end
|
||||
|
||||
-- open files
|
||||
local function open_files(path, type, i, is_clip)
|
||||
local ext = string.match(path, "%.([^%.]+)$"):lower()
|
||||
if file_types['subtitle']:match(ext) then
|
||||
mp.commandv('sub-add', path, 'cached')
|
||||
elseif type == 'vid' and (not is_clip or (file_types['video']:match(ext) or file_types['image']:match(ext))) then
|
||||
mp.commandv('video-add', path, 'cached')
|
||||
elseif type == 'aid' and (not is_clip or file_types['audio']:match(ext)) then
|
||||
mp.commandv('audio-add', path, 'cached')
|
||||
elseif file_types['iso']:match(ext) then
|
||||
local idle = mp.get_property('idle')
|
||||
if idle ~= 'yes' then mp.set_property('idle', 'yes') end
|
||||
mp.register_event("end-file", end_file)
|
||||
open_bluray(path)
|
||||
mp.add_timeout(1.0, function()
|
||||
if idle ~= 'yes' then mp.set_property('idle', idle) end
|
||||
if loaded_fail then
|
||||
loaded_fail = false
|
||||
open_dvd(path)
|
||||
end
|
||||
end)
|
||||
else
|
||||
mp.commandv('loadfile', path, i == 1 and 'replace' or 'append')
|
||||
end
|
||||
end
|
||||
|
||||
local function select_folder()
|
||||
if not powershell then pwsh_check() end
|
||||
local powershell_script = string.format([[&{
|
||||
Add-Type -AssemblyName System.Windows.Forms
|
||||
$fbd = New-Object System.Windows.Forms.FolderBrowserDialog
|
||||
$fbd.RootFolder = "Desktop"
|
||||
$fbd.ShowNewFolderButton = $true
|
||||
$owner = New-Object System.Windows.Forms.NativeWindow
|
||||
$owner.AssignHandle((Get-Process -Id %d).MainWindowHandle)
|
||||
try {
|
||||
if ($fbd.ShowDialog($owner) -eq [System.Windows.Forms.DialogResult]::OK) {
|
||||
$u8 = [System.Text.Encoding]::UTF8
|
||||
$out = [Console]::OpenStandardOutput()
|
||||
$selectedFolder = $fbd.SelectedPath
|
||||
$u8selectedFolder = $u8.GetBytes("$selectedFolder`n")
|
||||
$out.Write($u8selectedFolder, 0, $u8selectedFolder.Length)
|
||||
}
|
||||
} finally {
|
||||
$owner.ReleaseHandle()
|
||||
$fbd.Dispose()
|
||||
}
|
||||
}]], mp.get_property_number('pid'))
|
||||
local res = mp.command_native({
|
||||
name = 'subprocess',
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = { powershell, '-NoProfile', '-Command', powershell_script },
|
||||
})
|
||||
if res.status ~= 0 then
|
||||
mp.osd_message("Failed to open folder dialog.")
|
||||
return nil
|
||||
end
|
||||
local folder_path = res.stdout:match("(.-)[\r\n]?$") -- Trim any trailing newline
|
||||
return folder_path
|
||||
end
|
||||
|
||||
local function select_files(filter)
|
||||
if not powershell then pwsh_check() end
|
||||
local powershell_script = string.format([[&{
|
||||
Add-Type -AssemblyName System.Windows.Forms
|
||||
$ofd = New-Object System.Windows.Forms.OpenFileDialog
|
||||
$ofd.Multiselect = $true
|
||||
$ofd.Filter = %s
|
||||
$owner = New-Object System.Windows.Forms.NativeWindow
|
||||
$owner.AssignHandle((Get-Process -Id %d).MainWindowHandle)
|
||||
try {
|
||||
if ($ofd.ShowDialog($owner) -eq [System.Windows.Forms.DialogResult]::OK) {
|
||||
$u8 = [System.Text.Encoding]::UTF8
|
||||
$out = [Console]::OpenStandardOutput()
|
||||
ForEach ($filename in $ofd.FileNames) {
|
||||
$u8filename = $u8.GetBytes("$filename`n")
|
||||
$out.Write($u8filename, 0, $u8filename.Length)
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
$owner.ReleaseHandle()
|
||||
$ofd.Dispose()
|
||||
}
|
||||
}]], escape_powershell(filter), mp.get_property_number('pid'))
|
||||
local res = mp.command_native({
|
||||
name = 'subprocess',
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = { powershell, '-NoProfile', '-Command', powershell_script },
|
||||
})
|
||||
local file_paths = {}
|
||||
if res.status ~= 0 then
|
||||
mp.osd_message("Failed to open files dialog.")
|
||||
return file_paths
|
||||
end
|
||||
for file_path in string.gmatch(res.stdout, '[^\r\n]+') do
|
||||
table.insert(file_paths, file_path)
|
||||
end
|
||||
return file_paths
|
||||
end
|
||||
|
||||
-- import folder
|
||||
local function import_folder()
|
||||
local folder_path = select_folder()
|
||||
if folder_path and folder_path ~= '' then open_folder(folder_path, 1) end
|
||||
end
|
||||
|
||||
-- import files
|
||||
local function import_files(type)
|
||||
local filter = ''
|
||||
if type == 'vid' then
|
||||
filter = string.format("Video Files|%s|Image Files|%s", file_types['video'], file_types['image'])
|
||||
elseif type == 'aid' then
|
||||
filter = string.format("Audio Files|%s", file_types['audio'])
|
||||
elseif type == 'sid' then
|
||||
filter = string.format("Subtitle Files|%s", file_types['subtitle'])
|
||||
else
|
||||
filter = string.format("All Files (*.*)|*.*|Video Files|%s|Audio Files|%s|Image Files|%s|ISO Files|%s|Subtitle Files|%s|Playlist Files|%s",
|
||||
file_types['video'], file_types['audio'], file_types['image'], file_types['iso'], file_types['subtitle'], file_types['playlist'])
|
||||
end
|
||||
for i, file_path in ipairs(select_files(filter)) do
|
||||
open_files(file_path, type, i, false)
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns a string of UTF-8 text from the clipboard
|
||||
local function get_clipboard()
|
||||
if mp.get_property('clipboard-backends') ~= nil or mp.get_property_bool('clipboard-enable') then
|
||||
return mp.get_property('clipboard/text', '')
|
||||
end
|
||||
local res = mp.command_native({
|
||||
name = 'subprocess',
|
||||
playback_only = false,
|
||||
capture_stdout = true,
|
||||
args = { 'powershell', '-NoProfile', '-Command', [[& {
|
||||
Trap {
|
||||
Write-Error -ErrorRecord $_
|
||||
Exit 1
|
||||
}
|
||||
$clip = Get-Clipboard -Raw -Format Text -TextFormatType UnicodeText
|
||||
if (-not $clip) {
|
||||
$clip = Get-Clipboard -Raw -Format FileDropList
|
||||
}
|
||||
$u8clip = [System.Text.Encoding]::UTF8.GetBytes($clip)
|
||||
[Console]::OpenStandardOutput().Write($u8clip, 0, $u8clip.Length)
|
||||
}]] }
|
||||
})
|
||||
if not res.error then
|
||||
return res.stdout
|
||||
end
|
||||
return ''
|
||||
end
|
||||
|
||||
-- open files from clipboard
|
||||
local function open_clipboard(path, type, i)
|
||||
local path = path:gsub("^[\'\"]", ""):gsub("[\'\"]$", ""):gsub('^%s+', ''):gsub('%s+$', '')
|
||||
if path:find('^%a[%w.+-]-://') then
|
||||
mp.commandv('loadfile', path, i == 1 and 'replace' or 'append')
|
||||
else
|
||||
local meta = utils.file_info(path)
|
||||
if not meta then
|
||||
mp.osd_message('Clipboard path is invalid')
|
||||
msg.warn('Clipboard path is invalid')
|
||||
elseif meta.is_dir then
|
||||
open_folder(path, i)
|
||||
elseif meta.is_file then
|
||||
open_files(path, type, i, true)
|
||||
else
|
||||
mp.osd_message('Clipboard path is invalid')
|
||||
msg.warn('Clipboard path is invalid')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- import clipboard
|
||||
local function import_clipboard(type)
|
||||
local clip = get_clipboard()
|
||||
if clip ~= '' then
|
||||
local i = 0
|
||||
for path in string.gmatch(clip, '[^\r\n]+') do
|
||||
i = i + 1
|
||||
open_clipboard(path, type, i)
|
||||
end
|
||||
else
|
||||
mp.osd_message('Clipboard is empty')
|
||||
msg.warn('Clipboard is empty')
|
||||
end
|
||||
end
|
||||
|
||||
-- sets the contents of the clipboard to the given string
|
||||
local function set_clipboard(text)
|
||||
msg.verbose('setting clipboard text:', text)
|
||||
if mp.get_property('clipboard-backends') ~= nil or mp.get_property_bool('clipboard-enable') then
|
||||
mp.commandv('set', 'clipboard/text', text)
|
||||
else
|
||||
mp.commandv('run', 'powershell', '-NoProfile', '-command', 'set-clipboard', escape_powershell(text))
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_script_message('import_folder', import_folder)
|
||||
mp.register_script_message('import_files', import_files)
|
||||
mp.register_script_message('import_clipboard', import_clipboard)
|
||||
mp.register_script_message('set_clipboard', set_clipboard)
|
||||
mp.register_script_message('select_folder', function(script_name)
|
||||
local folder_path = select_folder()
|
||||
mp.commandv('script-message-to', script_name, 'select_folder_reply', folder_path)
|
||||
end)
|
||||
mp.register_script_message('select_files', function(script_name, filter)
|
||||
local file_paths = select_files(filter)
|
||||
mp.commandv('script-message-to', script_name, 'select_files_reply', utils.format_json(file_paths))
|
||||
end)
|
||||
@@ -1,115 +0,0 @@
|
||||
-- Script home: https://github.com/d87/mpv-persist-properties
|
||||
local utils = require "mp.utils"
|
||||
local msg = require "mp.msg"
|
||||
|
||||
local opts = {
|
||||
properties = "volume,sub-scale",
|
||||
properties_path = 'persistent_config.json'
|
||||
}
|
||||
(require 'mp.options').read_options(opts, "persist_properties")
|
||||
|
||||
local CONFIG_ROOT = mp.find_config_file(".")
|
||||
if not utils.file_info(CONFIG_ROOT) then
|
||||
-- On Windows if using portable_config dir, APPDATA mpv folder isn't auto-created
|
||||
-- In more recent mpv versions there's a mp.get_script_directory function, but i'm not using it for compatiblity
|
||||
local mpv_conf_path = mp.find_config_file("scripts") -- finds where the scripts folder is located
|
||||
local mpv_conf_dir = utils.split_path(mpv_conf_path)
|
||||
CONFIG_ROOT = mpv_conf_dir
|
||||
end
|
||||
local PCONFIG = utils.join_path(CONFIG_ROOT, opts.properties_path);
|
||||
|
||||
local function split(input)
|
||||
local ret = {}
|
||||
for str in string.gmatch(input, "([^,]+)") do
|
||||
table.insert(ret, str)
|
||||
end
|
||||
return ret
|
||||
end
|
||||
local persisted_properties = split(opts.properties)
|
||||
|
||||
local print = function(...)
|
||||
-- return msg.log("info", ...)
|
||||
end
|
||||
|
||||
-- print("Config Root is "..CONFIG_ROOT)
|
||||
|
||||
local isInitialized = false
|
||||
|
||||
local properties
|
||||
|
||||
local function load_config(file)
|
||||
local f = io.open(file, "r")
|
||||
if f then
|
||||
local jsonString = f:read()
|
||||
f:close()
|
||||
|
||||
if jsonString == nil then
|
||||
return {}
|
||||
end
|
||||
|
||||
local props = utils.parse_json(jsonString)
|
||||
if props then
|
||||
return props
|
||||
end
|
||||
end
|
||||
return {}
|
||||
end
|
||||
|
||||
local function save_config(file, properties)
|
||||
local serialized_props = utils.format_json(properties)
|
||||
|
||||
local f = io.open(file, 'w+')
|
||||
if f then
|
||||
f:write(serialized_props)
|
||||
f:close()
|
||||
else
|
||||
msg.log("error", string.format("Couldn't open file: %s", file))
|
||||
end
|
||||
end
|
||||
|
||||
local save_timer = nil
|
||||
local got_unsaved_changed = false
|
||||
|
||||
local function onInitialLoad()
|
||||
properties = load_config(PCONFIG)
|
||||
|
||||
for i, property in ipairs(persisted_properties) do
|
||||
local name = property
|
||||
local value = properties[name]
|
||||
if value ~= nil then
|
||||
mp.set_property_native(name, value)
|
||||
end
|
||||
end
|
||||
|
||||
for i, property in ipairs(persisted_properties) do
|
||||
local property_type = nil
|
||||
mp.observe_property(property, property_type, function(name)
|
||||
if isInitialized then
|
||||
local value = mp.get_property_native(name)
|
||||
-- print(string.format("%s changed to %s at %s", name, value, os.time()))
|
||||
|
||||
properties[name] = value
|
||||
|
||||
if save_timer then
|
||||
save_timer:kill()
|
||||
save_timer:resume()
|
||||
got_unsaved_changed = true
|
||||
else
|
||||
save_timer = mp.add_timeout(5, function()
|
||||
save_config(PCONFIG, properties)
|
||||
got_unsaved_changed = false
|
||||
end)
|
||||
end
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
isInitialized = true
|
||||
end
|
||||
|
||||
onInitialLoad()
|
||||
mp.register_event("shutdown", function()
|
||||
if got_unsaved_changed then
|
||||
save_config(PCONFIG, properties)
|
||||
end
|
||||
end)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,227 +0,0 @@
|
||||
local msg = require "mp.msg"
|
||||
local utils = require "mp.utils"
|
||||
local options = require "mp.options"
|
||||
|
||||
local cut_pos = nil
|
||||
local copy_audio = true
|
||||
local ext_map = {
|
||||
["mpegts"] = "ts",
|
||||
}
|
||||
local o = {
|
||||
ffmpeg_path = "ffmpeg",
|
||||
target_dir = "~~/cutfragments",
|
||||
overwrite = false, -- whether to overwrite exist files
|
||||
vcodec = "copy",
|
||||
acodec = "copy",
|
||||
debug = false,
|
||||
}
|
||||
|
||||
options.read_options(o)
|
||||
|
||||
Command = {}
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
function Command:new(name)
|
||||
local o = {}
|
||||
setmetatable(o, self)
|
||||
self.__index = self
|
||||
o.name = ""
|
||||
o.args = { "" }
|
||||
if name then
|
||||
o.name = name
|
||||
o.args[1] = name
|
||||
end
|
||||
return o
|
||||
end
|
||||
function Command:arg(...)
|
||||
for _, v in ipairs({...}) do
|
||||
self.args[#self.args + 1] = v
|
||||
end
|
||||
return self
|
||||
end
|
||||
function Command:as_str()
|
||||
return table.concat(self.args, " ")
|
||||
end
|
||||
function Command:run()
|
||||
local res, err = mp.command_native({
|
||||
name = "subprocess",
|
||||
args = self.args,
|
||||
capture_stdout = true,
|
||||
capture_stderr = true,
|
||||
})
|
||||
return res, err
|
||||
end
|
||||
|
||||
local function file_format()
|
||||
local fmt = mp.get_property("file-format")
|
||||
if not fmt:find(',') then
|
||||
return fmt
|
||||
end
|
||||
local path = mp.get_property('path')
|
||||
if is_protocol(path) then
|
||||
return nil
|
||||
end
|
||||
local filename = mp.get_property('filename')
|
||||
return filename:match('%.([^.]+)$')
|
||||
end
|
||||
|
||||
local function get_ext()
|
||||
local fmt = file_format()
|
||||
if fmt and ext_map[fmt] ~= nil then
|
||||
return ext_map[fmt]
|
||||
else
|
||||
return fmt
|
||||
end
|
||||
end
|
||||
|
||||
local function timestamp(duration)
|
||||
local hours = math.floor(duration / 3600)
|
||||
local minutes = math.floor(duration % 3600 / 60)
|
||||
local seconds = duration % 60
|
||||
return string.format("%02d:%02d:%06.3f", hours, minutes, seconds)
|
||||
end
|
||||
|
||||
local function osd(str)
|
||||
return mp.osd_message(str, 3)
|
||||
end
|
||||
|
||||
local function info(s)
|
||||
msg.info(s)
|
||||
osd(s)
|
||||
end
|
||||
|
||||
local function get_outname(path, shift, endpos)
|
||||
local name = mp.get_property("filename/no-ext")
|
||||
if is_protocol(path) then
|
||||
name = mp.get_property("media-title")
|
||||
end
|
||||
local ext = get_ext() or "mkv"
|
||||
name = string.format("%s_%s-%s.%s", name, timestamp(shift), timestamp(endpos), ext)
|
||||
return name:gsub(":", "-")
|
||||
end
|
||||
|
||||
local function cut(shift, endpos)
|
||||
local duration = endpos - shift
|
||||
local path = mp.get_property("path")
|
||||
local inpath = mp.get_property("stream-open-filename")
|
||||
local outpath = utils.join_path(
|
||||
o.target_dir,
|
||||
get_outname(path, shift, endpos)
|
||||
)
|
||||
|
||||
local cache = mp.get_property_native("cache")
|
||||
local cache_state = mp.get_property_native("demuxer-cache-state")
|
||||
local cache_ranges = cache_state and cache_state["seekable-ranges"] or {}
|
||||
if path and is_protocol(path) or cache == "auto" and #cache_ranges > 0 then
|
||||
local pid = mp.get_property_native('pid')
|
||||
local temp_path = os.getenv("TEMP") or "/tmp/"
|
||||
local temp_video_file = utils.join_path(temp_path, "mpv_dump_" .. pid .. ".mkv")
|
||||
mp.commandv("dump-cache", shift, endpos, temp_video_file)
|
||||
shift = 0
|
||||
inpath = temp_video_file
|
||||
end
|
||||
|
||||
local cmds = Command:new(o.ffmpeg_path)
|
||||
:arg("-v", "warning")
|
||||
:arg(o.overwrite and "-y" or "-n")
|
||||
:arg("-stats")
|
||||
cmds:arg("-ss", tostring(shift))
|
||||
cmds:arg("-accurate_seek")
|
||||
cmds:arg("-i", inpath)
|
||||
cmds:arg("-t", tostring(duration))
|
||||
cmds:arg("-c:v", o.vcodec)
|
||||
cmds:arg("-c:a", o.acodec)
|
||||
cmds:arg("-c:s", "copy")
|
||||
cmds:arg("-map", string.format("v:%s?", math.max(mp.get_property_number("current-tracks/video/id", 0) - 1, 0)))
|
||||
cmds:arg("-map", string.format("a:%s?", math.max(mp.get_property_number("current-tracks/audio/id", 0) - 1, 0)))
|
||||
cmds:arg("-map", string.format("s:%s?", math.max(mp.get_property_number("current-tracks/sub/id", 0) - 1, 0)))
|
||||
cmds:arg(not copy_audio and "-an" or nil)
|
||||
cmds:arg("-avoid_negative_ts", "make_zero")
|
||||
cmds:arg("-async", "1")
|
||||
cmds:arg(outpath)
|
||||
msg.info("Run commands: " .. cmds:as_str())
|
||||
local screenx, screeny, aspect = mp.get_osd_size()
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
local res, err = cmds:run()
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
if err then
|
||||
msg.error(utils.to_string(err))
|
||||
mp.osd_message("Failed. Refer console for details.")
|
||||
elseif res.status ~= 0 then
|
||||
if res.stderr ~= "" or res.stdout ~= "" then
|
||||
msg.info("stderr: " .. (res.stderr:gsub("^%s*(.-)%s*$", "%1"))) -- trim stderr
|
||||
msg.info("stdout: " .. (res.stdout:gsub("^%s*(.-)%s*$", "%1"))) -- trim stdout
|
||||
mp.osd_message("Failed. Refer console for details.")
|
||||
end
|
||||
elseif res.status == 0 then
|
||||
if o.debug and (res.stderr ~= "" or res.stdout ~= "") then
|
||||
msg.info("stderr: " .. (res.stderr:gsub("^%s*(.-)%s*$", "%1"))) -- trim stderr
|
||||
msg.info("stdout: " .. (res.stdout:gsub("^%s*(.-)%s*$", "%1"))) -- trim stdout
|
||||
end
|
||||
msg.info("Trim file successfully created: " .. outpath)
|
||||
mp.add_timeout(1, function()
|
||||
mp.osd_message("Trim file successfully created!")
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
local function toggle_mark()
|
||||
local pos, err = mp.get_property_number("time-pos")
|
||||
if not pos then
|
||||
osd("Failed to get timestamp")
|
||||
msg.error("Failed to get timestamp: " .. err)
|
||||
return
|
||||
end
|
||||
if cut_pos then
|
||||
local shift, endpos = cut_pos, pos
|
||||
if shift > endpos then
|
||||
shift, endpos = endpos, shift
|
||||
elseif shift == endpos then
|
||||
osd("Cut fragment is empty")
|
||||
return
|
||||
end
|
||||
cut_pos = nil
|
||||
info(string.format("Cut fragment: %s-%s", timestamp(shift), timestamp(endpos)))
|
||||
cut(shift, endpos)
|
||||
else
|
||||
cut_pos = pos
|
||||
info(string.format("Marked %s as start position", timestamp(pos)))
|
||||
end
|
||||
end
|
||||
|
||||
local function toggle_audio()
|
||||
copy_audio = not copy_audio
|
||||
info("Audio capturing is " .. (copy_audio and "enabled" or "disabled"))
|
||||
end
|
||||
|
||||
local function clear_toggle_mark()
|
||||
cut_pos = nil
|
||||
info("Cleared cut fragment")
|
||||
end
|
||||
|
||||
o.target_dir = o.target_dir:gsub('"', "")
|
||||
local file, _ = utils.file_info(mp.command_native({ "expand-path", o.target_dir }))
|
||||
if not file then
|
||||
--create target_dir if it doesn't exist
|
||||
local savepath = mp.command_native({ "expand-path", o.target_dir })
|
||||
local is_windows = package.config:sub(1, 1) == "\\"
|
||||
local windows_args = { 'powershell', '-NoProfile', '-Command', 'mkdir', string.format("\"%s\"", savepath) }
|
||||
local unix_args = { 'mkdir', '-p', savepath }
|
||||
local args = is_windows and windows_args or unix_args
|
||||
local res = mp.command_native({name = "subprocess", capture_stdout = true, playback_only = false, args = args})
|
||||
if res.status ~= 0 then
|
||||
msg.error("Failed to create target_dir save directory "..savepath..". Error: "..(res.error or "unknown"))
|
||||
return
|
||||
end
|
||||
elseif not file.is_dir then
|
||||
osd("target_dir is a file")
|
||||
msg.warn(string.format("target_dir `%s` is a file", o.target_dir))
|
||||
end
|
||||
o.target_dir = mp.command_native({ "expand-path", o.target_dir })
|
||||
|
||||
mp.add_key_binding("c", "slicing_mark", toggle_mark)
|
||||
mp.add_key_binding("a", "slicing_audio", toggle_audio)
|
||||
mp.add_key_binding("C", "clear_slicing_mark", clear_toggle_mark)
|
||||
@@ -1,149 +0,0 @@
|
||||
-- sponsorblock_minimal.lua v 0.5.1
|
||||
--
|
||||
-- This script skip/mute sponsored segments of YouTube and bilibili videos
|
||||
-- using data from https://github.com/ajayyy/SponsorBlock
|
||||
-- and https://github.com/hanydd/BilibiliSponsorBlock
|
||||
|
||||
local opt = require 'mp.options'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local options = {
|
||||
youtube_sponsor_server = "https://sponsor.ajay.app/api/skipSegments",
|
||||
bilibili_sponsor_server = "https://bsbsb.top/api/skipSegments",
|
||||
-- Categories to fetch
|
||||
-- Perform skip/mute/mark chapter based on the 'actionType' returned
|
||||
categories = '"sponsor"',
|
||||
}
|
||||
|
||||
opt.read_options(options)
|
||||
|
||||
local ranges = nil
|
||||
local video_id = nil
|
||||
local sponsor_server = nil
|
||||
local cache = {}
|
||||
local mute = false
|
||||
local ON = false
|
||||
|
||||
local function getranges(url)
|
||||
local res = mp.command_native{
|
||||
name = "subprocess",
|
||||
capture_stdout = true,
|
||||
playback_only = false,
|
||||
args = {
|
||||
"curl", "-L", "-s", "-g",
|
||||
"-H", "origin: mpv-script/sponsorblock_minimal",
|
||||
"-H", "x-ext-version: 0.5.1",
|
||||
url
|
||||
}
|
||||
}
|
||||
|
||||
if res.status ~= 0 then
|
||||
return nil
|
||||
end
|
||||
|
||||
return utils.parse_json(res.stdout)
|
||||
end
|
||||
|
||||
local function make_chapter(ranges)
|
||||
local chapters_time = {}
|
||||
local chapters_title = {}
|
||||
local chapter_index = 0
|
||||
local all_chapters = mp.get_property_native("chapter-list")
|
||||
for _, v in pairs(ranges) do
|
||||
table.insert(chapters_time, v.segment[1])
|
||||
table.insert(chapters_title, v.category)
|
||||
table.insert(chapters_time, v.segment[2])
|
||||
table.insert(chapters_title, "normal")
|
||||
end
|
||||
|
||||
for i = 1, #chapters_time do
|
||||
chapter_index = chapter_index + 1
|
||||
all_chapters[chapter_index] = {
|
||||
title = chapters_title[i] or ("Chapter " .. string.format("%02.f", chapter_index)),
|
||||
time = chapters_time[i]
|
||||
}
|
||||
end
|
||||
|
||||
table.sort(all_chapters, function(a, b) return a['time'] < b['time'] end)
|
||||
mp.set_property_native("chapter-list", all_chapters)
|
||||
end
|
||||
|
||||
local function skip_ads(_, pos)
|
||||
if pos ~= nil and ranges ~= nil then
|
||||
for _, v in pairs(ranges) do
|
||||
if v.actionType == "skip" and v.segment[1] <= pos and v.segment[2] > pos then
|
||||
--this message may sometimes be wrong
|
||||
--it only seems to be a visual thing though
|
||||
local time = math.floor(v.segment[2] - pos)
|
||||
mp.osd_message(string.format("[sponsorblock] skipping forward %ds", time))
|
||||
--need to do the +0.01 otherwise mpv will start spamming skip sometimes
|
||||
mp.set_property("time-pos", v.segment[2] + 0.01)
|
||||
elseif v.actionType == "mute" then
|
||||
if v.segment[1] <= pos and v.segment[2] >= pos then
|
||||
cache[v.segment[2]] = nil
|
||||
mp.set_property_bool("mute", true)
|
||||
elseif pos > v.segment[2] and not cache[v.segment[2]] and mute ~= false then
|
||||
cache[v.segment[2]] = true
|
||||
mp.set_property_bool("mute", false)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function file_loaded()
|
||||
cache = {}
|
||||
local video_path = mp.get_property("path", "")
|
||||
local video_referer = mp.get_property("http-header-fields", ""):match("[Rr]eferer:%s*([^,\r\n]+)") or ""
|
||||
local purl = mp.get_property("metadata/by-key/PURL", "")
|
||||
local bilibili = video_path:match("bilibili.com/video") or video_referer:match("bilibili.com/video") or false
|
||||
mute = mp.get_property_bool("mute")
|
||||
|
||||
local urls = {
|
||||
"ytdl://youtu%.be/([%w-_]+).*",
|
||||
"ytdl://w?w?w?%.?youtube%.com/v/([%w-_]+).*",
|
||||
"ytdl://w?w?w?%.?bilibili%.com/video/([%w-_]+).*",
|
||||
"https?://youtu%.be/([%w-_]+).*",
|
||||
"https?://w?w?w?%.?youtube%.com/v/([%w-_]+).*",
|
||||
"https?://w?w?w?%.?bilibili%.com/video/([%w-_]+).*",
|
||||
"/watch.*[?&]v=([%w-_]+).*",
|
||||
"/embed/([%w-_]+).*",
|
||||
"^ytdl://([%w-_]+)$",
|
||||
"-([%w-_]+)%."
|
||||
}
|
||||
|
||||
for _, url in ipairs(urls) do
|
||||
video_id = video_id or video_path:match(url) or video_referer:match(url) or purl:match(url)
|
||||
end
|
||||
|
||||
if not video_id or string.len(video_id) < 11 then return end
|
||||
|
||||
if bilibili then
|
||||
sponsor_server = options.bilibili_sponsor_server
|
||||
video_id = string.sub(video_id, 1, 12)
|
||||
else
|
||||
sponsor_server = options.youtube_sponsor_server
|
||||
video_id = string.sub(video_id, 1, 11)
|
||||
end
|
||||
|
||||
local url = ("%s?videoID=%s&categories=[%s]"):format(sponsor_server, video_id, options.categories)
|
||||
|
||||
ranges = getranges(url)
|
||||
if ranges ~= nil then
|
||||
make_chapter(ranges)
|
||||
ON = true
|
||||
mp.observe_property("time-pos", "native", skip_ads)
|
||||
end
|
||||
end
|
||||
|
||||
local function end_file()
|
||||
if not ON then return end
|
||||
mp.unobserve_property(skip_ads)
|
||||
video_id = nil
|
||||
cache = nil
|
||||
ranges = nil
|
||||
ON = false
|
||||
end
|
||||
|
||||
mp.register_event("file-loaded", file_loaded)
|
||||
mp.register_event("end-file", end_file)
|
||||
@@ -1,704 +0,0 @@
|
||||
--[[
|
||||
* sub-assrt.lua
|
||||
*
|
||||
* AUTHORS: dyphire
|
||||
* License: MIT
|
||||
* link: https://github.com/dyphire/mpv-sub-assrt
|
||||
]]
|
||||
|
||||
local utils = require "mp.utils"
|
||||
local msg = require "mp.msg"
|
||||
local options = require("mp.options")
|
||||
local input_loaded, input = pcall(require, "mp.input")
|
||||
local uosc_available = false
|
||||
|
||||
local o = {
|
||||
-- API token, 可以在 https://assrt.net 上注册账号后在个人界面获取
|
||||
api_token = "tNjXZUnOJWcHznHDyalNMYqqP6IdDdpQ",
|
||||
-- 是否使用 https
|
||||
use_https = true,
|
||||
-- 代理设置
|
||||
proxy = "",
|
||||
}
|
||||
|
||||
options.read_options(o, _, function() end)
|
||||
|
||||
local ASSRT_SEARCH_API = (o.use_https and "https" or "http") .. "://api.assrt.net/v1/sub/search"
|
||||
local ASSRT_DETAIL_API = (o.use_https and "https" or "http") .. "://api.assrt.net/v1/sub/detail"
|
||||
|
||||
local TEMP_DIR = os.getenv("TEMP") or "/tmp"
|
||||
local cache = {}
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
local function hex_to_char(x)
|
||||
return string.char(tonumber(x, 16))
|
||||
end
|
||||
|
||||
local function url_encode(str)
|
||||
if str then
|
||||
str = str:gsub("([^%w%-%.%_%~])", function(c)
|
||||
return string.format("%%%02X", string.byte(c))
|
||||
end)
|
||||
end
|
||||
return str
|
||||
end
|
||||
|
||||
local function url_decode(str)
|
||||
if str ~= nil then
|
||||
str = str:gsub('^%a[%a%d-_]+://', '')
|
||||
:gsub('^%a[%a%d-_]+:\\?', '')
|
||||
:gsub('%%(%x%x)', hex_to_char)
|
||||
if str:find('://localhost:?') then
|
||||
str = str:gsub('^.*/', '')
|
||||
end
|
||||
str = str:gsub('%?.+', '')
|
||||
:gsub('%+', ' ')
|
||||
return str
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function is_compressed_file(filename)
|
||||
local ext_map = {
|
||||
zip = true,
|
||||
rar = true,
|
||||
["7z"] = true,
|
||||
gz = true,
|
||||
tar = true,
|
||||
bz2 = true,
|
||||
xz = true,
|
||||
tgz = true,
|
||||
tbz2 = true,
|
||||
}
|
||||
|
||||
local ext = filename:match("%.([%w]+)$"):lower()
|
||||
if ext then
|
||||
return ext_map[ext] or false
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function http_request(url)
|
||||
local cmd = {
|
||||
"curl",
|
||||
"-s",
|
||||
"-L",
|
||||
"--max-redirs", "5",
|
||||
"--connect-timeout", "10",
|
||||
"--max-time", "30",
|
||||
"--user-agent", "mpv",
|
||||
url
|
||||
}
|
||||
|
||||
if o.proxy ~= "" then
|
||||
table.insert(cmd, '-x')
|
||||
table.insert(cmd, o.proxy)
|
||||
end
|
||||
|
||||
local res = mp.command_native({ name = "subprocess", capture_stdout = true, capture_stderr = true, args = cmd })
|
||||
if res.status == 0 then
|
||||
return utils.parse_json(res.stdout)
|
||||
else
|
||||
msg.error("HTTP request failed: " .. res.stderr)
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
local function file_exists(path)
|
||||
if path then
|
||||
local meta = utils.file_info(path)
|
||||
return meta and meta.is_file
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function alphanumsort(a, b)
|
||||
-- alphanum sorting for humans in Lua
|
||||
-- http://notebook.kulchenko.com/algorithms/alphanumeric-natural-sorting-for-humans-in-lua
|
||||
local function padnum(d)
|
||||
local dec, n = string.match(d, "(%.?)0*(.+)")
|
||||
return #dec > 0 and ("%.12f"):format(d) or ("%s%03d%s"):format(dec, #n, n)
|
||||
end
|
||||
return tostring(a):lower():gsub("%.?%d+", padnum) .. ("%3d"):format(#b)
|
||||
< tostring(b):lower():gsub("%.?%d+", padnum) .. ("%3d"):format(#a)
|
||||
end
|
||||
|
||||
local function normalize(path)
|
||||
if normalize_path ~= nil then
|
||||
if normalize_path then
|
||||
path = mp.command_native({"normalize-path", path})
|
||||
else
|
||||
local directory = mp.get_property("working-directory", "")
|
||||
path = utils.join_path(directory, path:gsub('^%.[\\/]',''))
|
||||
if platform == "windows" then path = path:gsub("\\", "/") end
|
||||
end
|
||||
return path
|
||||
end
|
||||
|
||||
normalize_path = false
|
||||
|
||||
local commands = mp.get_property_native("command-list", {})
|
||||
for _, command in ipairs(commands) do
|
||||
if command.name == "normalize-path" then
|
||||
normalize_path = true
|
||||
break
|
||||
end
|
||||
end
|
||||
return normalize(path)
|
||||
end
|
||||
|
||||
local function check_sub(sub_file)
|
||||
local tracks = mp.get_property_native("track-list")
|
||||
local _, sub_title = utils.split_path(sub_file)
|
||||
for _, track in ipairs(tracks) do
|
||||
if track["type"] == "sub" and track["title"] == sub_title then
|
||||
return true, track["id"]
|
||||
end
|
||||
end
|
||||
return false, nil
|
||||
end
|
||||
|
||||
local function append_sub(sub_file)
|
||||
local sub, id = check_sub(sub_file)
|
||||
if not sub then
|
||||
mp.commandv('sub-add', sub_file)
|
||||
else
|
||||
mp.commandv('sub-reload', id)
|
||||
end
|
||||
end
|
||||
|
||||
local function clean_name(name)
|
||||
return name:gsub("^%[.-%]", " ")
|
||||
:gsub("^%(.-%)", " ")
|
||||
:gsub("[_%.%[%]]", " ")
|
||||
:gsub("^%s*(.-)%s*$", "%1")
|
||||
:gsub("[!@#%.%?%+%-%%&*_=,/~`]+$", "")
|
||||
end
|
||||
|
||||
-- Formatters for media titles
|
||||
local formatters = {
|
||||
{
|
||||
regex = "^(.-)%s*[_%.%s]%s*(%d%d%d%d)[_%.%s]%d%d[_%.%s]%d%d%s*[_%.%s]?(.-)%s*[_%.%s]%d+[pPkKxXbBfF]",
|
||||
format = function(name, year, subtitle)
|
||||
local title = clean_name(name)
|
||||
if subtitle then
|
||||
title = title .. ": " .. subtitle:gsub("%.", " "):gsub("^%s*(.-)%s*$", "%1")
|
||||
end
|
||||
return title .. " (" .. year .. ")"
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%.%s]%s*(%d%d%d%d)%s*[_%.%s]%s*[sS](%d+)[%.%-%s:]?[eE](%d+%.?%d*)",
|
||||
format = function(name, year, season, episode)
|
||||
return clean_name(name) .. " (" .. year .. ") S" .. season .. "E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%.%s]%s*(%d%d%d%d)%s*[_%.%s]%s*[eEpP]+(%d+%.?%d*)",
|
||||
format = function(name, year, episode)
|
||||
return clean_name(name) .. " (" .. year .. ") E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%-%.%s]%s*[sS](%d+)[%.%-%s:]?[eE](%d+[%.v]?%d*)%s*[_%.%s]%s*(%d%d%d%d)[^%dhHxXvVpPkKxXbBfF]",
|
||||
format = function(name, season, episode, year)
|
||||
return clean_name(name) .. " (" .. year .. ") S" .. season .. "E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%-%.%s]%s*[sS](%d+)[%.%-%s:]?[eE](%d+%.?%d*)",
|
||||
format = function(name, season, episode)
|
||||
return clean_name(name) .. " S" .. season .. "E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%.%s]%s*(%d+)[nrdsth]+[_%.%s]%s*[sS]eason[_%.%s]%s*%[(%d+[%.v]?%d*)%]",
|
||||
format = function(name, season, episode)
|
||||
return clean_name(name) .. " S" .. season .. "E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[^dD][eEpP]+(%d+[%.v]?%d*)[_%.%s]%s*(%d%d%d%d)[^%dhHxXvVpPkKxXbBfF]",
|
||||
format = function(name, episode, year)
|
||||
return clean_name(name) .. " (" .. year .. ") E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[^dD][eEpP]+(%d+%.?%d*)",
|
||||
format = function(name, episode)
|
||||
return clean_name(name) .. " E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*第%s*(%d+[%.v]?%d*)%s*[话回集]",
|
||||
format = function(name, episode)
|
||||
return clean_name(name) .. " E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*%[(%d+[%.v]?%d*)%]",
|
||||
format = function(name, episode)
|
||||
return clean_name(name) .. " E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*%[(%d+[%.v]?%d*)%(%a+%)%]",
|
||||
format = function(name, episode)
|
||||
return clean_name(name) .. " E" .. episode:gsub("v%d+$","")
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[%-#]%s*(%d+%.?%d*)%s*",
|
||||
format = function(name, episode)
|
||||
return clean_name(name) .. " E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[%[%(]([OVADSPs]+)[%]%)]",
|
||||
format = function(name, sp)
|
||||
return clean_name(name) .. " [" .. sp .. "]"
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%-%.%s]%s*(%d?%d)x(%d%d?%d?%d?)[^%dhHxXvVpPkKxXbBfF]",
|
||||
format = function(name, season, episode)
|
||||
return clean_name(name) .. " S" .. season .. "E" .. episode
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^%((%d%d%d%d)%.?%d?%d?%.?%d?%d?%)%s*(.-)%s*[%(%[]",
|
||||
format = function(year, name)
|
||||
return clean_name(name) .. " (" .. year .. ")"
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^(.-)%s*[_%.%s]%s*(%d%d%d%d)[^%dhHxXvVpPkKxXbBfF]",
|
||||
format = function(name, year)
|
||||
return clean_name(name) .. " (" .. year .. ")"
|
||||
end
|
||||
},
|
||||
{
|
||||
regex = "^%[.-%]%s*%[?(.-)%]?%s*[%(%[]",
|
||||
format = function(name)
|
||||
return clean_name(name)
|
||||
end
|
||||
},
|
||||
}
|
||||
|
||||
local function format_filename(title)
|
||||
for _, formatter in ipairs(formatters) do
|
||||
local matches = {title:match(formatter.regex)}
|
||||
if #matches > 0 then
|
||||
title = formatter.format(unpack(matches))
|
||||
return title
|
||||
end
|
||||
end
|
||||
title = title:gsub("^%[.-%]", " ")
|
||||
:gsub("^%(.-%)", " ")
|
||||
:gsub("[_%.]", " ")
|
||||
:gsub("^%s*(.-)%s*$", "%1")
|
||||
:gsub("[!@#%.%?%+%-%%&*_=,/~`]+$", "")
|
||||
return title
|
||||
end
|
||||
|
||||
local function is_writable(path)
|
||||
local file = io.open(path, "w")
|
||||
if file then
|
||||
file:close()
|
||||
os.remove(path)
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function download_file(url, fname)
|
||||
local path = mp.get_property("path")
|
||||
local filename = mp.get_property("filename/no-ext")
|
||||
local ext = fname:match('%.([^%.]+)$'):lower()
|
||||
|
||||
if is_protocol(path) then
|
||||
sub_path = utils.join_path(TEMP_DIR, fname)
|
||||
else
|
||||
local dir = utils.split_path(normalize(path))
|
||||
sub_path = utils.join_path(dir, filename .. ".assrt." .. ext)
|
||||
if not is_writable(sub_path) then
|
||||
sub_path = utils.join_path(TEMP_DIR, fname)
|
||||
end
|
||||
end
|
||||
|
||||
local message = "正在下载字幕..."
|
||||
local type = "download_subtitle"
|
||||
local title = "字幕下载菜单"
|
||||
local footnote = "使用 / 打开筛选"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote)
|
||||
else
|
||||
mp.osd_message(message)
|
||||
end
|
||||
|
||||
local cmd = {"curl", "-s", "--user-agent", "mpv", "-o", sub_path, url}
|
||||
if o.proxy ~= "" then
|
||||
table.insert(cmd, '-x')
|
||||
table.insert(cmd, o.proxy)
|
||||
end
|
||||
local res = mp.command_native({ name = "subprocess", capture_stdout = true, capture_stderr = true, args = cmd })
|
||||
if res.status == 0 then
|
||||
if file_exists(sub_path) then
|
||||
append_sub(sub_path)
|
||||
local message = "字幕下载完成, 已载入"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote)
|
||||
-- 下载完字幕1.5秒后关闭面板
|
||||
mp.add_timeout(1.5, function()
|
||||
mp.commandv("script-message-to", "uosc", "close-menu", "download_subtitle")
|
||||
end)
|
||||
else
|
||||
mp.osd_message(message, 3)
|
||||
end
|
||||
msg.info("Subtitle downloaded: " .. sub_path)
|
||||
end
|
||||
else
|
||||
local message = "字幕下载失败,查看控制台获取更多信息"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote)
|
||||
else
|
||||
mp.osd_message(message, 3)
|
||||
end
|
||||
msg.error("Failed to download file: " .. res.stderr)
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
local function fetch_subtitle_details(sub_id)
|
||||
local message = "正在加载字幕详细信息..."
|
||||
local type = "subtitle_details"
|
||||
local title = "字幕下载菜单"
|
||||
local footnote = "使用 / 打开筛选"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote)
|
||||
else
|
||||
mp.osd_message(message)
|
||||
end
|
||||
|
||||
local url = ASSRT_DETAIL_API .."?token=" .. o.api_token .. "&id=" .. (sub_id or 0)
|
||||
local res = http_request(url)
|
||||
if not res or res.status ~= 0 then
|
||||
local message = "获取字幕详细信息失败,查看控制台获取更多信息"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote)
|
||||
else
|
||||
mp.osd_message(message, 3)
|
||||
end
|
||||
msg.error("Failed to fetch subtitle details: " .. (res and res.errmsg or "Unknown error"))
|
||||
return nil
|
||||
end
|
||||
|
||||
local items = {}
|
||||
items[#items + 1] = {
|
||||
title = "..",
|
||||
hint = "返回搜索结果",
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"search-subtitles-event",
|
||||
"has_details", nil,
|
||||
},
|
||||
}
|
||||
local subs = res.sub.subs[1]
|
||||
for _, sub in ipairs(subs.filelist) do
|
||||
table.insert(items, {
|
||||
title = sub.f,
|
||||
hint = sub.s,
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"download-file-event",
|
||||
sub.url, sub.f,
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
if #items > 2 then
|
||||
table.sort(items, function(a, b)
|
||||
return alphanumsort(a.title, b.title)
|
||||
end)
|
||||
end
|
||||
|
||||
if #items == 0 and subs.url and not is_compressed_file(subs.filename) then
|
||||
local size= subs.size / 1024
|
||||
local sub_size = size > 1024 and string.format("%.2fMB", size / 1024) or string.format("%.2fKB", size)
|
||||
table.insert(items, {
|
||||
title = subs.filename,
|
||||
hint = sub_size,
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"download-file-event",
|
||||
subs.url, subs.filename,
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, items, footnote)
|
||||
elseif input_loaded then
|
||||
mp.osd_message("")
|
||||
mp.add_timeout(0.1, function()
|
||||
open_menu_select(items)
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
local function search_subtitles(pos, query)
|
||||
local items = {}
|
||||
local type = "menu_subtitle"
|
||||
local title = "输入搜索内容"
|
||||
local footnote = "使用enter或ctrl+enter进行搜索"
|
||||
if pos ~= "has_details" and (query ~= cache.query or tonumber(pos) > 0) then
|
||||
local pos = tonumber(pos)
|
||||
local message = "正在搜索字幕..."
|
||||
local cmd = { "script-message-to", mp.get_script_name(), "search-subtitles-event", tostring(pos) }
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote, cmd, query)
|
||||
else
|
||||
mp.osd_message(message)
|
||||
end
|
||||
|
||||
local url = ASSRT_SEARCH_API .. "?token=" .. o.api_token .. "&q=" .. url_encode(query) .. "&no_muxer=1&pos=" .. pos
|
||||
local res = http_request(url)
|
||||
if not res or res.status ~= 0 then
|
||||
local message = "搜索字幕失败,查看控制台获取更多信息"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote, cmd, query)
|
||||
else
|
||||
mp.osd_message(message, 3)
|
||||
end
|
||||
msg.error("Failed to search subtitles: " .. (res and res.errmsg or "Unknown error"))
|
||||
return nil
|
||||
end
|
||||
|
||||
local sub = res.sub
|
||||
local subs = {}
|
||||
if sub then subs = res.sub.subs end
|
||||
if #subs == 0 then
|
||||
local message = "未找到字幕,建议更改关键字尝试重新搜索"
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, message, footnote, cmd, query)
|
||||
else
|
||||
mp.osd_message(message, 3)
|
||||
end
|
||||
msg.info("No subtitles found.")
|
||||
return nil
|
||||
end
|
||||
|
||||
table.insert(items, {
|
||||
title = "..",
|
||||
hint = "返回搜索菜单",
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"open-search-menu",
|
||||
0, query,
|
||||
},
|
||||
})
|
||||
|
||||
for _, sub in ipairs(subs) do
|
||||
table.insert(items, {
|
||||
title = sub.video_chinese_name and sub.video_chinese_name ~= '' and sub.video_chinese_name
|
||||
or sub.native_name and sub.native_name ~= '' and sub.native_name or sub.videoname,
|
||||
hint = sub.lang and sub.lang.desc ~= '' and sub.lang.desc
|
||||
or sub.m_lang and sub.m_lang ~= '' and sub.m_lang:gsub(" ", " "),
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"fetch-details-event",
|
||||
sub.id or sub.fileid,
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
if #items == 16 then
|
||||
pos = pos + 15
|
||||
table.insert(items, {
|
||||
title = "加载下一页",
|
||||
value = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"search-subtitles-event",
|
||||
tostring(pos), query,
|
||||
},
|
||||
italic = true,
|
||||
bold = true,
|
||||
align = "center",
|
||||
})
|
||||
end
|
||||
cache.query = query
|
||||
cache.items = items
|
||||
else
|
||||
items = cache.items
|
||||
end
|
||||
|
||||
if uosc_available then
|
||||
update_menu_uosc(type, title, items, footnote)
|
||||
elseif input_loaded then
|
||||
mp.osd_message("")
|
||||
mp.add_timeout(0.1, function()
|
||||
open_menu_select(items)
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
function open_menu_select(menu_items)
|
||||
local item_titles, item_values = {}, {}
|
||||
for i, v in ipairs(menu_items) do
|
||||
item_titles[i] = v.hint and v.title .. " (" .. v.hint .. ")" or v.title
|
||||
item_values[i] = v.value
|
||||
end
|
||||
mp.commandv('script-message-to', 'console', 'disable')
|
||||
input.select({
|
||||
prompt = '筛选:',
|
||||
items = item_titles,
|
||||
submit = function(id)
|
||||
mp.commandv(unpack(item_values[id]))
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
function open_input_menu_get(pos, query)
|
||||
mp.commandv('script-message-to', 'console', 'disable')
|
||||
input.get({
|
||||
prompt = '搜索字幕:',
|
||||
default_text = query,
|
||||
cursor_position = query and #query + 1,
|
||||
submit = function(text)
|
||||
input.terminate()
|
||||
search_subtitles(pos, text)
|
||||
end
|
||||
})
|
||||
end
|
||||
|
||||
function open_input_menu_uosc(pos, query)
|
||||
local menu_props = {
|
||||
type = "menu_subtitle",
|
||||
title = "输入搜索内容",
|
||||
search_style = "palette",
|
||||
search_debounce = "submit",
|
||||
search_suggestion = query,
|
||||
on_search = {
|
||||
"script-message-to",
|
||||
mp.get_script_name(),
|
||||
"search-subtitles-event",
|
||||
tostring(pos),
|
||||
},
|
||||
footnote = "使用enter或ctrl+enter进行搜索",
|
||||
items = {},
|
||||
}
|
||||
local json_props = utils.format_json(menu_props)
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", json_props)
|
||||
end
|
||||
|
||||
function update_menu_uosc(menu_type, menu_title, menu_item, menu_footnote, menu_cmd, query)
|
||||
local items = {}
|
||||
if type(menu_item) == "string" then
|
||||
table.insert(items, {
|
||||
title = menu_item,
|
||||
value = "",
|
||||
italic = true,
|
||||
keep_open = true,
|
||||
selectable = false,
|
||||
align = "center",
|
||||
})
|
||||
else
|
||||
items = menu_item
|
||||
end
|
||||
|
||||
local menu_props = {
|
||||
type = menu_type,
|
||||
title = menu_title,
|
||||
search_style = menu_cmd and "palette" or "on_demand",
|
||||
search_debounce = menu_cmd and "submit" or 0,
|
||||
on_search = menu_cmd,
|
||||
footnote = menu_footnote,
|
||||
search_suggestion = query,
|
||||
items = items,
|
||||
}
|
||||
local json_props = utils.format_json(menu_props)
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", json_props)
|
||||
end
|
||||
|
||||
local function sub_assrt()
|
||||
local path = mp.get_property("path")
|
||||
local filename = mp.get_property("filename/no-ext")
|
||||
local title = mp.get_property("media-title")
|
||||
local thin_space = string.char(0xE2, 0x80, 0x89)
|
||||
if not path then
|
||||
msg.error("No file loaded.")
|
||||
return
|
||||
end
|
||||
|
||||
if is_protocol(path) then
|
||||
title = url_decode(title:gsub('%.[^%.]+$', ''))
|
||||
elseif #title < #filename then
|
||||
title = filename
|
||||
end
|
||||
|
||||
local pos = 0
|
||||
local title = title:gsub(thin_space, " ")
|
||||
local query = format_filename(title):gsub("%s*E%d+$", "")
|
||||
|
||||
if cache.title and cache.title == query
|
||||
and cache.items and #cache.items > 0 then
|
||||
search_subtitles("has_details")
|
||||
return
|
||||
end
|
||||
|
||||
cache.title = query
|
||||
|
||||
if uosc_available then
|
||||
open_input_menu_uosc(pos, query)
|
||||
elseif input_loaded then
|
||||
open_input_menu_get(pos, query)
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_script_message('uosc-version', function()
|
||||
uosc_available = true
|
||||
mp.commandv('script-message-to', 'uosc', 'overwrite-binding', 'download-subtitles',
|
||||
'script-message-to sub_assrt sub-assrt')
|
||||
end)
|
||||
|
||||
mp.register_script_message("open-search-menu", function(pos, query)
|
||||
if uosc_available then
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", "menu_subtitle")
|
||||
end
|
||||
if uosc_available then
|
||||
open_input_menu_uosc(pos, query)
|
||||
elseif input_loaded then
|
||||
open_input_menu_get(pos, query)
|
||||
end
|
||||
end)
|
||||
|
||||
mp.register_script_message("search-subtitles-event", function(pos, query)
|
||||
if uosc_available then
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", "menu_subtitle")
|
||||
end
|
||||
search_subtitles(pos, query)
|
||||
end)
|
||||
mp.register_script_message("fetch-details-event", function(query)
|
||||
if uosc_available then
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", "subtitle_details")
|
||||
end
|
||||
fetch_subtitle_details(query)
|
||||
end)
|
||||
mp.register_script_message("download-file-event", function(url, filename)
|
||||
if uosc_available then
|
||||
mp.commandv("script-message-to", "uosc", "open-menu", "download_subtitle")
|
||||
end
|
||||
download_file(url, filename)
|
||||
end)
|
||||
|
||||
mp.register_script_message("sub-assrt", sub_assrt)
|
||||
@@ -1,122 +0,0 @@
|
||||
--[[
|
||||
|
||||
Automatically look for a fonts directory to use with `sub-fonts-dir`.
|
||||
|
||||
This mpv Lua script will automatically use the `sub-fonts-dir` option (to
|
||||
override the default `~~/fonts` location) if it find a `Fonts` directory
|
||||
alongside the currently playing file. (The name of the directory is
|
||||
matched case-insensitively.)
|
||||
|
||||
|
||||
USAGE:
|
||||
|
||||
Simply drop this script in your scripts configuration directory (usually
|
||||
`~/.config/mpv/scripts/`).
|
||||
|
||||
|
||||
REQUIREMENTS:
|
||||
|
||||
This script requires a version of mpv that includes the `sub-fonts-dir`
|
||||
option.
|
||||
|
||||
|
||||
NOTES:
|
||||
|
||||
- Any `--sub-fonts-dir` option passed on the command-line will override
|
||||
this script.
|
||||
|
||||
- When going through a playlist, `sub-fonts-dir` will be dynamically
|
||||
updated for each individual file.
|
||||
|
||||
- This script will output some additional information on higher verbosity
|
||||
levels (`-v`). To increase the verbosity for this script only, use
|
||||
`--msg-level=sub_fonts_dir_auto=v` (or `=debug` for more output).
|
||||
|
||||
|
||||
AUTHOR:
|
||||
|
||||
Frédéric Brière (fbriere@fbriere.net)
|
||||
|
||||
Licensed under the GNU General Public License, version 2 or later.
|
||||
|
||||
--]]
|
||||
|
||||
|
||||
local utils = require 'mp.utils'
|
||||
local msg = require 'mp.msg'
|
||||
-- msg.trace() was added in 0.28.0 -- define it ourselves if it's missing
|
||||
if msg.trace == nil then
|
||||
msg.trace = function(...) return mp.log("trace", ...) end
|
||||
end
|
||||
|
||||
|
||||
-- Directory name we are looking for (case-insensitive)
|
||||
local FONTS_DIR_NAME = "Fonts"
|
||||
-- Option name that we want to set
|
||||
local OPTION_NAME = "sub-fonts-dir"
|
||||
-- Make sure this option is available in this version of mpv
|
||||
do
|
||||
local _, err = mp.get_property(OPTION_NAME)
|
||||
if err then
|
||||
msg.error(string.format("This version of mpv does not support the %s option", OPTION_NAME))
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
-- Whether a path is a directory
|
||||
local function isdir(path)
|
||||
local meta, meta_error = utils.file_info(path)
|
||||
if meta and meta.is_dir then
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
-- Set an option's value for this file, without overriding the command-line
|
||||
local function set_option(name, value)
|
||||
if not mp.get_property_bool(string.format("option-info/%s/set-from-commandline", name)) then
|
||||
msg.verbose(string.format("Setting %s to %q", name, value))
|
||||
mp.set_property(string.format("file-local-options/%s", name), value)
|
||||
else
|
||||
msg.debug(string.format("Option %s was set on command-line -- leaving it as-is", name))
|
||||
end
|
||||
end
|
||||
|
||||
-- Find a "Fonts" directory under a single path
|
||||
local function find_fonts_dir(path)
|
||||
local fonts_path = utils.join_path(path, FONTS_DIR_NAME)
|
||||
local meta, meta_error = utils.file_info(fonts_path)
|
||||
if meta and meta.is_dir then
|
||||
msg.trace("Match found")
|
||||
return fonts_path
|
||||
else
|
||||
fonts_path = utils.join_path(path, FONTS_DIR_NAME:lower())
|
||||
local fmeta, fmeta_error = utils.file_info(fonts_path)
|
||||
if fmeta and fmeta.is_dir then
|
||||
msg.trace("Match found")
|
||||
return fonts_path
|
||||
end
|
||||
end
|
||||
msg.trace("No match found")
|
||||
end
|
||||
|
||||
-- "on_load" hook callback for when a file is about to be loaded.
|
||||
local function on_load()
|
||||
local path = mp.get_property("path")
|
||||
if isdir(path) then
|
||||
msg.debug("Playing 'file' is actually a directory -- skipping")
|
||||
return
|
||||
end
|
||||
|
||||
local path_dir = utils.split_path(path)
|
||||
-- Cosmetic nitpicking: That trailing "/" just looks annoying to me
|
||||
path_dir = path_dir:gsub("(.)/+$", "%1")
|
||||
|
||||
msg.debug(string.format("Searching %q for fonts directory", path_dir))
|
||||
local fonts_dir = find_fonts_dir(path_dir)
|
||||
if fonts_dir then
|
||||
msg.debug("Found fonts directory:", fonts_dir)
|
||||
set_option(OPTION_NAME, fonts_dir)
|
||||
end
|
||||
end
|
||||
mp.add_hook("on_load", 50, on_load)
|
||||
@@ -1,429 +0,0 @@
|
||||
--[[
|
||||
mpv-sub-select
|
||||
|
||||
This script allows you to configure advanced subtitle track selection based on
|
||||
the current audio track and the names and language of the subtitle tracks.
|
||||
|
||||
https://github.com/CogentRedTester/mpv-sub-select
|
||||
]]--
|
||||
|
||||
local mp = require 'mp'
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local opt = require 'mp.options'
|
||||
|
||||
local o = {
|
||||
--forcibly enable the script regardless of the sid option
|
||||
force_enable = false,
|
||||
|
||||
--experimental audio track selection based on the preferences.
|
||||
select_audio = false,
|
||||
|
||||
--observe audio switches and reselect the subtitles when alang changes
|
||||
observe_audio_switches = false,
|
||||
|
||||
--only select forced subtitles if they are explicitly included in slang
|
||||
explicit_forced_subs = false,
|
||||
|
||||
--the folder that contains the 'sub-select.json' file
|
||||
config = "~~/script-opts"
|
||||
}
|
||||
|
||||
opt.read_options(o, "sub_select")
|
||||
|
||||
local prefs
|
||||
|
||||
local ENABLED = o.force_enable or true
|
||||
local latest_audio = {}
|
||||
local audio_tracks = {}
|
||||
local sub_tracks = {}
|
||||
|
||||
-- represents when there is no audio or subtitle track selected
|
||||
local NO_TRACK = {
|
||||
id = 0
|
||||
}
|
||||
|
||||
--returns a table that stores the given table t as the __index in its metatable
|
||||
--creates a prototypally inherited table
|
||||
local function redirect_table(t, new)
|
||||
return setmetatable(new or {}, { __index = t })
|
||||
end
|
||||
|
||||
local function type_check(val, t, required)
|
||||
if val == nil then return not required end
|
||||
if not t:find(type(val)) then return false end
|
||||
return true
|
||||
end
|
||||
|
||||
local function setup_prefs()
|
||||
local file = assert(io.open(mp.command_native({"expand-path", o.config .. "/sub-select.json"})))
|
||||
local json = file:read("*all")
|
||||
file:close()
|
||||
prefs = utils.parse_json(json)
|
||||
|
||||
assert(prefs, "Invalid JSON format in sub-select.json.")
|
||||
local reservedIDs = { ['^'] = true }
|
||||
local IDs = {}
|
||||
|
||||
-- storing the ID in the first pass
|
||||
for _, pref in ipairs(prefs) do
|
||||
if pref.id then
|
||||
assert(not reservedIDs[pref.id], 'using reserved ID '..pref.id)
|
||||
assert(not IDs[pref.id], 'duplicate ID '..pref.id)
|
||||
IDs[pref.id] = pref
|
||||
end
|
||||
end
|
||||
|
||||
-- doing a second pass to inherit prefs and type check
|
||||
for i, pref in ipairs(prefs) do
|
||||
local pref_str = 'pref_'..i..' '..utils.to_string(pref)
|
||||
assert(type_check(pref.inherit, 'string'), '`inherit` must be a string: '..pref_str)
|
||||
|
||||
if pref.inherit then
|
||||
local parent = pref.inherit == '^' and prefs[i-1] or IDs[pref.inherit]
|
||||
assert(parent, 'failed to find matching id: '..pref_str)
|
||||
pref = redirect_table(parent, pref)
|
||||
end
|
||||
|
||||
-- type checking the options
|
||||
assert(type_check(pref.alang, 'string table', true), '`alang` must be a string or a table of strings: '..pref_str)
|
||||
assert(type_check(pref.slang, 'string table', true), '`slang` must be a string or a table of strings: '..pref_str)
|
||||
assert(type_check(pref.blacklist, 'table'), '`blacklist` must be a table: '..pref_str)
|
||||
assert(type_check(pref.whitelist, 'table'), '`whitelist` must be a table: '..pref_str)
|
||||
assert(type_check(pref.condition, 'string'), '`condition` must be a string: '..pref_str)
|
||||
assert(type_check(pref.id, 'string'), '`id` must be a string: '..pref_str)
|
||||
end
|
||||
end
|
||||
|
||||
setup_prefs()
|
||||
|
||||
--evaluates and runs the given string in both Lua 5.1 and 5.2
|
||||
--the name argument is used for error reporting
|
||||
--provides the mpv modules and the fb module to the string
|
||||
local function evaluate_string(str, env)
|
||||
msg.trace('evaluating string '..str)
|
||||
|
||||
env = redirect_table(_G, env)
|
||||
env.mp = redirect_table(mp)
|
||||
env.msg = redirect_table(msg)
|
||||
env.utils = redirect_table(utils)
|
||||
|
||||
local chunk, err
|
||||
if setfenv then
|
||||
chunk, err = loadstring(str)
|
||||
if chunk then setfenv(chunk, env) end
|
||||
else
|
||||
chunk, err = load(str, nil, 't', env)
|
||||
end
|
||||
if not chunk then
|
||||
msg.warn('failed to load string:', str)
|
||||
msg.error(err)
|
||||
chunk = function() return nil end
|
||||
end
|
||||
|
||||
local success, boolean = pcall(chunk)
|
||||
if not success then msg.error(boolean) end
|
||||
return boolean
|
||||
end
|
||||
|
||||
--anticipates the default audio track
|
||||
--returns the node for the predicted track
|
||||
--this whole function can be skipped if the user decides to load the subtitles asynchronously instead,
|
||||
--or if `--aid` is not set to `auto`
|
||||
local function predict_audio()
|
||||
--if the option is not set to auto then it is easy
|
||||
local aid = mp.get_property("options/aid", "auto")
|
||||
if aid == "no" then return NO_TRACK
|
||||
elseif aid ~= "auto" then return audio_tracks[tonumber(aid)] end
|
||||
|
||||
local num_tracks = #audio_tracks
|
||||
if num_tracks == 1 then return audio_tracks[1]
|
||||
elseif num_tracks == 0 then return NO_TRACK end
|
||||
|
||||
local highest_priority = NO_TRACK
|
||||
local priority_str = ""
|
||||
local alangs = mp.get_property_native("alang", {})
|
||||
|
||||
--loop through the track list for any audio tracks
|
||||
for _,track in ipairs(audio_tracks) do
|
||||
|
||||
--loop through the alang list to check if it has a preference
|
||||
local pref = 0
|
||||
for j,alang in ipairs(alangs) do
|
||||
if track.lang == alang then
|
||||
|
||||
--a lower number j has higher priority, so flip the numbers around so the lowest j has highest preference
|
||||
pref = 1000 - j
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
--format the important preferences so that we can easily use a lexicographical comparison to find the default
|
||||
local formatted_str = string.format("%d-%03d-%d-%02d",
|
||||
track.forced and 1 or 0,
|
||||
pref,
|
||||
track.default and 1 or 0,
|
||||
num_tracks - track.id
|
||||
)
|
||||
msg.trace("formatted track info: " .. formatted_str)
|
||||
|
||||
if formatted_str > priority_str then
|
||||
priority_str = formatted_str
|
||||
highest_priority = track
|
||||
end
|
||||
end
|
||||
|
||||
msg.verbose("predicted audio track is "..tostring(highest_priority.id))
|
||||
return highest_priority
|
||||
end
|
||||
|
||||
--sets the subtitle track to the given sid
|
||||
--this is a function to prepare for some upcoming functionality, but I've forgotten what that is
|
||||
local function set_track(type, id)
|
||||
msg.verbose("setting", type, "to", id)
|
||||
if mp.get_property_number(type) == id then return end
|
||||
mp.set_property('file-local-options/'..type, id)
|
||||
end
|
||||
|
||||
--checks if the given audio matches the given track preference
|
||||
local function is_valid_audio(audio, pref)
|
||||
local alangs = type(pref.alang) == "string" and {pref.alang} or pref.alang
|
||||
|
||||
for _,lang in ipairs(alangs) do
|
||||
msg.trace("Checking for valid audio:", lang)
|
||||
|
||||
if audio == NO_TRACK then
|
||||
if lang == "no" then return true end
|
||||
else
|
||||
if lang == '*' then
|
||||
return true
|
||||
elseif lang == "forced" then
|
||||
if audio.forced then return true end
|
||||
elseif lang == "default" then
|
||||
if audio.default then return true end
|
||||
else
|
||||
if audio.lang and audio.lang:lower():find(lang) then return true end
|
||||
end
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
--checks if the given sub matches the given track preference
|
||||
local function is_valid_sub(sub, slang, pref)
|
||||
msg.trace("checking sub", slang, "against track", utils.to_string(sub))
|
||||
|
||||
-- Do not try to un-nest these if statements, it will break detection of default and forced tracks.
|
||||
-- I've already had to un-nest these statements twice due to this mistake, don't let it happen again.
|
||||
if sub == NO_TRACK then
|
||||
return slang == 'no'
|
||||
else
|
||||
if slang == "default" then
|
||||
if not sub.default then return false end
|
||||
elseif slang == "forced" then
|
||||
if not sub.forced then return false end
|
||||
else
|
||||
if sub.forced and o.explicit_forced_subs then return false end
|
||||
if not sub.lang:lower():find(slang) and slang ~= "*" then return false end
|
||||
end
|
||||
end
|
||||
|
||||
local title = sub.title or ''
|
||||
|
||||
-- if the whitelist is not set then we don't need to find anything
|
||||
local passes_whitelist = not pref.whitelist
|
||||
local passes_blacklist = true
|
||||
|
||||
-- whitelist/blacklist handling
|
||||
if pref.whitelist and title then
|
||||
for _,word in ipairs(pref.whitelist) do
|
||||
if title:lower():find(word) then passes_whitelist = true end
|
||||
end
|
||||
end
|
||||
|
||||
if pref.blacklist and title then
|
||||
for _,word in ipairs(pref.blacklist) do
|
||||
if title:lower():find(word) then passes_blacklist = false end
|
||||
end
|
||||
end
|
||||
|
||||
msg.trace(string.format("%s %s whitelist: %s | %s blacklist: %s",
|
||||
title,
|
||||
passes_whitelist and "passed" or "failed", utils.to_string(pref.whitelist),
|
||||
passes_blacklist and "passed" or "failed", utils.to_string(pref.blacklist)
|
||||
))
|
||||
return passes_whitelist and passes_blacklist
|
||||
end
|
||||
|
||||
--scans the track list and selects audio and subtitle tracks which match the track preferences
|
||||
--if an audio track is provided to the function it will assume this track is the only audio
|
||||
local function find_valid_tracks(manual_audio)
|
||||
assert(manual_audio == nil or (type(manual_audio) == 'table' and manual_audio.id), 'argument must be an audio track or nil')
|
||||
|
||||
local sub_track_list = {NO_TRACK, unpack(sub_tracks)}
|
||||
local audio_track_list
|
||||
|
||||
if manual_audio == nil then
|
||||
audio_track_list = {NO_TRACK, unpack(audio_tracks)}
|
||||
else
|
||||
audio_track_list = {manual_audio}
|
||||
end
|
||||
|
||||
if manual_audio then msg.debug("select subtitle for", utils.to_string(manual_audio))
|
||||
else msg.debug('selecting audio and subtitles') end
|
||||
|
||||
--searching the selection presets for one that applies to this track
|
||||
for _,pref in ipairs(prefs) do
|
||||
msg.debug("checking pref:", utils.to_string(pref))
|
||||
|
||||
for _, audio_track in ipairs(audio_track_list) do
|
||||
if is_valid_audio(audio_track, pref) then
|
||||
local aid = audio_track and audio_track.id
|
||||
|
||||
--checks if any of the subtitle tracks match the preset for the current audio
|
||||
local slangs = type(pref.slang) == "string" and {pref.slang} or pref.slang
|
||||
msg.trace("valid audio preference found:", utils.to_string(pref.alang))
|
||||
|
||||
for _, slang in ipairs(slangs) do
|
||||
msg.trace("checking for valid sub:", slang)
|
||||
|
||||
|
||||
for _,sub_track in ipairs(sub_track_list) do
|
||||
if is_valid_sub(sub_track, slang, pref)
|
||||
and (not pref.condition or (evaluate_string('return '..pref.condition, {
|
||||
audio = aid > 0 and audio_track or nil,
|
||||
sub = sub_track.id > 0 and sub_track or nil
|
||||
}) == true))
|
||||
then
|
||||
msg.verbose("valid audio preference found:", utils.to_string(pref.alang))
|
||||
msg.verbose("valid subtitle preference found:", utils.to_string(pref.slang))
|
||||
return aid, sub_track and sub_track.id
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
--returns the audio node for the currently playing audio track
|
||||
local function find_current_audio()
|
||||
local aid = mp.get_property_number("aid", 0)
|
||||
return audio_tracks[aid] or NO_TRACK
|
||||
end
|
||||
|
||||
--extract the language code from an audio track node and pass it to select_subtitles
|
||||
local function select_tracks(audio)
|
||||
local aid, sid = find_valid_tracks(audio)
|
||||
if sid then
|
||||
set_track('sid', sid == 0 and 'no' or sid)
|
||||
end
|
||||
if aid and o.select_audio then
|
||||
set_track('aid', aid == 0 and 'no' or aid)
|
||||
end
|
||||
|
||||
latest_audio = audio or find_current_audio()
|
||||
end
|
||||
|
||||
--select subtitles asynchronously after playback start
|
||||
local function async_load()
|
||||
select_tracks(not o.select_audio and find_current_audio() or nil)
|
||||
end
|
||||
|
||||
--select subtitles synchronously during the on_preloaded hook
|
||||
local function preload()
|
||||
if o.select_audio then return select_tracks() end
|
||||
|
||||
local audio = predict_audio()
|
||||
select_tracks(audio)
|
||||
latest_audio = audio
|
||||
end
|
||||
|
||||
local track_auto_selection = true
|
||||
mp.observe_property("track-auto-selection", "bool", function(_,b) track_auto_selection = b end)
|
||||
|
||||
local function selection_enabled()
|
||||
if not ENABLED then return false end
|
||||
if not track_auto_selection then return false end
|
||||
if #sub_tracks == 0 then return false end
|
||||
return true
|
||||
end
|
||||
|
||||
local INITIAL_LOAD = true
|
||||
local ORIGINAL_SID = mp.get_property('options/sid')
|
||||
|
||||
mp.add_hook('on_load', 50, function()
|
||||
INITIAL_LOAD = true
|
||||
ORIGINAL_SID = mp.get_property('options/sid')
|
||||
end)
|
||||
|
||||
--reselect the subtitles if the audio is different from what was last used
|
||||
local function reselect_subtitles()
|
||||
local initial = INITIAL_LOAD
|
||||
INITIAL_LOAD = false
|
||||
if not selection_enabled() then return end
|
||||
local audio = find_current_audio()
|
||||
if latest_audio.id ~= audio.id and (not initial or ORIGINAL_SID == 'auto') then
|
||||
msg.info("detected audio change - reselecting subtitles")
|
||||
select_tracks(audio)
|
||||
end
|
||||
end
|
||||
|
||||
--setups the audio and subtitle track lists to use for the rest of the script
|
||||
local function read_track_list()
|
||||
local track_list = mp.get_property_native("track-list", {})
|
||||
audio_tracks = {}
|
||||
sub_tracks = {}
|
||||
for _,track in ipairs(track_list) do
|
||||
if not track.lang then track.lang = "und" end
|
||||
|
||||
if track.type == "audio" then
|
||||
table.insert(audio_tracks, track)
|
||||
elseif track.type == "sub" then
|
||||
table.insert(sub_tracks, track)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function observe_audio_switches()
|
||||
mp.observe_property("aid", "string", reselect_subtitles)
|
||||
end
|
||||
|
||||
local function unobserve_audio_switches()
|
||||
mp.unobserve_property(reselect_subtitles)
|
||||
end
|
||||
|
||||
mp.add_hook('on_preloaded', 25, read_track_list)
|
||||
mp.add_hook('on_preloaded', 26, function() latest_audio = predict_audio() end)
|
||||
|
||||
--events for file loading
|
||||
mp.add_hook('on_preloaded', 30, function()
|
||||
if not selection_enabled() then return end
|
||||
if mp.get_property('options/sid') ~= 'auto' then return end
|
||||
preload()
|
||||
end)
|
||||
|
||||
if o.observe_audio_switches then
|
||||
mp.register_event('file-loaded', observe_audio_switches)
|
||||
mp.add_hook('on_unload', 50, unobserve_audio_switches)
|
||||
else
|
||||
mp.register_event('file-loaded', reselect_subtitles)
|
||||
end
|
||||
|
||||
mp.observe_property('track-list/count', 'number', read_track_list)
|
||||
|
||||
--force subtitle selection during playback
|
||||
mp.register_script_message("select-subtitles", async_load)
|
||||
|
||||
--toggle sub-select during playback
|
||||
mp.register_script_message("sub-select", function(arg)
|
||||
if arg == "toggle" then ENABLED = not ENABLED
|
||||
elseif arg == "enable" then ENABLED = true
|
||||
elseif arg == "disable" then ENABLED = false end
|
||||
local str = "sub-select: ".. (ENABLED and "enabled" or "disabled")
|
||||
mp.osd_message(str)
|
||||
|
||||
if not selection_enabled() then return end
|
||||
async_load()
|
||||
end)
|
||||
@@ -1,148 +0,0 @@
|
||||
-- SOURCE: https://github.com/kelciour/mpv-scripts/blob/master/sub-export.lua
|
||||
-- COMMIT: 29 Aug 2018 5039d8b
|
||||
--
|
||||
-- Usage:
|
||||
-- add bindings to input.conf:
|
||||
-- key script-message-to sub_export export-selected-subtitles
|
||||
--
|
||||
-- Note:
|
||||
-- Requires FFmpeg in PATH environment variable or edit ffmpeg_path in the script options,
|
||||
-- for example, by replacing "ffmpeg" with "C:\Programs\ffmpeg\bin\ffmpeg.exe"
|
||||
-- Note:
|
||||
-- The script support subtitles in srt, ass, and sup formats.
|
||||
-- Note:
|
||||
-- A small circle at the top-right corner is a sign that export is happenning now.
|
||||
-- Note:
|
||||
-- The exported subtitles will be automatically selected with visibility set to true.
|
||||
-- Note:
|
||||
-- It could take ~1-5 minutes to export subtitles.
|
||||
|
||||
local msg = require 'mp.msg'
|
||||
local utils = require 'mp.utils'
|
||||
local options = require "mp.options"
|
||||
|
||||
---- Script Options ----
|
||||
local o = {
|
||||
ffmpeg_path = "ffmpeg",
|
||||
-- eng=English, chs=Chinese
|
||||
language = "eng",
|
||||
}
|
||||
|
||||
options.read_options(o)
|
||||
------------------------
|
||||
|
||||
local is_windows = package.config:sub(1, 1) == "\\" -- detect path separator, windows uses backslashes
|
||||
|
||||
local TEMP_DIR = os.getenv("TEMP") or "/tmp"
|
||||
local function is_writable(path)
|
||||
local file = io.open(path, "w")
|
||||
if file then
|
||||
file:close()
|
||||
os.remove(path)
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function export_selected_subtitles()
|
||||
local i = 0
|
||||
local tracks_count = mp.get_property_number("track-list/count")
|
||||
while i < tracks_count do
|
||||
local track_type = mp.get_property(string.format("track-list/%d/type", i))
|
||||
local track_index = mp.get_property_number(string.format("track-list/%d/ff-index", i))
|
||||
local track_selected = mp.get_property(string.format("track-list/%d/selected", i))
|
||||
local track_title = mp.get_property(string.format("track-list/%d/title", i))
|
||||
local track_lang = mp.get_property(string.format("track-list/%d/lang", i))
|
||||
local track_external = mp.get_property(string.format("track-list/%d/external", i))
|
||||
local track_codec = mp.get_property(string.format("track-list/%d/codec", i))
|
||||
local path = mp.get_property('path')
|
||||
local dir, filename = utils.split_path(path)
|
||||
local fname = mp.get_property("filename/no-ext")
|
||||
local index = string.format("0:%d", track_index)
|
||||
|
||||
if track_type == "sub" and track_selected == "yes" then
|
||||
if track_external == "yes" then
|
||||
if o.language == 'chs' then
|
||||
msg.info("错误:已选择外部字幕")
|
||||
mp.osd_message("错误:已选择外部字幕", 2)
|
||||
else
|
||||
msg.info("Error: external subtitles have been selected")
|
||||
mp.osd_message("Error: external subtitles have been selected", 2)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
local video_file = utils.join_path(dir, filename)
|
||||
|
||||
local subtitles_ext = ".srt"
|
||||
if string.find(track_codec, "ass") ~= nil then
|
||||
subtitles_ext = ".ass"
|
||||
elseif string.find(track_codec, "pgs") ~= nil then
|
||||
subtitles_ext = ".sup"
|
||||
end
|
||||
|
||||
if track_lang ~= nil then
|
||||
if track_title ~= nil then
|
||||
subtitles_ext = "." .. track_title .. "." .. track_lang .. subtitles_ext
|
||||
else
|
||||
subtitles_ext = "." .. track_lang .. subtitles_ext
|
||||
end
|
||||
end
|
||||
|
||||
subtitles_file = utils.join_path(dir, fname .. subtitles_ext)
|
||||
|
||||
if not is_writable(subtitles_file) then
|
||||
subtitles_file = utils.join_path(TEMP_DIR, fname .. subtitles_ext)
|
||||
end
|
||||
|
||||
if o.language == 'chs' then
|
||||
msg.info("正在导出当前字幕")
|
||||
mp.osd_message("正在导出当前字幕")
|
||||
else
|
||||
msg.info("Exporting selected subtitles")
|
||||
mp.osd_message("Exporting selected subtitles")
|
||||
end
|
||||
|
||||
cmd = string.format("%s -y -hide_banner -loglevel error -i '%s' -map '%s' -vn -an -c:s copy '%s'",
|
||||
o.ffmpeg_path, video_file, index, subtitles_file)
|
||||
windows_args = { 'powershell', '-NoProfile', '-Command', cmd }
|
||||
unix_args = { '/bin/bash', '-c', cmd }
|
||||
args = is_windows and windows_args or unix_args
|
||||
|
||||
mp.add_timeout(mp.get_property_number("osd-duration") * 0.001, process)
|
||||
|
||||
break
|
||||
end
|
||||
|
||||
i = i + 1
|
||||
end
|
||||
end
|
||||
|
||||
function process()
|
||||
local screenx, screeny, aspect = mp.get_osd_size()
|
||||
|
||||
mp.set_osd_ass(screenx, screeny, "{\\an9}● ")
|
||||
local res = mp.command_native({ name = "subprocess", capture_stdout = true, playback_only = false, args = args })
|
||||
mp.set_osd_ass(screenx, screeny, "")
|
||||
if res.status == 0 then
|
||||
if o.language == 'chs' then
|
||||
msg.info("当前字幕已导出")
|
||||
mp.osd_message("当前字幕已导出")
|
||||
else
|
||||
msg.info("Finished exporting subtitles")
|
||||
mp.osd_message("Finished exporting subtitles")
|
||||
end
|
||||
mp.commandv("sub-add", subtitles_file)
|
||||
mp.set_property("sub-visibility", "yes")
|
||||
else
|
||||
if o.language == 'chs' then
|
||||
msg.info("当前字幕导出失败")
|
||||
mp.osd_message("当前字幕导出失败, 查看控制台获取更多信息.")
|
||||
else
|
||||
msg.info("Failed to export subtitles")
|
||||
mp.osd_message("Failed to export subtitles, check console for more info.")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_script_message("export-selected-subtitles", export_selected_subtitles)
|
||||
@@ -1,947 +0,0 @@
|
||||
-- thumbfast.lua
|
||||
--
|
||||
-- High-performance on-the-fly thumbnailer
|
||||
--
|
||||
-- Built for easy integration in third-party UIs.
|
||||
|
||||
--[[
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
]]
|
||||
|
||||
local options = {
|
||||
-- Socket path (leave empty for auto)
|
||||
socket = "",
|
||||
|
||||
-- Thumbnail path (leave empty for auto)
|
||||
thumbnail = "",
|
||||
|
||||
-- Maximum thumbnail size in pixels (scaled down to fit)
|
||||
-- Values are scaled when hidpi is enabled
|
||||
max_height = 200,
|
||||
max_width = 200,
|
||||
|
||||
-- Overlay id
|
||||
overlay_id = 42,
|
||||
|
||||
-- Spawn thumbnailer on file load for faster initial thumbnails
|
||||
spawn_first = false,
|
||||
|
||||
-- Close thumbnailer process after an inactivity period in seconds, 0 to disable
|
||||
quit_after_inactivity = 0,
|
||||
|
||||
-- Enable on network playback
|
||||
network = false,
|
||||
|
||||
-- Enable on audio playback
|
||||
audio = false,
|
||||
|
||||
-- Enable hardware decoding
|
||||
hwdec = false,
|
||||
|
||||
-- Windows only: use native Windows API to write to pipe (requires LuaJIT)
|
||||
direct_io = false,
|
||||
|
||||
-- Custom path to the mpv executable
|
||||
mpv_path = "mpv",
|
||||
|
||||
-- Specifies a blacklist of video extensions to ignore
|
||||
blacklist_ext = "bdmv,ifo",
|
||||
|
||||
-- excluded directories for shared, #windows: ["X:", "Z:", "F:/Download/", "Download"]
|
||||
excluded_dir = [[
|
||||
[]
|
||||
]],
|
||||
}
|
||||
|
||||
mp.utils = require "mp.utils"
|
||||
mp.options = require "mp.options"
|
||||
mp.options.read_options(options, "thumbfast")
|
||||
|
||||
local properties = {}
|
||||
local pre_0_30_0 = mp.command_native_async == nil
|
||||
local pre_0_33_0 = true
|
||||
|
||||
local is_windows = package.config:sub(1, 1) == "\\" -- detect path separator, windows uses backslashes
|
||||
|
||||
local function split(input)
|
||||
local ret = {}
|
||||
for str in string.gmatch(input, "([^,]+)") do
|
||||
ret[#ret + 1] = str
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
local function exclude(extension, tab)
|
||||
if #tab > 0 then
|
||||
for _, ext in pairs(tab) do
|
||||
if extension == ext then
|
||||
return true
|
||||
end
|
||||
end
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
local function need_ignore(tab, val)
|
||||
for index, element in ipairs(tab) do
|
||||
if string.find(val, element) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function is_protocol(path)
|
||||
return type(path) == 'string' and (path:find('^%a[%w.+-]-://') ~= nil or path:find('^%a[%w.+-]-:%?') ~= nil)
|
||||
end
|
||||
|
||||
function subprocess(args, async, callback)
|
||||
callback = callback or function() end
|
||||
|
||||
if not pre_0_30_0 then
|
||||
if async then
|
||||
return mp.command_native_async({name = "subprocess", playback_only = true, args = args}, callback)
|
||||
else
|
||||
return mp.command_native({name = "subprocess", playback_only = false, capture_stdout = true, args = args})
|
||||
end
|
||||
else
|
||||
if async then
|
||||
return mp.utils.subprocess_detached({args = args}, callback)
|
||||
else
|
||||
return mp.utils.subprocess({args = args})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local winapi = {}
|
||||
if options.direct_io then
|
||||
local ffi_loaded, ffi = pcall(require, "ffi")
|
||||
if ffi_loaded then
|
||||
winapi = {
|
||||
ffi = ffi,
|
||||
C = ffi.C,
|
||||
bit = require("bit"),
|
||||
socket_wc = "",
|
||||
|
||||
-- WinAPI constants
|
||||
CP_UTF8 = 65001,
|
||||
GENERIC_WRITE = 0x40000000,
|
||||
OPEN_EXISTING = 3,
|
||||
FILE_FLAG_WRITE_THROUGH = 0x80000000,
|
||||
FILE_FLAG_NO_BUFFERING = 0x20000000,
|
||||
PIPE_NOWAIT = ffi.new("unsigned long[1]", 0x00000001),
|
||||
|
||||
INVALID_HANDLE_VALUE = ffi.cast("void*", -1),
|
||||
|
||||
-- don't care about how many bytes WriteFile wrote, so allocate something to store the result once
|
||||
_lpNumberOfBytesWritten = ffi.new("unsigned long[1]"),
|
||||
}
|
||||
-- cache flags used in run() to avoid bor() call
|
||||
winapi._createfile_pipe_flags = winapi.bit.bor(winapi.FILE_FLAG_WRITE_THROUGH, winapi.FILE_FLAG_NO_BUFFERING)
|
||||
|
||||
ffi.cdef[[
|
||||
void* __stdcall CreateFileW(const wchar_t *lpFileName, unsigned long dwDesiredAccess, unsigned long dwShareMode, void *lpSecurityAttributes, unsigned long dwCreationDisposition, unsigned long dwFlagsAndAttributes, void *hTemplateFile);
|
||||
bool __stdcall WriteFile(void *hFile, const void *lpBuffer, unsigned long nNumberOfBytesToWrite, unsigned long *lpNumberOfBytesWritten, void *lpOverlapped);
|
||||
bool __stdcall CloseHandle(void *hObject);
|
||||
bool __stdcall SetNamedPipeHandleState(void *hNamedPipe, unsigned long *lpMode, unsigned long *lpMaxCollectionCount, unsigned long *lpCollectDataTimeout);
|
||||
int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr, int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar);
|
||||
]]
|
||||
|
||||
winapi.MultiByteToWideChar = function(MultiByteStr)
|
||||
if MultiByteStr then
|
||||
local utf16_len = winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, MultiByteStr, -1, nil, 0)
|
||||
if utf16_len > 0 then
|
||||
local utf16_str = winapi.ffi.new("wchar_t[?]", utf16_len)
|
||||
if winapi.C.MultiByteToWideChar(winapi.CP_UTF8, 0, MultiByteStr, -1, utf16_str, utf16_len) > 0 then
|
||||
return utf16_str
|
||||
end
|
||||
end
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
else
|
||||
options.direct_io = false
|
||||
end
|
||||
end
|
||||
|
||||
local file = nil
|
||||
local file_bytes = 0
|
||||
local spawned = false
|
||||
local disabled = false
|
||||
local force_disabled = false
|
||||
local spawn_waiting = false
|
||||
local spawn_working = false
|
||||
local script_written = false
|
||||
|
||||
local dirty = false
|
||||
|
||||
local x = nil
|
||||
local y = nil
|
||||
local last_x = x
|
||||
local last_y = y
|
||||
|
||||
local last_seek_time = nil
|
||||
|
||||
local effective_w = options.max_width
|
||||
local effective_h = options.max_height
|
||||
local real_w = nil
|
||||
local real_h = nil
|
||||
local last_real_w = nil
|
||||
local last_real_h = nil
|
||||
|
||||
local script_name = nil
|
||||
|
||||
local show_thumbnail = false
|
||||
|
||||
local filters_reset = {["lavfi-crop"]=true, ["crop"]=true}
|
||||
local filters_runtime = {["hflip"]=true, ["vflip"]=true}
|
||||
local filters_all = {["hflip"]=true, ["vflip"]=true, ["lavfi-crop"]=true, ["crop"]=true}
|
||||
|
||||
local last_vf_reset = ""
|
||||
local last_vf_runtime = ""
|
||||
|
||||
local last_rotate = 0
|
||||
|
||||
local par = ""
|
||||
local last_par = ""
|
||||
|
||||
local last_has_vid = 0
|
||||
local has_vid = 0
|
||||
|
||||
local file_timer = nil
|
||||
local file_check_period = 1/60
|
||||
|
||||
local allow_fast_seek = true
|
||||
|
||||
local client_script = [=[
|
||||
#!/usr/bin/env bash
|
||||
MPV_IPC_FD=0; MPV_IPC_PATH="%s"
|
||||
trap "kill 0" EXIT
|
||||
while [[ $# -ne 0 ]]; do case $1 in --mpv-ipc-fd=*) MPV_IPC_FD=${1/--mpv-ipc-fd=/} ;; esac; shift; done
|
||||
if echo "print-text thumbfast" >&"$MPV_IPC_FD"; then echo -n > "$MPV_IPC_PATH"; tail -f "$MPV_IPC_PATH" >&"$MPV_IPC_FD" & while read -r -u "$MPV_IPC_FD" 2>/dev/null; do :; done; fi
|
||||
]=]
|
||||
|
||||
local cached_ranges = {}
|
||||
local ext_blacklist = split(options.blacklist_ext)
|
||||
local excluded_dir = mp.utils.parse_json(options.excluded_dir)
|
||||
|
||||
local function get_os()
|
||||
local raw_os_name = ""
|
||||
|
||||
if jit and jit.os and jit.arch then
|
||||
raw_os_name = jit.os
|
||||
else
|
||||
if package.config:sub(1,1) == "\\" then
|
||||
-- Windows
|
||||
local env_OS = os.getenv("OS")
|
||||
if env_OS then
|
||||
raw_os_name = env_OS
|
||||
end
|
||||
else
|
||||
raw_os_name = subprocess({"uname", "-s"}).stdout
|
||||
end
|
||||
end
|
||||
|
||||
raw_os_name = (raw_os_name):lower()
|
||||
|
||||
local os_patterns = {
|
||||
["windows"] = "windows",
|
||||
["linux"] = "linux",
|
||||
|
||||
["osx"] = "darwin",
|
||||
["mac"] = "darwin",
|
||||
["darwin"] = "darwin",
|
||||
|
||||
["^mingw"] = "windows",
|
||||
["^cygwin"] = "windows",
|
||||
|
||||
["bsd$"] = "darwin",
|
||||
["sunos"] = "darwin"
|
||||
}
|
||||
|
||||
-- Default to linux
|
||||
local str_os_name = "linux"
|
||||
|
||||
for pattern, name in pairs(os_patterns) do
|
||||
if raw_os_name:match(pattern) then
|
||||
str_os_name = name
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
return str_os_name
|
||||
end
|
||||
|
||||
local os_name = mp.get_property("platform") or get_os()
|
||||
|
||||
local path_separator = os_name == "windows" and "\\" or "/"
|
||||
|
||||
if options.socket == "" then
|
||||
if os_name == "windows" then
|
||||
options.socket = "thumbfast"
|
||||
else
|
||||
options.socket = "/tmp/thumbfast"
|
||||
end
|
||||
end
|
||||
|
||||
if options.thumbnail == "" then
|
||||
if os_name == "windows" then
|
||||
options.thumbnail = os.getenv("TEMP").."\\thumbfast.out"
|
||||
else
|
||||
options.thumbnail = "/tmp/thumbfast.out"
|
||||
end
|
||||
end
|
||||
|
||||
local unique = mp.utils.getpid()
|
||||
|
||||
options.socket = options.socket .. unique
|
||||
options.thumbnail = options.thumbnail .. unique
|
||||
|
||||
if options.direct_io then
|
||||
if os_name == "windows" then
|
||||
winapi.socket_wc = winapi.MultiByteToWideChar("\\\\.\\pipe\\" .. options.socket)
|
||||
end
|
||||
|
||||
if winapi.socket_wc == "" then
|
||||
options.direct_io = false
|
||||
end
|
||||
end
|
||||
|
||||
local mpv_path = options.mpv_path
|
||||
|
||||
if mpv_path == "mpv" then
|
||||
local frontend_name = mp.get_property_native("user-data/frontend/name")
|
||||
if frontend_name == "mpv.net" then
|
||||
mpv_path = mp.get_property_native("user-data/frontend/process-path")
|
||||
end
|
||||
end
|
||||
|
||||
if mpv_path == "mpv" and os_name == "darwin" and unique then
|
||||
-- TODO: look into ~~osxbundle/
|
||||
mpv_path = string.gsub(subprocess({"ps", "-o", "comm=", "-p", tostring(unique)}).stdout, "[\n\r]", "")
|
||||
if mpv_path ~= "mpv" then
|
||||
mpv_path = string.gsub(mpv_path, "/mpv%-bundle$", "/mpv")
|
||||
local mpv_bin = mp.utils.file_info("/usr/local/mpv")
|
||||
if mpv_bin and mpv_bin.is_file then
|
||||
mpv_path = "/usr/local/mpv"
|
||||
else
|
||||
local mpv_app = mp.utils.file_info("/Applications/mpv.app/Contents/MacOS/mpv")
|
||||
if mpv_app and mpv_app.is_file then
|
||||
mp.msg.warn("symlink mpv to fix Dock icons: `sudo ln -s /Applications/mpv.app/Contents/MacOS/mpv /usr/local/mpv`")
|
||||
else
|
||||
mp.msg.warn("drag to your Applications folder and symlink mpv to fix Dock icons: `sudo ln -s /Applications/mpv.app/Contents/MacOS/mpv /usr/local/mpv`")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function vf_string(filters, full)
|
||||
local vf = ""
|
||||
local vf_table = properties["vf"]
|
||||
|
||||
if vf_table and #vf_table > 0 then
|
||||
for i = #vf_table, 1, -1 do
|
||||
if filters[vf_table[i].name] then
|
||||
local args = ""
|
||||
for key, value in pairs(vf_table[i].params) do
|
||||
if args ~= "" then
|
||||
args = args .. ":"
|
||||
end
|
||||
args = args .. key .. "=" .. value
|
||||
end
|
||||
vf = vf .. vf_table[i].name .. "=" .. args .. ","
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if full then
|
||||
vf = vf.."scale=w="..effective_w..":h="..effective_h..par..",pad=w="..effective_w..":h="..effective_h..":x=-1:y=-1,format=bgra"
|
||||
end
|
||||
|
||||
return vf
|
||||
end
|
||||
|
||||
local function calc_dimensions()
|
||||
local width = properties["video-out-params"] and properties["video-out-params"]["dw"]
|
||||
local height = properties["video-out-params"] and properties["video-out-params"]["dh"]
|
||||
if not width or not height then return end
|
||||
|
||||
local scale = properties["display-hidpi-scale"] or 1
|
||||
|
||||
if width / height > options.max_width / options.max_height then
|
||||
effective_w = math.floor(options.max_width * scale + 0.5)
|
||||
effective_h = math.floor(height / width * effective_w + 0.5)
|
||||
else
|
||||
effective_h = math.floor(options.max_height * scale + 0.5)
|
||||
effective_w = math.floor(width / height * effective_h + 0.5)
|
||||
end
|
||||
|
||||
local v_par = properties["video-out-params"] and properties["video-out-params"]["par"] or 1
|
||||
if v_par == 1 then
|
||||
par = ":force_original_aspect_ratio=decrease"
|
||||
else
|
||||
par = ""
|
||||
end
|
||||
end
|
||||
|
||||
local info_timer = nil
|
||||
|
||||
local function info(w, h)
|
||||
local rotate = properties["video-params"] and properties["video-params"]["rotate"]
|
||||
local dovi_p5 = properties["video-params"] and properties["video-params"]["colormatrix"] == "dolbyvision" and properties["video-params"]["colorlevels"] == "full"
|
||||
local image = properties["current-tracks/video"] and properties["current-tracks/video"]["image"]
|
||||
local albumart = image and properties["current-tracks/video"]["albumart"]
|
||||
local cache_state = properties["demuxer-cache-state"]
|
||||
local dir = properties["path"] and mp.utils.split_path(properties["path"])
|
||||
local file_ext = properties["path"] and properties["path"]:match("%.([^%.]+)$")
|
||||
|
||||
if is_windows and dir then dir = dir:gsub("\\", "/") end
|
||||
if cache_state then cached_ranges = cache_state["seekable-ranges"] end
|
||||
|
||||
disabled = (w or 0) == 0 or (h or 0) == 0 or
|
||||
has_vid == 0 or
|
||||
(dir and need_ignore(excluded_dir, dir)) or
|
||||
(file_ext and exclude(file_ext:lower(), ext_blacklist)) or
|
||||
((properties["demuxer-via-network"] or is_protocol(properties["path"]) or (properties["cache"] == "auto" and #cached_ranges > 0)) and not options.network) or
|
||||
(dovi_p5) or
|
||||
(albumart and not options.audio) or
|
||||
(image and not albumart) or
|
||||
force_disabled
|
||||
|
||||
if info_timer then
|
||||
info_timer:kill()
|
||||
info_timer = nil
|
||||
elseif has_vid == 0 or (rotate == nil and not disabled) then
|
||||
info_timer = mp.add_timeout(0.05, function() info(w, h) end)
|
||||
end
|
||||
|
||||
local json, err = mp.utils.format_json({width=w, height=h, disabled=disabled, available=true, socket=options.socket, thumbnail=options.thumbnail, overlay_id=options.overlay_id})
|
||||
if pre_0_30_0 then
|
||||
mp.command_native({"script-message", "thumbfast-info", json})
|
||||
else
|
||||
mp.command_native_async({"script-message", "thumbfast-info", json}, function() end)
|
||||
end
|
||||
end
|
||||
|
||||
local function remove_thumbnail_files()
|
||||
if file then
|
||||
file:close()
|
||||
file = nil
|
||||
file_bytes = 0
|
||||
end
|
||||
os.remove(options.thumbnail)
|
||||
os.remove(options.thumbnail..".bgra")
|
||||
end
|
||||
|
||||
local activity_timer
|
||||
|
||||
local function spawn(time)
|
||||
if disabled then return end
|
||||
|
||||
local path = properties["path"]
|
||||
if path == nil then return end
|
||||
|
||||
if options.quit_after_inactivity > 0 then
|
||||
if show_thumbnail or activity_timer:is_enabled() then
|
||||
activity_timer:kill()
|
||||
end
|
||||
activity_timer:resume()
|
||||
end
|
||||
|
||||
local open_filename = properties["stream-open-filename"]
|
||||
local ytdl = open_filename and properties["demuxer-via-network"] and path ~= open_filename
|
||||
if ytdl then
|
||||
path = open_filename
|
||||
end
|
||||
|
||||
remove_thumbnail_files()
|
||||
|
||||
local vid = properties["vid"]
|
||||
has_vid = vid or 0
|
||||
|
||||
local args = {
|
||||
mpv_path, "--no-config", "--msg-level=all=no", "--idle", "--ao=null", "--pause", "--keep-open=always", "--really-quiet", "--no-terminal",
|
||||
"--load-scripts=no", "--osc=no", "--ytdl=no", "--load-stats-overlay=no",
|
||||
"--load-auto-profiles=no", "--load-osd-console=no", "--load-select=no", "--autoload-files=no",
|
||||
"--edition="..(properties["edition"] or "auto"), "--vid="..(vid or "auto"), "--no-sub", "--no-audio",
|
||||
"--start="..time, allow_fast_seek and "--hr-seek=no" or "--hr-seek=yes",
|
||||
"--gpu-dumb-mode=yes", "--dither-depth=no", "--hdr-compute-peak=no", "--target-colorspace-hint=no",
|
||||
"--ytdl-format=worst", "--demuxer-readahead-secs=0", "--demuxer-max-bytes=128KiB",
|
||||
"--vd-lavc-skiploopfilter=all", "--vd-lavc-skipidct=all", "--vd-lavc-software-fallback=1", "--vd-lavc-fast", "--vd-lavc-threads=2",
|
||||
"--hwdec="..(options.hwdec and "auto" or "no"),
|
||||
"--vf="..vf_string(filters_all, true), "--audio-pitch-correction=no", "--deinterlace=no",
|
||||
"--zimg-scaler=bilinear", "--zimg-fast=yes",
|
||||
"--video-rotate="..last_rotate,
|
||||
"--ovc=rawvideo", "--of=image2", "--ofopts=update=1", "--ocopy-metadata=no", "--o="..options.thumbnail
|
||||
}
|
||||
|
||||
if os_name == "darwin" and properties["macos-app-activation-policy"] then
|
||||
table.insert(args, "--macos-app-activation-policy=accessory")
|
||||
end
|
||||
|
||||
if os_name == "windows" or pre_0_33_0 then
|
||||
table.insert(args, "--input-ipc-server="..options.socket)
|
||||
local media_controls = mp.get_property_native("media-controls")
|
||||
if media_controls ~= nil then
|
||||
table.insert(args, "--media-controls=no")
|
||||
end
|
||||
elseif not script_written then
|
||||
local client_script_path = options.socket..".run"
|
||||
local script = io.open(client_script_path, "w+")
|
||||
if script == nil then
|
||||
mp.msg.error("client script write failed")
|
||||
return
|
||||
else
|
||||
script_written = true
|
||||
script:write(string.format(client_script, options.socket))
|
||||
script:close()
|
||||
subprocess({"chmod", "+x", client_script_path}, true)
|
||||
table.insert(args, "--scripts="..client_script_path)
|
||||
end
|
||||
else
|
||||
local client_script_path = options.socket..".run"
|
||||
table.insert(args, "--scripts="..client_script_path)
|
||||
end
|
||||
|
||||
table.insert(args, "--")
|
||||
table.insert(args, path)
|
||||
|
||||
spawned = true
|
||||
spawn_waiting = true
|
||||
|
||||
subprocess(args, true,
|
||||
function(success, result)
|
||||
if spawn_waiting and (success == false or (result.status ~= 0 and result.status ~= -2)) then
|
||||
spawned = false
|
||||
spawn_waiting = false
|
||||
mp.msg.error("mpv subprocess create failed")
|
||||
if not spawn_working then -- notify users of required configuration
|
||||
if options.mpv_path == "mpv" then
|
||||
if properties["current-vo"] == "libmpv" then
|
||||
if options.mpv_path == mpv_path then -- attempt to locate ImPlay
|
||||
mpv_path = "ImPlay"
|
||||
spawn(time)
|
||||
else -- ImPlay not in path
|
||||
if os_name ~= "darwin" then
|
||||
force_disabled = true
|
||||
info(real_w or effective_w, real_h or effective_h)
|
||||
end
|
||||
mp.commandv("show-text", "thumbfast: ERROR! cannot create mpv subprocess", 5000)
|
||||
mp.commandv("script-message-to", "implay", "show-message", "thumbfast initial setup", "Set mpv_path=PATH_TO_ImPlay in thumbfast config:\n" .. string.gsub(mp.command_native({"expand-path", "~~/script-opts/thumbfast.conf"}), "[/\\]", path_separator).."\nand restart ImPlay")
|
||||
end
|
||||
else
|
||||
mp.commandv("show-text", "thumbfast: ERROR! cannot create mpv subprocess", 5000)
|
||||
end
|
||||
else
|
||||
mp.commandv("show-text", "thumbfast: ERROR! cannot create mpv subprocess", 5000)
|
||||
-- found ImPlay but not defined in config
|
||||
mp.commandv("script-message-to", "implay", "show-message", "thumbfast", "Set mpv_path=PATH_TO_ImPlay in thumbfast config:\n" .. string.gsub(mp.command_native({"expand-path", "~~/script-opts/thumbfast.conf"}), "[/\\]", path_separator).."\nand restart ImPlay")
|
||||
end
|
||||
end
|
||||
elseif success == true and (result.status == 0 or result.status == -2) then
|
||||
if not spawn_working and properties["current-vo"] == "libmpv" and options.mpv_path ~= mpv_path then
|
||||
mp.commandv("script-message-to", "implay", "show-message", "thumbfast initial setup", "Set mpv_path=ImPlay in thumbfast config:\n" .. string.gsub(mp.command_native({"expand-path", "~~/script-opts/thumbfast.conf"}), "[/\\]", path_separator).."\nand restart ImPlay")
|
||||
end
|
||||
spawn_working = true
|
||||
spawn_waiting = false
|
||||
end
|
||||
end
|
||||
)
|
||||
end
|
||||
|
||||
local function run(command)
|
||||
if not spawned then return end
|
||||
|
||||
if options.direct_io then
|
||||
local hPipe = winapi.C.CreateFileW(winapi.socket_wc, winapi.GENERIC_WRITE, 0, nil, winapi.OPEN_EXISTING, winapi._createfile_pipe_flags, nil)
|
||||
if hPipe ~= winapi.INVALID_HANDLE_VALUE then
|
||||
local buf = command .. "\n"
|
||||
winapi.C.SetNamedPipeHandleState(hPipe, winapi.PIPE_NOWAIT, nil, nil)
|
||||
winapi.C.WriteFile(hPipe, buf, #buf + 1, winapi._lpNumberOfBytesWritten, nil)
|
||||
winapi.C.CloseHandle(hPipe)
|
||||
end
|
||||
|
||||
return
|
||||
end
|
||||
|
||||
local command_n = command.."\n"
|
||||
|
||||
if os_name == "windows" then
|
||||
if file and file_bytes + #command_n >= 4096 then
|
||||
file:close()
|
||||
file = nil
|
||||
file_bytes = 0
|
||||
end
|
||||
if not file then
|
||||
file = io.open("\\\\.\\pipe\\"..options.socket, "r+b")
|
||||
end
|
||||
elseif pre_0_33_0 then
|
||||
subprocess({"/usr/bin/env", "sh", "-c", "echo '" .. command .. "' | socat - " .. options.socket})
|
||||
return
|
||||
elseif not file then
|
||||
file = io.open(options.socket, "r+")
|
||||
end
|
||||
if file then
|
||||
file_bytes = file:seek("end")
|
||||
file:write(command_n)
|
||||
file:flush()
|
||||
end
|
||||
end
|
||||
|
||||
local function draw(w, h, script)
|
||||
if not w or not show_thumbnail then return end
|
||||
if x ~= nil then
|
||||
if pre_0_30_0 then
|
||||
mp.command_native({"overlay-add", options.overlay_id, x, y, options.thumbnail..".bgra", 0, "bgra", w, h, (4*w)})
|
||||
else
|
||||
mp.command_native_async({"overlay-add", options.overlay_id, x, y, options.thumbnail..".bgra", 0, "bgra", w, h, (4*w)}, function() end)
|
||||
end
|
||||
elseif script then
|
||||
local json, err = mp.utils.format_json({width=w, height=h, x=x, y=y, socket=options.socket, thumbnail=options.thumbnail, overlay_id=options.overlay_id})
|
||||
mp.commandv("script-message-to", script, "thumbfast-render", json)
|
||||
end
|
||||
end
|
||||
|
||||
local function real_res(req_w, req_h, filesize)
|
||||
local count = filesize / 4
|
||||
local diff = (req_w * req_h) - count
|
||||
|
||||
if (properties["video-params"] and properties["video-params"]["rotate"] or 0) % 180 == 90 then
|
||||
req_w, req_h = req_h, req_w
|
||||
end
|
||||
|
||||
if diff == 0 then
|
||||
return req_w, req_h
|
||||
else
|
||||
local threshold = 5 -- throw out results that change too much
|
||||
local long_side, short_side = req_w, req_h
|
||||
if req_h > req_w then
|
||||
long_side, short_side = req_h, req_w
|
||||
end
|
||||
for a = short_side, short_side - threshold, -1 do
|
||||
if count % a == 0 then
|
||||
local b = count / a
|
||||
if long_side - b < threshold then
|
||||
if req_h < req_w then return b, a else return a, b end
|
||||
end
|
||||
end
|
||||
end
|
||||
return nil
|
||||
end
|
||||
end
|
||||
|
||||
local function move_file(from, to)
|
||||
if os_name == "windows" then
|
||||
os.remove(to)
|
||||
end
|
||||
-- move the file because it can get overwritten while overlay-add is reading it, and crash the player
|
||||
os.rename(from, to)
|
||||
end
|
||||
|
||||
local function seek(fast)
|
||||
if last_seek_time then
|
||||
run("async seek " .. last_seek_time .. (fast and " absolute+keyframes" or " absolute+exact"))
|
||||
end
|
||||
end
|
||||
|
||||
local seek_period = 3/60
|
||||
local seek_period_counter = 0
|
||||
local seek_timer
|
||||
seek_timer = mp.add_periodic_timer(seek_period, function()
|
||||
if seek_period_counter == 0 then
|
||||
seek(allow_fast_seek)
|
||||
seek_period_counter = 1
|
||||
else
|
||||
if seek_period_counter == 2 then
|
||||
if allow_fast_seek then
|
||||
seek_timer:kill()
|
||||
seek()
|
||||
end
|
||||
else seek_period_counter = seek_period_counter + 1 end
|
||||
end
|
||||
end)
|
||||
seek_timer:kill()
|
||||
|
||||
local function request_seek()
|
||||
if seek_timer:is_enabled() then
|
||||
seek_period_counter = 0
|
||||
else
|
||||
seek_timer:resume()
|
||||
seek(allow_fast_seek)
|
||||
seek_period_counter = 1
|
||||
end
|
||||
end
|
||||
|
||||
local function check_new_thumb()
|
||||
-- the slave might start writing to the file after checking existance and
|
||||
-- validity but before actually moving the file, so move to a temporary
|
||||
-- location before validity check to make sure everything stays consistant
|
||||
-- and valid thumbnails don't get overwritten by invalid ones
|
||||
local tmp = options.thumbnail..".tmp"
|
||||
move_file(options.thumbnail, tmp)
|
||||
local finfo = mp.utils.file_info(tmp)
|
||||
if not finfo then return false end
|
||||
spawn_waiting = false
|
||||
local w, h = real_res(effective_w, effective_h, finfo.size)
|
||||
if w then -- only accept valid thumbnails
|
||||
move_file(tmp, options.thumbnail..".bgra")
|
||||
|
||||
real_w, real_h = w, h
|
||||
if real_w and (real_w ~= last_real_w or real_h ~= last_real_h) then
|
||||
last_real_w, last_real_h = real_w, real_h
|
||||
info(real_w, real_h)
|
||||
end
|
||||
if not show_thumbnail then
|
||||
file_timer:kill()
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
file_timer = mp.add_periodic_timer(file_check_period, function()
|
||||
if check_new_thumb() then
|
||||
draw(real_w, real_h, script_name)
|
||||
end
|
||||
end)
|
||||
file_timer:kill()
|
||||
|
||||
local function clear()
|
||||
file_timer:kill()
|
||||
seek_timer:kill()
|
||||
if options.quit_after_inactivity > 0 then
|
||||
if show_thumbnail or activity_timer:is_enabled() then
|
||||
activity_timer:kill()
|
||||
end
|
||||
activity_timer:resume()
|
||||
end
|
||||
last_seek_time = nil
|
||||
show_thumbnail = false
|
||||
last_x = nil
|
||||
last_y = nil
|
||||
if script_name then return end
|
||||
if pre_0_30_0 then
|
||||
mp.command_native({"overlay-remove", options.overlay_id})
|
||||
else
|
||||
mp.command_native_async({"overlay-remove", options.overlay_id}, function() end)
|
||||
end
|
||||
end
|
||||
|
||||
local function quit()
|
||||
activity_timer:kill()
|
||||
if show_thumbnail then
|
||||
activity_timer:resume()
|
||||
return
|
||||
end
|
||||
run("quit")
|
||||
spawned = false
|
||||
real_w, real_h = nil, nil
|
||||
clear()
|
||||
end
|
||||
|
||||
activity_timer = mp.add_timeout(options.quit_after_inactivity, quit)
|
||||
activity_timer:kill()
|
||||
|
||||
local function thumb(time, r_x, r_y, script)
|
||||
if disabled then return end
|
||||
|
||||
time = tonumber(time)
|
||||
if time == nil then return end
|
||||
|
||||
if r_x == "" or r_y == "" then
|
||||
x, y = nil, nil
|
||||
else
|
||||
x, y = math.floor(r_x + 0.5), math.floor(r_y + 0.5)
|
||||
end
|
||||
|
||||
script_name = script
|
||||
if last_x ~= x or last_y ~= y or not show_thumbnail then
|
||||
show_thumbnail = true
|
||||
last_x = x
|
||||
last_y = y
|
||||
draw(real_w, real_h, script)
|
||||
end
|
||||
|
||||
if options.quit_after_inactivity > 0 then
|
||||
if show_thumbnail or activity_timer:is_enabled() then
|
||||
activity_timer:kill()
|
||||
end
|
||||
activity_timer:resume()
|
||||
end
|
||||
|
||||
if time == last_seek_time then return end
|
||||
last_seek_time = time
|
||||
if not spawned then spawn(time) end
|
||||
request_seek()
|
||||
if not file_timer:is_enabled() then file_timer:resume() end
|
||||
end
|
||||
|
||||
local function watch_changes()
|
||||
if not dirty or not properties["video-out-params"] then return end
|
||||
dirty = false
|
||||
|
||||
local old_w = effective_w
|
||||
local old_h = effective_h
|
||||
|
||||
calc_dimensions()
|
||||
|
||||
local vf_reset = vf_string(filters_reset)
|
||||
local rotate = properties["video-rotate"] or 0
|
||||
|
||||
local resized = old_w ~= effective_w or
|
||||
old_h ~= effective_h or
|
||||
last_vf_reset ~= vf_reset or
|
||||
(last_rotate % 180) ~= (rotate % 180) or
|
||||
par ~= last_par
|
||||
|
||||
if resized then
|
||||
last_rotate = rotate
|
||||
info(effective_w, effective_h)
|
||||
elseif last_has_vid ~= has_vid and has_vid ~= 0 then
|
||||
info(effective_w, effective_h)
|
||||
end
|
||||
|
||||
if spawned then
|
||||
if resized then
|
||||
-- mpv doesn't allow us to change output size
|
||||
local seek_time = last_seek_time
|
||||
run("quit")
|
||||
clear()
|
||||
spawned = false
|
||||
spawn(seek_time or mp.get_property_number("time-pos", 0))
|
||||
file_timer:resume()
|
||||
else
|
||||
if rotate ~= last_rotate then
|
||||
run("set video-rotate "..rotate)
|
||||
end
|
||||
local vf_runtime = vf_string(filters_runtime)
|
||||
if vf_runtime ~= last_vf_runtime then
|
||||
run("vf set "..vf_string(filters_all, true))
|
||||
last_vf_runtime = vf_runtime
|
||||
end
|
||||
end
|
||||
else
|
||||
last_vf_runtime = vf_string(filters_runtime)
|
||||
end
|
||||
|
||||
last_vf_reset = vf_reset
|
||||
last_rotate = rotate
|
||||
last_par = par
|
||||
last_has_vid = has_vid
|
||||
|
||||
if not spawned and not disabled and options.spawn_first and resized then
|
||||
spawn(mp.get_property_number("time-pos", 0))
|
||||
file_timer:resume()
|
||||
end
|
||||
end
|
||||
|
||||
local function update_property(name, value)
|
||||
properties[name] = value
|
||||
end
|
||||
|
||||
local function update_property_dirty(name, value)
|
||||
properties[name] = value
|
||||
dirty = true
|
||||
end
|
||||
|
||||
local function update_tracklist(name, value)
|
||||
-- current-tracks shim
|
||||
for _, track in ipairs(value) do
|
||||
if track.type == "video" and track.selected then
|
||||
properties["current-tracks/video"] = track
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function sync_changes(prop, val)
|
||||
update_property(prop, val)
|
||||
if val == nil then return end
|
||||
|
||||
if type(val) == "boolean" then
|
||||
if prop == "vid" then
|
||||
has_vid = 0
|
||||
last_has_vid = 0
|
||||
info(effective_w, effective_h)
|
||||
clear()
|
||||
return
|
||||
end
|
||||
val = val and "yes" or "no"
|
||||
end
|
||||
|
||||
if prop == "vid" then
|
||||
has_vid = 1
|
||||
end
|
||||
|
||||
if not spawned then return end
|
||||
|
||||
run("set "..prop.." "..val)
|
||||
dirty = true
|
||||
end
|
||||
|
||||
local function file_load()
|
||||
clear()
|
||||
spawned = false
|
||||
real_w, real_h = nil, nil
|
||||
last_real_w, last_real_h = nil, nil
|
||||
last_seek_time = nil
|
||||
if info_timer then
|
||||
info_timer:kill()
|
||||
info_timer = nil
|
||||
end
|
||||
|
||||
calc_dimensions()
|
||||
info(effective_w, effective_h)
|
||||
end
|
||||
|
||||
local function shutdown()
|
||||
run("quit")
|
||||
remove_thumbnail_files()
|
||||
if os_name ~= "windows" then
|
||||
os.remove(options.socket)
|
||||
os.remove(options.socket..".run")
|
||||
end
|
||||
end
|
||||
|
||||
local function on_duration(prop, val)
|
||||
allow_fast_seek = (val or 30) >= 30
|
||||
end
|
||||
|
||||
mp.observe_property("current-tracks/video", "native", function(name, value)
|
||||
if pre_0_33_0 then
|
||||
mp.unobserve_property(update_tracklist)
|
||||
pre_0_33_0 = false
|
||||
end
|
||||
update_property(name, value)
|
||||
end)
|
||||
|
||||
mp.observe_property("track-list", "native", update_tracklist)
|
||||
mp.observe_property("display-hidpi-scale", "native", update_property_dirty)
|
||||
mp.observe_property("video-out-params", "native", update_property_dirty)
|
||||
mp.observe_property("video-params", "native", update_property_dirty)
|
||||
mp.observe_property("vf", "native", update_property_dirty)
|
||||
mp.observe_property("tone-mapping", "native", update_property_dirty)
|
||||
mp.observe_property("cache", "native", update_property)
|
||||
mp.observe_property("demuxer-via-network", "native", update_property)
|
||||
mp.observe_property('demuxer-cache-state', 'native', update_property)
|
||||
mp.observe_property("stream-open-filename", "native", update_property)
|
||||
mp.observe_property("macos-app-activation-policy", "native", update_property)
|
||||
mp.observe_property("current-vo", "native", update_property)
|
||||
mp.observe_property("video-rotate", "native", update_property)
|
||||
mp.observe_property("path", "native", update_property)
|
||||
mp.observe_property("vid", "native", sync_changes)
|
||||
mp.observe_property("edition", "native", sync_changes)
|
||||
mp.observe_property("duration", "native", on_duration)
|
||||
|
||||
mp.register_script_message("thumb", thumb)
|
||||
mp.register_script_message("clear", clear)
|
||||
|
||||
mp.register_event("file-loaded", file_load)
|
||||
mp.register_event("shutdown", shutdown)
|
||||
|
||||
mp.register_idle(watch_changes)
|
||||
@@ -1,257 +0,0 @@
|
||||
-- trackselect.lua
|
||||
-- https://github.com/po5/trackselect
|
||||
-- Because --slang isn't smart enough.
|
||||
--
|
||||
-- This script tries to select non-dub
|
||||
-- audio and subtitle tracks.
|
||||
-- Idea from https://github.com/siikamiika/scripts/blob/master/mpv%20scripts/dualaudiofix.lua
|
||||
|
||||
local opt = require 'mp.options'
|
||||
local utils = require 'mp.utils'
|
||||
|
||||
local defaults = {
|
||||
audio = {
|
||||
selected = nil,
|
||||
best = {},
|
||||
lang_score = nil,
|
||||
channels_score = -math.huge,
|
||||
preferred = "jpn/japanese",
|
||||
excluded = "",
|
||||
expected = "",
|
||||
id = ""
|
||||
},
|
||||
video = {
|
||||
selected = nil,
|
||||
best = {},
|
||||
lang_score = nil,
|
||||
preferred = "",
|
||||
excluded = "",
|
||||
expected = "",
|
||||
id = ""
|
||||
},
|
||||
sub = {
|
||||
selected = nil,
|
||||
best = {},
|
||||
lang_score = nil,
|
||||
preferred = "eng",
|
||||
excluded = "sign",
|
||||
expected = "",
|
||||
id = ""
|
||||
}
|
||||
}
|
||||
|
||||
local options = {
|
||||
enabled = true,
|
||||
|
||||
-- Do track selection synchronously, plays nicer with other scripts
|
||||
hook = true,
|
||||
|
||||
-- Mimic mpv's track list fingerprint to preserve user-selected tracks across files
|
||||
fingerprint = false,
|
||||
|
||||
-- Override user's explicit track selection
|
||||
force = false,
|
||||
|
||||
-- Try to re-select the last track if mpv cannot do it e.g. when fingerprint changes
|
||||
smart_keep = false,
|
||||
|
||||
--add above (after a comma) any protocol to disable
|
||||
special_protocols = [[
|
||||
["://", "^magnet:"]
|
||||
]],
|
||||
}
|
||||
|
||||
for _type, track in pairs(defaults) do
|
||||
options["preferred_" .. _type .. "_lang"] = track.preferred
|
||||
options["excluded_" .. _type .. "_words"] = track.excluded
|
||||
options["expected_" .. _type .. "_words"] = track.expected
|
||||
end
|
||||
|
||||
options["preferred_audio_channels"] = ""
|
||||
|
||||
local tracks = {}
|
||||
local last = {}
|
||||
local fingerprint = ""
|
||||
|
||||
opt.read_options(options, _, function() end)
|
||||
|
||||
options.special_protocols = utils.parse_json(options.special_protocols)
|
||||
|
||||
local function need_ignore(tab, val)
|
||||
for index, element in ipairs(tab) do
|
||||
if string.find(val, element) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function contains(track, words, attr)
|
||||
if not track[attr] then return false end
|
||||
local i = 0
|
||||
if track.external then
|
||||
i = 1
|
||||
end
|
||||
for word in string.gmatch(words:lower(), "([^/]+)") do
|
||||
i = i - 1
|
||||
if string.find(tostring(track[attr] or ""):lower(), word) then
|
||||
return i
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function preferred(track, words, attr, title)
|
||||
local score = contains(track, words, attr)
|
||||
if not score then
|
||||
if tracks[track.type][title] == nil then
|
||||
tracks[track.type][title] = -math.huge
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
if tracks[track.type][title] == nil or score > tracks[track.type][title] then
|
||||
tracks[track.type][title] = score
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function preferred_or_equals(track, words, attr, title)
|
||||
local score = contains(track, words, attr)
|
||||
if not score then
|
||||
if tracks[track.type][title] == nil or tracks[track.type][title] == -math.huge then
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
if tracks[track.type][title] == nil or score >= tracks[track.type][title] then
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function copy(obj)
|
||||
if type(obj) ~= "table" then return obj end
|
||||
local res = {}
|
||||
for k, v in pairs(obj) do res[k] = copy(v) end
|
||||
return res
|
||||
end
|
||||
|
||||
function track_layout_hash(tracklist)
|
||||
local t = {}
|
||||
for _, track in ipairs(tracklist) do
|
||||
t[#t + 1] = string.format("%s-%d-%s-%s-%s-%s", track.type, track.id, tostring(track.default),
|
||||
tostring(track.external), track.lang or "", track.external and "" or (track.title or ""))
|
||||
end
|
||||
return table.concat(t, "\n")
|
||||
end
|
||||
|
||||
function trackselect()
|
||||
local fpath = mp.get_property('path')
|
||||
if not options.enabled then return end
|
||||
if need_ignore(options.special_protocols, fpath) then return end
|
||||
tracks = copy(defaults)
|
||||
local filename = mp.get_property("filename/no-ext")
|
||||
local tracklist = mp.get_property_native("track-list")
|
||||
local tracklist_changed = false
|
||||
local found_last = {}
|
||||
if options.fingerprint then
|
||||
local new_fingerprint = track_layout_hash(tracklist)
|
||||
if new_fingerprint == fingerprint then
|
||||
return
|
||||
end
|
||||
fingerprint = new_fingerprint
|
||||
tracklist_changed = true
|
||||
end
|
||||
for _, track in ipairs(tracklist) do
|
||||
if options.smart_keep and last[track.type] ~= nil and last[track.type].lang == track.lang and
|
||||
last[track.type].codec == track.codec and last[track.type].external == track.external and
|
||||
last[track.type].title == track.title then
|
||||
tracks[track.type].best = track
|
||||
options["preferred_" .. track.type .. "_lang"] = ""
|
||||
options["excluded_" .. track.type .. "_words"] = ""
|
||||
options["expected_" .. track.type .. "_words"] = ""
|
||||
options["preferred_" .. track.type .. "_channels"] = ""
|
||||
found_last[track.type] = true
|
||||
elseif not options.force and (tracklist_changed or not options.fingerprint) then
|
||||
if tracks[track.type].id == "" then
|
||||
tracks[track.type].id = mp.get_property(track.type:sub(1, 1) .. "id", "auto")
|
||||
end
|
||||
if tracks[track.type].id ~= "auto" then
|
||||
options["preferred_" .. track.type .. "_lang"] = ""
|
||||
options["excluded_" .. track.type .. "_words"] = ""
|
||||
options["expected_" .. track.type .. "_words"] = ""
|
||||
options["preferred_" .. track.type .. "_channels"] = ""
|
||||
end
|
||||
end
|
||||
if options["preferred_" .. track.type .. "_lang"] ~= "" or options["excluded_" .. track.type .. "_words"] ~= ""
|
||||
or options["expected_" .. track.type .. "_words"] ~= "" or
|
||||
(options["preferred_" .. track.type .. "_channels"] or "") ~= "" then
|
||||
if track.selected then
|
||||
tracks[track.type].selected = track.id
|
||||
if options.smart_keep then
|
||||
last[track.type] = track
|
||||
end
|
||||
end
|
||||
if track.title then
|
||||
track.title = string.gsub(string.gsub(track.title, "[%(%)%.%+%-%*%?%[%]%^%$%%]", "%%%1"), filename, "")
|
||||
end
|
||||
if next(tracks[track.type].best) == nil or not (tracks[track.type].best.external
|
||||
and tracks[track.type].best.lang ~= nil and not track.external) then
|
||||
if options["excluded_" .. track.type .. "_words"] == "" or
|
||||
not contains(track, options["excluded_" .. track.type .. "_words"], "title") then
|
||||
if options["expected_" .. track.type .. "_words"] == "" or
|
||||
contains(track, options["expected_" .. track.type .. "_words"], "title") then
|
||||
local pass = true
|
||||
local channels = false
|
||||
local lang = false
|
||||
if (options["preferred_" .. track.type .. "_channels"] or "") ~= "" and
|
||||
preferred_or_equals(track, options["preferred_" .. track.type .. "_lang"], "lang",
|
||||
"lang_score") then
|
||||
channels = preferred(track, options["preferred_" .. track.type .. "_channels"],
|
||||
"demux-channel-count", "channels_score")
|
||||
pass = channels
|
||||
end
|
||||
if options["preferred_" .. track.type .. "_lang"] ~= "" then
|
||||
lang = preferred(track, options["preferred_" .. track.type .. "_lang"], "lang", "lang_score")
|
||||
end
|
||||
if (options["preferred_" .. track.type .. "_lang"] == "" and pass) or channels or lang or
|
||||
(track.external and track.lang == nil and
|
||||
(not tracks[track.type].best.external or tracks[track.type].best.lang == nil)) then
|
||||
tracks[track.type].best = track
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
for _type, track in pairs(tracks) do
|
||||
if next(track.best) ~= nil and track.best.id ~= track.selected then
|
||||
mp.set_property(_type:sub(1, 1) .. "id", track.best.id)
|
||||
if options.smart_keep and found_last[track.best.type] then
|
||||
last[track.best.type] = track.best
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function selected_tracks()
|
||||
local tracklist = mp.get_property_native("track-list")
|
||||
last = {}
|
||||
for _, track in ipairs(tracklist) do
|
||||
if track.selected then
|
||||
last[track.type] = track
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if options.hook then
|
||||
mp.add_hook("on_preloaded", 50, trackselect)
|
||||
else
|
||||
mp.register_event("file-loaded", trackselect)
|
||||
end
|
||||
|
||||
if options.smart_keep then
|
||||
mp.register_event("track-switched", selected_tracks)
|
||||
end
|
||||
@@ -1,218 +0,0 @@
|
||||
-- Copyright (c) 2021, Eisa AlAwadhi
|
||||
-- License: BSD 2-Clause License
|
||||
|
||||
-- Creator: Eisa AlAwadhi
|
||||
-- Project: UndoRedo
|
||||
-- Version: 2.2
|
||||
|
||||
local utils = require 'mp.utils'
|
||||
local msg = require 'mp.msg'
|
||||
local seconds = 0
|
||||
local countTimer = -1
|
||||
local seekTime = 0
|
||||
local seekNumber = 0
|
||||
local currentIndex = 0
|
||||
local seekTable = {}
|
||||
local seeking = 0
|
||||
local undoRedo = 0
|
||||
local pause = false
|
||||
seekTable[0] = 0
|
||||
|
||||
----------------------------USER CUSTOMIZATION SETTINGS-----------------------------------
|
||||
--These settings are for users to manually change some options in the script.
|
||||
--Keybinds can be defined in the bottom of the script.
|
||||
|
||||
local osd_messages = true --true is for displaying osd messages when actions occur, Change to false will disable all osd messages generated from this script
|
||||
|
||||
---------------------------END OF USER CUSTOMIZATION SETTINGS---------------------
|
||||
|
||||
local function prepareUndoRedo()
|
||||
if (pause == true) then
|
||||
seconds = seconds
|
||||
else
|
||||
seconds = seconds - 0.5
|
||||
end
|
||||
seekTable[currentIndex] = seekTable[currentIndex] + seconds
|
||||
seconds = 0
|
||||
end
|
||||
|
||||
local function getUndoRedo()
|
||||
if (seeking == 0) then
|
||||
prepareUndoRedo()
|
||||
|
||||
seekNumber = currentIndex + 1
|
||||
currentIndex = seekNumber
|
||||
seekTime = math.floor(mp.get_property_number('time-pos'))
|
||||
table.insert(seekTable, seekNumber, seekTime)
|
||||
|
||||
undoRedo = 0
|
||||
|
||||
elseif (seeking == 1) then
|
||||
seeking = 0
|
||||
end
|
||||
end
|
||||
|
||||
mp.register_event('file-loaded', function()
|
||||
filePath = mp.get_property('path')
|
||||
|
||||
timer = mp.add_periodic_timer(0.1, function()
|
||||
seconds = seconds + 0.1
|
||||
end)
|
||||
|
||||
if (pause == true) then
|
||||
timer:stop()
|
||||
else
|
||||
timer:resume()
|
||||
end
|
||||
|
||||
timer2 = mp.add_periodic_timer(0.1, function()
|
||||
countTimer = countTimer + 0.1
|
||||
|
||||
if (countTimer == 0.6) then
|
||||
timer:resume()
|
||||
getUndoRedo()
|
||||
end
|
||||
|
||||
end)
|
||||
|
||||
timer2:stop()
|
||||
end)
|
||||
|
||||
|
||||
mp.register_event('seek', function()
|
||||
countTimer = 0
|
||||
timer2:resume()
|
||||
timer:stop()
|
||||
end)
|
||||
|
||||
mp.observe_property('pause', 'bool', function(name, value)
|
||||
if value then
|
||||
if timer ~= nil then
|
||||
timer:stop()
|
||||
end
|
||||
pause = true
|
||||
else
|
||||
if timer ~= nil then
|
||||
timer:resume()
|
||||
end
|
||||
pause = false
|
||||
end
|
||||
end)
|
||||
|
||||
mp.register_event('end-file', function()
|
||||
if timer ~= nil then
|
||||
timer:kill()
|
||||
end
|
||||
if timer2 ~= nil then
|
||||
timer2:kill()
|
||||
end
|
||||
seekNumber = 0
|
||||
currentIndex = 0
|
||||
undoRedo = 0
|
||||
seconds = 0
|
||||
countTimer = -1
|
||||
seekTable[0] = 0
|
||||
end)
|
||||
|
||||
local function undo()
|
||||
if (filePath ~= nil) and (countTimer >= 0) and (countTimer < 0.6) and (seeking == 0) then
|
||||
timer2:stop()
|
||||
|
||||
getUndoRedo()
|
||||
|
||||
currentIndex = currentIndex - 1
|
||||
if (currentIndex < 0) then
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('No Undo Found')
|
||||
end
|
||||
currentIndex = 0
|
||||
msg.info('No undo found')
|
||||
else
|
||||
if (seekTable[currentIndex] < 0) then
|
||||
seekTable[currentIndex] = 0
|
||||
end
|
||||
|
||||
seeking = 1
|
||||
|
||||
mp.commandv('seek', seekTable[currentIndex], 'absolute', 'exact')
|
||||
|
||||
undoRedo = 1
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('Undo')
|
||||
end
|
||||
msg.info('Seeked using undo')
|
||||
end
|
||||
elseif (filePath ~= nil) and (currentIndex > 0) then
|
||||
|
||||
prepareUndoRedo()
|
||||
currentIndex = currentIndex - 1
|
||||
|
||||
if (seekTable[currentIndex] < 0) then
|
||||
seekTable[currentIndex] = 0
|
||||
end
|
||||
|
||||
seeking = 1
|
||||
mp.commandv('seek', seekTable[currentIndex], 'absolute', 'exact')
|
||||
|
||||
undoRedo = 1
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('Undo')
|
||||
end
|
||||
msg.info('Seeked using undo')
|
||||
elseif (filePath ~= nil) and (currentIndex == 0) then
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('No Undo Found')
|
||||
end
|
||||
msg.info('No undo found')
|
||||
end
|
||||
end
|
||||
|
||||
local function redo()
|
||||
if (filePath ~= nil) and (currentIndex < seekNumber) then
|
||||
|
||||
prepareUndoRedo()
|
||||
currentIndex = currentIndex + 1
|
||||
|
||||
if (seekTable[currentIndex] < 0) then
|
||||
seekTable[currentIndex] = 0
|
||||
end
|
||||
|
||||
seeking = 1
|
||||
mp.commandv('seek', seekTable[currentIndex], 'absolute', 'exact')
|
||||
|
||||
undoRedo = 0
|
||||
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('Redo')
|
||||
end
|
||||
msg.info('Seeked using redo')
|
||||
elseif (filePath ~= nil) and (currentIndex == seekNumber) then
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('No Redo Found')
|
||||
end
|
||||
msg.info('No redo found')
|
||||
end
|
||||
end
|
||||
|
||||
local function undoLoop()
|
||||
if (filePath ~= nil) and (undoRedo == 0) then
|
||||
undo()
|
||||
elseif (filePath ~= nil) and (undoRedo == 1) then
|
||||
redo()
|
||||
elseif (filePath ~= nil) and (countTimer == -1) then
|
||||
if (osd_messages == true) then
|
||||
mp.osd_message('No Undo Found')
|
||||
end
|
||||
msg.info('No undo found')
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
mp.add_key_binding("ctrl+z", "undo", undo)
|
||||
mp.add_key_binding("ctrl+Z", "undoCaps", undo)
|
||||
|
||||
mp.add_key_binding("ctrl+y", "redo", redo)
|
||||
mp.add_key_binding("ctrl+Y", "redoCaps", redo)
|
||||
|
||||
mp.add_key_binding("ctrl+alt+z", "undoLoop", undoLoop)
|
||||
mp.add_key_binding("ctrl+alt+Z", "undoLoopCaps", undoLoop)
|
||||
@@ -1,502 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
@@ -1,545 +0,0 @@
|
||||
<div align="center">
|
||||
<h1>uosc</h1>
|
||||
<p>
|
||||
Feature-rich minimalist proximity-based UI for <a href="https://mpv.io">MPV player</a>.
|
||||
</p>
|
||||
<br/>
|
||||
<a href="https://user-images.githubusercontent.com/47283320/195073006-bfa72bcc-89d2-4dc7-b8dc-f3c13273910c.webm"><img src="https://github.com/tomasklaen/uosc/assets/47283320/9f99f2ae-3b65-4935-8af3-8b80c605f022" alt="Preview screenshot"></a>
|
||||
</div>
|
||||
|
||||
Features:
|
||||
|
||||
- UI elements hide and show based on their proximity to cursor instead of every time mouse moves. This provides 100% control over when you see the UI and when you don't. Click on the preview above to see it in action.
|
||||
- When timeline is unused, it can minimize itself into a small discrete progress bar.
|
||||
- Build your own context menu with nesting support by editing your `input.conf` file.
|
||||
- Configurable controls bar.
|
||||
- Fast and efficient thumbnails with [thumbfast](https://github.com/po5/thumbfast) integration.
|
||||
- UIs for:
|
||||
- Selecting subtitle/audio/video track.
|
||||
- [Downloading subtitles](#download-subtitles) from [Open Subtitles](https://www.opensubtitles.com).
|
||||
- Loading external subtitles.
|
||||
- Selecting stream quality.
|
||||
- Quick directory and playlist navigation.
|
||||
- All menus are instantly searchable. Just start typing.
|
||||
- Mouse scroll wheel does multiple things depending on what is the cursor hovering over:
|
||||
- Timeline: seek by `timeline_step` seconds per scroll.
|
||||
- Volume bar: change volume by `volume_step` per scroll.
|
||||
- Speed bar: change speed by `speed_step` per scroll.
|
||||
- Just hovering video with no UI widget below cursor: your configured wheel bindings from `input.conf`.
|
||||
- Right click on volume or speed elements to reset them.
|
||||
- Transforming chapters into timeline ranges (the red portion of the timeline in the preview).
|
||||
- A lot of useful options and commands to bind keys to.
|
||||
- [API for 3rd party scripts](https://github.com/tomasklaen/uosc/wiki) to extend, or use uosc to render their menus.
|
||||
|
||||
[Changelog](https://github.com/tomasklaen/uosc/releases).
|
||||
|
||||
## Install
|
||||
|
||||
1. These commands will install or update **uosc** and place a default `uosc.conf` file into `script-opts` if it doesn't exist already.
|
||||
|
||||
### Windows
|
||||
|
||||
_Optional, needed to run a remote script the first time if not enabled already:_
|
||||
|
||||
```powershell
|
||||
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||||
```
|
||||
|
||||
Run:
|
||||
|
||||
```powershell
|
||||
irm https://raw.githubusercontent.com/tomasklaen/uosc/HEAD/installers/windows.ps1 | iex
|
||||
```
|
||||
|
||||
_**NOTE**: If this command is run in an mpv installation directory with `portable_config`, it'll install there instead of `AppData`._
|
||||
|
||||
_**NOTE2**: The downloaded archive might trigger false positives in some antiviruses. This is explained in [FAQ below](#why-is-the-release-reported-as-malicious-by-some-antiviruses)._
|
||||
|
||||
### Linux & macOS
|
||||
|
||||
_Requires **curl** and **unzip**._
|
||||
|
||||
```sh
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/tomasklaen/uosc/HEAD/installers/unix.sh)"
|
||||
```
|
||||
|
||||
On Linux, we try to detect what package manager variant of the config location you're using, with precedent being:
|
||||
|
||||
```
|
||||
~/.var/app/io.mpv.Mpv (flatpak)
|
||||
~/snap/mpv
|
||||
~/snap/mpv-wayland
|
||||
~/.config/mpv
|
||||
```
|
||||
|
||||
To install into any of these locations, make sure the ones above it don't exist.
|
||||
|
||||
### Manual
|
||||
|
||||
1. Download & extract [`uosc.zip`](https://github.com/tomasklaen/uosc/releases/latest/download/uosc.zip) into your mpv config directory. (_See the [documentation of mpv config locations](https://mpv.io/manual/master/#files)._)
|
||||
|
||||
2. If you don't have it already, download & extract [`uosc.conf`](https://github.com/tomasklaen/uosc/releases/latest/download/uosc.conf) into `script-opts` inside your mpv config directory. It contains all of uosc options along with their default values and documentation.
|
||||
|
||||
2. **OPTIONAL**: `mpv.conf` tweaks to better integrate with **uosc**:
|
||||
|
||||
```config
|
||||
# uosc provides seeking & volume indicators (via flash-timeline and flash-volume commands)
|
||||
# if you decide to use them, you don't need osd-bar
|
||||
osd-bar=no
|
||||
|
||||
# uosc will draw its own window controls and border if you disable window border
|
||||
border=no
|
||||
```
|
||||
|
||||
3. **OPTIONAL**: To have thumbnails in timeline, install [thumbfast](https://github.com/po5/thumbfast). No other step necessary, **uosc** integrates with it seamlessly.
|
||||
|
||||
4. **OPTIONAL**: If the UI feels sluggish/slow while playing video, you can remedy this _a bit_ by placing this in your `mpv.conf`:
|
||||
|
||||
```config
|
||||
video-sync=display-resample
|
||||
```
|
||||
|
||||
Though this does come at the cost of a little bit higher CPU/GPU load.
|
||||
|
||||
#### What is going on?
|
||||
|
||||
**uosc** places performance as one of its top priorities, but it might feel a bit sluggish because during a video playback, the UI rendering frequency is chained to its frame rate. To test this, you can pause the video which will switch refresh rate to be closer or match the frequency of your monitor, and the UI should feel smoother. This is mpv limitation, and not much we can do about it on our side.
|
||||
|
||||
#### Build instructions
|
||||
|
||||
To build ziggy (our utility binary) yourself, run:
|
||||
|
||||
```
|
||||
tools/build ziggy
|
||||
```
|
||||
|
||||
Which will run the `tools/build(.ps1)` script that builds it for each platform. It requires [go](https://go.dev/) to be installed. Source code is in `src/ziggy`.
|
||||
|
||||
## Options
|
||||
|
||||
All of the available **uosc** options with their default values are documented in [`uosc.conf`](https://github.com/tomasklaen/uosc/blob/HEAD/src/uosc.conf) file ([download](https://github.com/tomasklaen/uosc/releases/latest/download/uosc.conf)).
|
||||
|
||||
To change the font, **uosc** respects the mpv's `osd-font` configuration.
|
||||
|
||||
## Navigation
|
||||
|
||||
These bindings are active when any **uosc** menu is open (main menu, playlist, load/select subtitles,...):
|
||||
|
||||
- `up`, `down` - Select previous/next item.
|
||||
- `enter` - Activate item or submenu.
|
||||
- `bs` (backspace) - Activate parent menu.
|
||||
- `esc` - Close menu.
|
||||
- `wheel_up`, `wheel_down` - Scroll menu.
|
||||
- `pgup`, `pgdwn`, `home`, `end` - Self explanatory.
|
||||
- `ctrl+f` or `\` - In case `menu_type_to_search` config option is disabled, these two trigger the menu search instead.
|
||||
- `ctrl+backspace` - Delete search query by word.
|
||||
- `shift+backspace` - Clear search query.
|
||||
- Holding `alt` while activating an item should prevent closing the menu (this is just a guideline, not all menus behave this way).
|
||||
|
||||
Each menu can also add its own shortcuts and bindings for special actions on items/menu, such as `del` to delete a playlist item, `ctrl+up/down/pgup/pgdwn/home/end` to move it around, etc. These are usually also exposed as item action buttons for you to find out about them that way.
|
||||
|
||||
Click on a faded parent menu to go back to it.
|
||||
|
||||
## Commands
|
||||
|
||||
**uosc** provides various commands with useful features to bind your preferred keys to, or populate your menu with. These are all unbound by default.
|
||||
|
||||
To add a keybind to one of this commands, open your `input.conf` file and add one on a new line. The command syntax is `script-binding uosc/{command-name}`.
|
||||
|
||||
Example to bind the `tab` key to toggle the ui visibility:
|
||||
|
||||
```
|
||||
tab script-binding uosc/toggle-ui
|
||||
```
|
||||
|
||||
Available commands:
|
||||
|
||||
#### `toggle-ui`
|
||||
|
||||
Makes the whole UI visible until you call this command again. Useful for peeking remaining time and such while watching.
|
||||
|
||||
There's also a `toggle-elements <ids>` message you can send to toggle one or more specific elements by specifying their names separated by comma:
|
||||
|
||||
```
|
||||
script-message-to uosc toggle-elements timeline,speed
|
||||
```
|
||||
|
||||
Available element IDs: `timeline`, `controls`, `volume`, `top_bar`, `speed`
|
||||
|
||||
Under the hood, `toggle-ui` is using `toggle-elements`, and that is in turn using the `set-min-visibility <visibility> [<ids>]` message. `<visibility>` is a `0-1` floating point. Leave out `<ids>` to set it for all elements.
|
||||
|
||||
#### `toggle-progress`
|
||||
|
||||
Toggles the timeline progress mode on/off. Progress mode is an always visible thin version of timeline with no text labels. It can be configured using the `progress*` config options.
|
||||
|
||||
#### `toggle-title`
|
||||
|
||||
Toggles the top bar title between main and alternative title's. This can also be done by clicking on the top bar.
|
||||
|
||||
Only relevant if top bar is enabled, `top_bar_alt_title` is configured, and `top_bar_alt_title_place` is `toggle`.
|
||||
|
||||
#### `flash-ui`
|
||||
|
||||
Command(s) to briefly flash the whole UI. Elements are revealed for a second and then fade away.
|
||||
|
||||
To flash individual elements, you can use: `flash-timeline`, `flash-progress`, `flash-top-bar`, `flash-volume`, `flash-speed`, `flash-pause-indicator`, `decide-pause-indicator`
|
||||
|
||||
There's also a `flash-elements <ids>` message you can use to flash one or more specific elements. Example:
|
||||
|
||||
```
|
||||
script-message-to uosc flash-elements timeline,speed
|
||||
```
|
||||
|
||||
Available element IDs: `timeline`, `progress`, `controls`, `volume`, `top_bar`, `speed`, `pause_indicator`
|
||||
|
||||
This is useful in combination with other commands that modify values represented by flashed elements, for example: flashing volume element when changing the volume.
|
||||
|
||||
You can use it in your bindings like so:
|
||||
|
||||
```
|
||||
space cycle pause; script-binding uosc/flash-pause-indicator
|
||||
right seek 5
|
||||
left seek -5
|
||||
shift+right seek 30; script-binding uosc/flash-timeline
|
||||
shift+left seek -30; script-binding uosc/flash-timeline
|
||||
m no-osd cycle mute; script-binding uosc/flash-volume
|
||||
up no-osd add volume 10; script-binding uosc/flash-volume
|
||||
down no-osd add volume -10; script-binding uosc/flash-volume
|
||||
[ no-osd add speed -0.25; script-binding uosc/flash-speed
|
||||
] no-osd add speed 0.25; script-binding uosc/flash-speed
|
||||
\ no-osd set speed 1; script-binding uosc/flash-speed
|
||||
> script-binding uosc/next; script-message-to uosc flash-elements top_bar,timeline
|
||||
< script-binding uosc/prev; script-message-to uosc flash-elements top_bar,timeline
|
||||
```
|
||||
|
||||
Case for `(flash/decide)-pause-indicator`: mpv handles frame stepping forward by briefly resuming the video, which causes pause indicator to flash, and none likes that when they are trying to compare frames. The solution is to enable manual pause indicator (`pause_indicator=manual`) and use `flash-pause-indicator` (for a brief flash) or `decide-pause-indicator` (for a static indicator) as a secondary command to appropriate bindings.
|
||||
|
||||
#### `menu`
|
||||
|
||||
Toggles default menu. Read [Menu](#menu-1) section below to find out how to fill it up with items you want there.
|
||||
|
||||
Note: there's also a `menu-blurred` command that opens a menu without pre-selecting the 1st item, suitable for commands triggered with a mouse, such as control bar buttons.
|
||||
|
||||
#### `subtitles`, `audio`, `video`
|
||||
|
||||
Menus to select a track of a requested type.
|
||||
|
||||
#### `load-subtitles`, `load-audio`, `load-video`
|
||||
|
||||
Displays a file explorer with directory navigation to load a requested track type.
|
||||
|
||||
For subtitles, the explorer only displays file types defined in `subtitle_types` option. For audio and video, the ones defined in `video_types` and `audio_types` are displayed.
|
||||
|
||||
#### `download-subtitles`
|
||||
|
||||
A menu to search and download subtitles from [Open Subtitles](https://www.opensubtitles.com). It can also be opened by selecting the **Download** option in `subtitles` menu.
|
||||
|
||||
We fetch results for languages defined in *uosc**'s `languages` option, which defaults to your mpv `slang` configuration.
|
||||
|
||||
We also hash the current file and send the hash to Open Subtitles so you can search even with empty query and if your file is known, you'll get subtitles exactly for it.
|
||||
|
||||
Subtitles will be downloaded to the same directory as currently opened file, or `~~/subtitles` (folder in your mpv config directory) if playing a URL.
|
||||
|
||||
Current Open Subtitles limit for unauthenticated requests is **5 download per day**, but searching is unlimited. Authentication raises downloads to 10, which doesn't feel like it's worth the effort of implementing it, so currently there's no way to authenticate. 5 downloads per day seems sufficient for most use cases anyway, as if you need more, you should probably just deal with it in the browser beforehand so you don't have to fiddle with the subtitle downloading menu every time you start playing a new file.
|
||||
|
||||
#### `playlist`
|
||||
|
||||
Playlist navigation.
|
||||
|
||||
#### `chapters`
|
||||
|
||||
Chapter navigation.
|
||||
|
||||
#### `editions`
|
||||
|
||||
Editions menu. Editions are different video cuts available in some mkv files.
|
||||
|
||||
#### `stream-quality`
|
||||
|
||||
Switch stream quality. This is just a basic re-assignment of `ytdl-format` mpv property from predefined options (configurable with `stream_quality_options`) and video reload, there is no fetching of available formats going on.
|
||||
|
||||
#### `keybinds`
|
||||
|
||||
Displays a command palette menu with all currently active keybindings (defined in your `input.conf` file, or registered by scripts). Useful to check what command is bound to what shortcut, or the other way around.
|
||||
|
||||
#### `open-file`
|
||||
|
||||
Open file menu. Browsing starts in current file directory, or user directory when file not available. The explorer only displays file types defined in the `video_types`, `audio_types`, and `image_types` options.
|
||||
|
||||
You can use `alt+enter` or `alt+click` to load the whole directory in mpv instead of navigating its contents.
|
||||
You can also use `ctrl+enter` or `ctrl+click` to append a file or directory to the playlist.
|
||||
|
||||
#### `items`
|
||||
|
||||
Opens `playlist` menu when playlist exists, or `open-file` menu otherwise.
|
||||
|
||||
#### `next`, `prev`
|
||||
|
||||
Open next/previous item in playlist, or file in current directory when there is no playlist. Enable `loop-playlist` to loop around.
|
||||
|
||||
#### `first`, `last`
|
||||
|
||||
Open first/last item in playlist, or file in current directory when there is no playlist.
|
||||
|
||||
#### `next-file`, `prev-file`
|
||||
|
||||
Open next/prev file in current directory. Enable `loop-playlist` to loop around
|
||||
|
||||
#### `first-file`, `last-file`
|
||||
|
||||
Open first/last file in current directory.
|
||||
|
||||
#### `shuffle`
|
||||
|
||||
Toggle uosc's playlist/directory shuffle mode on or off.
|
||||
|
||||
This simply makes the next selected playlist or directory item be random, like the shuffle function of most other players. This does not modify the actual playlist in any way, in contrast to the mpv built-in command `playlist-shuffle`.
|
||||
|
||||
#### `delete-file-next`
|
||||
|
||||
Delete currently playing file and start next file in playlist (if there is a playlist) or current directory.
|
||||
|
||||
Useful when watching episodic content.
|
||||
|
||||
#### `delete-file-quit`
|
||||
|
||||
Delete currently playing file and quit mpv.
|
||||
|
||||
#### `show-in-directory`
|
||||
|
||||
Show current file in your operating systems' file explorer.
|
||||
|
||||
#### `audio-device`
|
||||
|
||||
Switch audio output device.
|
||||
|
||||
#### `paste`, `paste-to-open`, `paste-to-playlist`
|
||||
|
||||
Commands to paste path or URL in clipboard to either open immediately, or append to playlist.
|
||||
|
||||
`paste` will add to playlist if there's any (`playlist-count > 1`), or open immediately otherwise.
|
||||
|
||||
`paste-to-playlist` will also open the pasted file if mpv is idle (no file open).
|
||||
|
||||
Note: there are alternative ways to open stuff from clipboard without the need to bind these commands:
|
||||
|
||||
- When `open-file` menu is open → `ctrl+v` to open path/URL in clipboard.
|
||||
- When `playlist` menu is open → `ctrl+v` to add path/URL in clipboard to playlist.
|
||||
- When any track menu (`subtitles`, `audio`, `video`) is open → `ctrl+v` to add path/URL in clipboard as a new track.
|
||||
|
||||
#### `copy-to-clipboard`
|
||||
|
||||
Copy currently open path or URL to clipboard.
|
||||
|
||||
Additionally, you can also press `ctrl+c` to copy path of a selected item in `playlist` or all directory listing menus.
|
||||
|
||||
#### `open-config-directory`
|
||||
|
||||
Open directory with `mpv.conf` in file explorer.
|
||||
|
||||
#### `update`
|
||||
|
||||
Updates uosc to the latest stable release right from the UI. Available in the "Utils" section of default menu .
|
||||
|
||||
Supported environments:
|
||||
|
||||
| Env | Works | Note |
|
||||
|:---|:---:|---|
|
||||
| Windows | ✔️ | _Not tested on older PowerShell versions. You might need to `Set-ExecutionPolicy` from the install instructions and install with the terminal command first._ |
|
||||
| Linux (apt) | ✔️ | |
|
||||
| Linux (flatpak) | ✔️ | |
|
||||
| Linux (snap) | ❌ | We're not allowed to access commands like `curl` even if they're installed. (Or at least this is what I think the issue is.) |
|
||||
| MacOS | ❌ | `(23) Failed writing body` error, whatever that means. |
|
||||
|
||||
If you know about a solution to fix self-updater for any of the currently broken environments, please make an issue/PR and share it with us!
|
||||
|
||||
**Note:** The terminal commands from install instructions still work fine everywhere, so you can use those to update instead.
|
||||
|
||||
## Menu
|
||||
|
||||
**uosc** provides a way to build, display, and use your own menu. By default it displays a pre-configured menu with common actions.
|
||||
|
||||
To display the menu, add **uosc**'s `menu` command to a key of your choice. Example to bind it to **right click** and **menu** buttons:
|
||||
|
||||
```
|
||||
mbtn_right script-binding uosc/menu
|
||||
menu script-binding uosc/menu
|
||||
```
|
||||
|
||||
To display a submenu, send a `show-submenu` message to **uosc** with first parameter specifying menu ID. Example:
|
||||
|
||||
```
|
||||
R script-message-to uosc show-submenu "Utils > Aspect ratio"
|
||||
```
|
||||
|
||||
Note: The **menu** key is the one nobody uses between the **win** and **right_ctrl** keys (it might not be on your keyboard).
|
||||
|
||||
### Adding items to menu
|
||||
|
||||
Adding items to menu is facilitated by commenting your keybinds in `input.conf` with special comment syntax. **uosc** will than parse this file and build the context menu out of it.
|
||||
|
||||
#### Syntax
|
||||
|
||||
Comment has to be at the end of the line with the binding.
|
||||
|
||||
Comment has to start with `#!` (or `#menu:`).
|
||||
|
||||
Text after `#!` is an item title.
|
||||
|
||||
Title can be split with `>` to define nested menus. There is no limit on nesting.
|
||||
|
||||
Use `#` instead of a key if you don't necessarily want to bind a key to a command, but still want it in the menu.
|
||||
|
||||
If multiple menu items with the same command are defined, **uosc** will concatenate them into one item and just display all available shortcuts as that items' hint, while using the title of the first defined item.
|
||||
|
||||
Menu items are displayed in the order they are defined in `input.conf` file.
|
||||
|
||||
The command `ignore` does not result in a menu item, however all the folders leading up to it will still be created.
|
||||
This allows more flexible structuring of the `input.conf` file.
|
||||
|
||||
#### Examples
|
||||
|
||||
Adds a menu item to load subtitles:
|
||||
|
||||
```
|
||||
alt+s script-binding uosc/load-subtitles #! Load subtitles
|
||||
```
|
||||
|
||||
Adds a stay-on-top toggle with no keybind:
|
||||
|
||||
```
|
||||
# cycle ontop #! Toggle on-top
|
||||
```
|
||||
|
||||
Define and display multiple shortcuts in single items' menu hint (items with same command get concatenated):
|
||||
|
||||
```
|
||||
esc quit #! Quit
|
||||
q quit #!
|
||||
```
|
||||
|
||||
Define a folder without defining any of its contents:
|
||||
|
||||
```
|
||||
# ignore #! Folder title >
|
||||
```
|
||||
|
||||
Define an un-selectable, muted, and italic title item by using `#` as key, and omitting the command:
|
||||
|
||||
```
|
||||
# #! Title
|
||||
# #! Section > Title
|
||||
```
|
||||
|
||||
Define a separator between previous and next items by doing the same, but using `---` as title:
|
||||
|
||||
```
|
||||
# #! ---
|
||||
# #! Section > ---
|
||||
```
|
||||
|
||||
Example context menu:
|
||||
|
||||
This is the default pre-configured menu if none is defined in your `input.conf`, but with added shortcuts. To both pause & move the window with left mouse button, so that you can have the menu on the right one, enable `click_threshold` in `uosc.conf` (see default `uosc.conf` for example/docs).
|
||||
|
||||
```
|
||||
menu script-binding uosc/menu
|
||||
mbtn_right script-binding uosc/menu
|
||||
s script-binding uosc/subtitles #! Subtitles
|
||||
a script-binding uosc/audio #! Audio tracks
|
||||
q script-binding uosc/stream-quality #! Stream quality
|
||||
p script-binding uosc/items #! Playlist
|
||||
c script-binding uosc/chapters #! Chapters
|
||||
> script-binding uosc/next #! Navigation > Next
|
||||
< script-binding uosc/prev #! Navigation > Prev
|
||||
alt+> script-binding uosc/delete-file-next #! Navigation > Delete file & Next
|
||||
alt+< script-binding uosc/delete-file-prev #! Navigation > Delete file & Prev
|
||||
alt+esc script-binding uosc/delete-file-quit #! Navigation > Delete file & Quit
|
||||
o script-binding uosc/open-file #! Navigation > Open file
|
||||
# set video-aspect-override "-1" #! Utils > Aspect ratio > Default
|
||||
# set video-aspect-override "16:9" #! Utils > Aspect ratio > 16:9
|
||||
# set video-aspect-override "4:3" #! Utils > Aspect ratio > 4:3
|
||||
# set video-aspect-override "2.35:1" #! Utils > Aspect ratio > 2.35:1
|
||||
# script-binding uosc/audio-device #! Utils > Audio devices
|
||||
# script-binding uosc/editions #! Utils > Editions
|
||||
ctrl+s async screenshot #! Utils > Screenshot
|
||||
alt+i script-binding uosc/keybinds #! Utils > Key bindings
|
||||
O script-binding uosc/show-in-directory #! Utils > Show in directory
|
||||
# script-binding uosc/open-config-directory #! Utils > Open config directory
|
||||
# script-binding uosc/update #! Utils > Update uosc
|
||||
esc quit #! Quit
|
||||
```
|
||||
|
||||
To see all the commands you can bind keys or menu items to, refer to [mpv's list of input commands documentation](https://mpv.io/manual/master/#list-of-input-commands).
|
||||
|
||||
## Messages
|
||||
|
||||
**uosc** listens on some messages that can be sent with `script-message-to uosc` command. Example:
|
||||
|
||||
```
|
||||
R script-message-to uosc show-submenu "Utils > Aspect ratio"
|
||||
```
|
||||
|
||||
### `show-submenu <menu_id>`, `show-submenu-blurred <menu_id>`
|
||||
|
||||
Opens one of the submenus defined in `input.conf` (read on how to build those in the Menu documentation above). To prevent 1st item being preselected, use `show-submenu-blurred` instead.
|
||||
|
||||
Parameters
|
||||
|
||||
##### `<menu_id>`
|
||||
|
||||
ID (title) of the submenu, including `>` subsections as defined in `input.conf`. It has to be match the title exactly.
|
||||
|
||||
## Scripting API
|
||||
|
||||
3rd party script developers can use our messaging API to integrate with uosc, or use it to render their menus. Documentation is available in [uosc Wiki](https://github.com/tomasklaen/uosc/wiki).
|
||||
|
||||
## Contributing
|
||||
|
||||
### Localization
|
||||
|
||||
If you want to help localizing uosc by either adding a new locale or fixing one that is not up to date, start by running this while in the repository root:
|
||||
|
||||
```
|
||||
tools/intl languagecode
|
||||
```
|
||||
|
||||
`languagecode` can be any existing locale in `src/uosc/intl/` directory, or any [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag). If it doesn't exist yet, the `intl` tool will create it.
|
||||
|
||||
This will parse the codebase for localization strings and use them to either update existing locale by removing unused and setting untranslated strings to `null`, or create a new one with all `null` strings.
|
||||
|
||||
You can then navigate to `src/uosc/intl/languagecode.json` and start translating.
|
||||
|
||||
### Setting up binaries
|
||||
|
||||
If you want to test or work on something that involves ziggy (our multitool binary, currently handles searching & downloading subtitles), you first need to build it with:
|
||||
|
||||
```
|
||||
tools/build ziggy
|
||||
```
|
||||
|
||||
This requires [`go`](https://go.dev/dl/) to be installed and in path. If you don't want to bother with installing go, and there were no changes to ziggy, you can just use the binaries from [latest release](https://github.com/tomasklaen/uosc/releases/latest/download/uosc.zip). Place folder `scripts/uosc/bin` from `uosc.zip` into `src/uosc/bin`.
|
||||
|
||||
## FAQ
|
||||
|
||||
#### Why is the release zip size in megabytes? Isn't this just a lua script?
|
||||
|
||||
We are limited in what we can do in mpv's lua scripting environment. To work around this, we include a binary tool (one for each platform), that we call to handle stuff we can't do in lua. Currently this means searching & downloading subtitles, accessing clipboard data, and in future might improve self updating, and potentially other things.
|
||||
|
||||
Other scripts usually choose to go the route of adding python scripts and requiring users to install the runtime. I don't like this as I want the installation process to be as seamless and as painless as possible. I also don't want to contribute to potential python version mismatch issues, because one tool depends on 2.7, other latest 3, and this one 3.9 only and no newer (real world scenario that happened to me), now have fun reconciling this. Depending on external runtimes can be a mess, and shipping a stable, tiny, and fast binary that users don't even have to know about is imo more preferable than having unstable external dependencies and additional installation steps that force everyone to install and manage hundreds of megabytes big runtimes in global `PATH`.
|
||||
|
||||
#### Why don't you have `uosc-{platform}.zip` releases and only include binaries for the concerned platform in each?
|
||||
|
||||
Then you wouldn't be able to sync your mpv config between platforms and everything _just work_.
|
||||
|
||||
#### Why is the release reported as malicious by some antiviruses?
|
||||
|
||||
Some antiviruses find our binaries suspicious due to the way go packages them. This is a known issue with all go binaries (https://go.dev/doc/faq#virus). I think the only way to solve that would be to sign them (not 100% sure though), but I'm not paying to work on free stuff. If anyone is bothered by this, and would be willing to donate a code signing certificate, let me know.
|
||||
|
||||
If you want to check the binaries are safe, the code is in `src/ziggy`, and you can build them yourself by running `tools/build ziggy` in the repository root.
|
||||
|
||||
We might eventually rewrite it in something else.
|
||||
|
||||
#### Why _uosc_?
|
||||
|
||||
It stood for micro osc as it used to render just a couple rectangles before it grew to what it is today. And now it means a minimalist UI design direction where everything is out of your way until needed.
|
||||
@@ -1,405 +0,0 @@
|
||||
{
|
||||
"a": "阿啊呵腌嗄锕錒",
|
||||
"ai": "爱唉挨碍哀矮埃哎艾癌隘蔼嗳皑霭捱暧瑷娭砹锿嫒薆䔽㤅鴱㗨藹㕌磑礙硋䑂愛壒㘷叆靉䨠毐塧靄璦㱯䶣瞹䀳濭溰溾曖昹啀噯嘊㗒㝶䝽敱敳賹懓懝㢊銰鑀鱫鎄皧皚馤躷䅬㿄凒娾嬡伌㑸僾餲䬵譪譺",
|
||||
"an": "安按案暗岸氨俺铵胺鞍黯庵桉谙鮟鹌咹犴广厂埯揞菴蓭荌萻葊隌㸩䮗㱘鵪豻貋腤雸堓垵䎨玵䁆洝晻唵啽㽢罯㟁屵䯥峖鞌䅁錌銨䅖馣痷鶕闇媕㜝盫儑侒䬓偣韽盦䎏䜙諳誝",
|
||||
"ang": "昂肮盎䩕䒢䭹䭺䀚昻㦹㼜骯岇醠㭿枊䍩仰",
|
||||
"ao": "傲熬凹遨嗷奥拗澳袄懊坳敖翱螯鳌鏖岙媪鏊骜艹聱獒廒蔜芺隞隩䮯厫磝䦋奡镺䐿䞝垇㘬墺㘭璈嗸嶅䫨㥿驁鰲鷔䵅摮嫯鼇謷䁱滶澚㕭軪䯠㟼㠂㠗岰慠㤇爊襖䥝獓翶擙抝䚫梎柪翺嶴䴈奧㿰㜜媼㜩㑃謸䜒",
|
||||
"ba": "把八吧巴爸罢拔霸坝叭芭扒跋疤靶耙粑笆钯伯茇菝灞岜鲅捌魃䩻䩗夿䳊䃻㔜胈鼥壩垻豝玐㶚蚆㖠跁䟦哵罷軷㞎炦鈀鲃䥯䰾鮁䳁䱝魞釟抜㧊扷覇柭欛朳叐矲䆉羓䇑丷妭颰癹仈弝詙",
|
||||
"bai": "白百摆败拜柏呗掰伯稗捭佰薭䒔㼣㓦瓸㗗㗑贁㠔䢙敗韛粨庍粺䙓襬猈拝㼟擺䳆挀㿟㧳栢䴽竡絔",
|
||||
"ban": "办般半班板伴版搬斑扮颁瓣拌扳绊坂阪舨瘢柈钣癍靽䕰㚘瓪湴昄蝂岅肦怑粄䉽魬鈑鉡㩯㸞秚褩螌辦㪵闆辬姅頒鳻攽䬳絆斒",
|
||||
"bang": "帮邦膀棒傍榜绑梆磅蚌旁镑谤浜蒡䧛䂜幚邫垹鞤幇幫䎧塝玤蜯䖫䟺髈䰷鎊挷捠搒㯁㭋㮄棓牓稖艕㔙㾦綁縍謗彭",
|
||||
"bao": "保报包胞宝暴抱薄剥炮爆饱堡孢豹瀑刨鲍苞雹葆曝褒鸨褓煲龅趵勹蕔菢藵犦髱䨌䨔㙅靌報堢㙸虣珤㻄齙㵡㿺曓㫧蚫骲鳵怉䎂寳寚寶䴐宲窇䥤鑤㲒鮑䳈鉋铇勽䤖枹䈏㲏忁笣䪨闁媬儤賲䳰佨飹飽䭋駂鴇剝緥袌裦襃",
|
||||
"bei": "被北备背倍悲贝杯辈臂卑碑呗狈惫钡悖孛蓓焙陂碚褙勃鞴鐾庳鹎邶䔒鞁藣苝犕㸬㸽牬盃愂䎬䎱琲㰆珼䁅輩䩀㻗㶔昁蛽䠙唄䡶㽡郥骳貝㤳糒禙鋇䰽狽㔨鉳㼎鵯揹柸桮梖椑㸢㓈㾱鄁軰㛝僃備憊㷶偹俻偝㣁䋳誖",
|
||||
"ben": "本奔笨苯贲坌夯畚锛奙逩坋㱵渀漰泍㤓㡷錛撪㨧捹桳㮺翉楍栟犇倴䬱",
|
||||
"beng": "崩蹦绷甭迸泵嘣甏菶䩬鞛奟䳞埲䨻塴埄琫㱶琣嗙嵭㷯䙀祊鏰镚甮揼逬䭰痭閍伻㑟綳䋽繃絣蚌",
|
||||
"bi": "比必笔毕避壁秘闭鼻币彼逼辟臂泌碧弊蔽鄙毙弼痹庇陛璧婢敝匕俾裨荸吡哔蓖贲襞铋秕毖愎髀篦睥畀妣筚薜萆芘荜滗濞跸嬖狴箅舭鞸䩛蓽㳼萞苾䕗䎵聛䧗驆駜䮡夶髲䭮觱㗉皕䏢腷毴貏䏶賁堛䟆㙄㘩㻫豍珌㱸㻶㹃睤䁹䀣湢滭幤㵥獘斃鄨幣鷩潷䨆沘㡀畢鷝㪤䖩螕蜌啚蹕䟤躃䠋嗶咇罼奰㘠貱䯗畁㡙㠲贔赑怶愊韠䪐躄繴㵨鼊怭屄邲煏熚廦䊧粃襅袐襣禆䃾鲾鏎鐴鉍鰏鮅獙鎞㧙魓㪏柀楅䣥㯇㮿柲榌㮰䵄朼梐䫁篳馝䇷箆筆䄶閉閇㓖閟痺䦘疕疪㚰妼鵖嬶佊偪朇佖䬛䫾饆飶㢰䋔㢶弻彃縪鄪䌟綼㿫毞坒粊㢸䘡詖诐佛拂",
|
||||
"bian": "变便边遍编辩辨鞭扁贬辫蝙匾卞鳊汴砭弁苄碥忭煸褊窆笾缏䒪鞕䛒藊萹䪻鴘㺹玣㻞䁵㳎覍汳㝸㴜昪䡢峅貶惼炞糄鯾鯿獱猵鍽㣐抃揙㭓牑邉邊釆籩艑䉸箯徧稨閞㵷㦚辡辧辮辯緶編㲢甂変諚變",
|
||||
"biao": "表标彪裱婊飚飙镖膘鳔俵骠镳飑髟瘭䔸藨蔈骉驫飆猋嫑磦脿爂臕墂㯱滮淲瀌贆幖㟽㠒飊熛褾錶鑣鏢㧼摽㯹標檦穮儦飇颩颮颷飈諘謤䞄",
|
||||
"bie": "别憋瘪鳖蹩虌莂䏟蟞鱉龞彆鼈蛂䠥別襒䋢徶䭱䉲癟㿜㢼",
|
||||
"bin": "宾滨斌彬濒缤鬓槟殡摈膑邠玢份频髌豳镔傧髩鬢鬂臏䐔霦豩璸瑸殯頻虨瀕濱濵汃髕賓顮䚔賔鑌擯檳梹椕儐繽",
|
||||
"bing": "并病兵冰饼丙柄炳秉禀屏槟摒邴鞆鞞苪䓑陃靐垪眪昞昺蛃䗒怲庰寎窉鈵鮩鋲鉼掤抦㨀棅栤䴵幷䈂並竝偋倂併仒傡餠餅仌䋑氷稟誁",
|
||||
"bo": "波伯播剥博玻勃拨柏脖卜搏泊驳膊舶簿渤簸菠箔跛薄钵铂僰帛礴饽钹亳啵檗鹁踣擘䪇葧萡蘗蔔㹀䂍䮂䮀駁駮驋礡盋䰊䫊㝿砵䶈肑胉䑈䞳郣鵓㪍䢌㱟碆浡㴾溊淿謈㬧㬍䗚䟛蹳嚗㗘㖕䯋髉髆㟑嶓懪孹糪愽㶿煿袹襮袯䙏襏鑮䥬鈸鋍鲌馎鮊鱍鉑鎛镈鉢狛猼瓟瓝㩭挬㩧撥欂桲秡䢪缽簙牔䭯馛馞䒄艊䍨䪬䍸癷侼癶仢僠䭦䬪餑餺紴䊿袰譒佛",
|
||||
"bu": "不部步布补捕卜哺埔怖簿埠钚卟逋晡钸醭瓿䪁荹蔀䏽㘵埗㙛㻉歨歩堡䴝鳪䀯㳍吥咘踄轐峬䝵䪔悑庯䊇廍補鈈鈽錻鸔抪捗㨐柨鵏䴺䍌䒈䑰篰㾟勏郶䳝㚴佈䬏餔餢䋠誧",
|
||||
"ca": "擦嚓礤遪礸䟃䵽攃",
|
||||
"cai": "才采材财彩菜裁猜蔡踩睬䰂毝䐆埰䞗啋跴財㥒寀採棌䴭䣋㒲婇倸偲䌨綵䌽纔縩",
|
||||
"can": "参残餐惨蚕灿掺惭璨孱粲骖黪薒䣟朁蠶叄參㕘叅驂䏼蝅蠺䗞䘉殘㱚㻮㣓䝳㛑澯湌㘔喰㽩黲慙䳻㨻㥇憯慘慚㦧燦爘䙁䗝㺑穇䅟䑶㿊䍼飡䫮㜗嬠傪儏䬫謲䛹",
|
||||
"cang": "藏苍仓舱沧臧伧蒼㶓㵴濸滄螥嵢賶鑶獊欌艙䅮凔仺鸧傖倉鶬䢢",
|
||||
"cao": "草操曹槽糙嘈漕螬艚蓸䏆艸騲䐬鼜䎭曺鄵嶆愺慅慒懆褿襙䄚鏪撡㯥肏䒑㜖",
|
||||
"ce": "策测侧册厕栅恻拆䔴荝萴萗蓛厠䜺測畟冊㥽夨惻憡廁粣䊂㨲拺㩍敇筴䇲䈟笧筞簎箣側",
|
||||
"cen": "参岑涔䃡䨙埁㻸嵾䯔㞥䲋䤁䅾篸笒",
|
||||
"ceng": "层曾蹭噌驓䁬㬝嶒層䉕㣒竲",
|
||||
"cha": "差察查茶插叉诧岔刹喳茬嚓楂杈碴汊搽衩姹槎馇镲锸猹檫靫䕓䓭䒲䰈䑘垞䶪䁟嗏䟕蹅嵖㣾㤞㢒㢎㢉䆛銟䲦䤩鑔鍤扠剎挿揷査臿䊬秅䑡艖䡨疀奼侘偛餷詧紁㪯詫㛳㫅",
|
||||
"chai": "差柴拆钗豺侪虿瘥茝芆䓱蠆䘍袃肞㼮祡㳗囆喍釵犲㾹儕㑪訍",
|
||||
"chan": "产颤阐缠禅铲掺潺馋蝉搀蟾忏谄孱谗巉廛羼崭蒇骣觇澶躔冁婵单剗蕆䩶韂䵐苂䧯㹌䣑硟䐮䑎壥㙻㶣㙴刬䀡覘㢟䂁湹瀍瀺潹㵌灛滻浐㬄蟐蟬螹旵䠨囅丳嚵䡲磛䡪幝幨辿嵼懴䪜㦃懺煘鄽㢆燀裧襜䥀酁劖毚䤫䱿鑱镵㹽鋋鋓獑㺥鏟摻摲攙摌醦䤘䊲棎欃梴㯆䴼㸥艬簅闡閳産剷嬋儳饞儃緾繟纏纒產譂顫諂䜛讒誗讇斺",
|
||||
"chang": "长常场厂唱昌肠偿尝倡畅倘敞淌猖怅嫦娼氅菖昶徜鲳惝苌鬯阊伥萇䩨䕋長䯴镸瓺兏厰腸膓㙊場鼚塲瑺瑒琩玚仧淐甞嘗㦂䗅暢㫤䠆䠀嚐畼悵韔廠焻裮鋹鲿錩锠鱨鯧椙閶倀仩僘償誯裳",
|
||||
"chao": "朝超潮吵巢抄嘲剿炒钞绰晁焯耖怊焣㷅䏚䎐眧巣漅鼌鼂罺轈巐䬤煼㶤窲窼觘鈔䰫樔麨牊䄻鄛欩仯仦弨謿訬",
|
||||
"che": "车彻撤扯澈掣尺屮砗坼莗㱌䧪聅䨁硨䞣䰩頙迠瞮䁤㵔蛼㬚唓車㥉爡烢䚢撦㨋硩㿭㯙䑲䒆勶徹㾝偖伡俥㔭䋲䛸䜠",
|
||||
"chen": "称陈沉晨臣尘趁衬辰嗔琛抻伧谶碜宸郴谌忱龀榇茞蔯莀䢻莐薼䒞陳螴敶磣䣅㲀㫳䢈敐硶䫖夦䢅䐜墋趂霃齓齔瞋㴴鷐迧曟踸䟢趻㕴嚫軙贂賝䞋愖煁麎塵襯䆣鍖鈂䤟捵栕樄桭梣棽櫬䚘䑣瘎疢㽸㧱儭諶䜟謓訦諃讖沈",
|
||||
"cheng": "成程称城承诚呈乘惩撑澄秤橙逞丞骋盛瞠铛塍柽埕琤净抢蛏裎铖酲枨荿䔲䧕阷㞼騁䮪騬郕䫆㼩碀脭爯頳䞓赪赬塖堘珹靗珵睈䀕䁎洆浾泟澂㲂牚瀓溗蟶晿䗊畻峸憆悜憕庱宬窚竀䆑䆵䆸䄇鋮鐣鏿鯎掁摚撐挰㨃揨檉棖檙橕棦朾乗筬稱罉穪䇸徎懲娍偁侱㐼饓僜絾緽誠椉",
|
||||
"chi": "吃持池尺赤迟斥齿翅驰耻痴弛炽哧侈嗤叱敕啻饬笞踟柢呎茌褫鸱勅墀蚩蚩豉眵螭魑匙篪瘛媸傺荎䠠㔑䔟䧝妛恥欼馳䮻䮈肔胵腟胣䐤趩赿䞾灻垑漦雴鵄䜵䜻彨彲銐殦䶔齝齒歯瞝懘㳏湁蚇蚳喫噄䟷翤叺㽚㞿㞴貾㟂恜翄㓾遲翨杘遅遟憏迡烾㢁㶴粚㡿㢋熾裭䙙袳鴟㱀䤲鍉卶鉹㺈鉓瓻䰡抶摛攡㮛鶒慗鷘遫㓼麶勑䳵竾䑛䇪箎筂䈕䇼黐䪧痸癡侙䶵伬䬜飭㒆㘜䊼絺㢮訵㙜䜄謘袲誺䛂",
|
||||
"chong": "重充冲虫崇涌宠憧忡舂铳种茺艟隀憃埫珫沖漴浺㳘蟲蝩蹖嘃罿㓽翀爞崈寵褈銃摏揰㧤䳯䖝衝㹐緟䌬",
|
||||
"chou": "抽筹仇丑愁臭酬畴瞅绸稠踌惆帱瘳俦雠䓓薵菗䔏遚魗㦞㐜殠矁㵞躊吜疇幬㤽懤燽䊭裯䲖鮘㿧㩅皗搊㨶梼檮醻酧醜椆杽栦籌䇺臰篘䪮嬦㛶丒儔䀺偢犨讐雔雦犫讎䌧綢紬䌷絒詶",
|
||||
"chu": "出处除初础助楚触畜储厨锄橱雏躇矗搐刍蜍怵滁黜绌杵蹰亍憷樗楮蒢蒭䢺㔘欪䧁䮞犓㕑㕏礎貙臅㙇埱趎耡䎤㼥䎝豠豖珿䜴璴齣齭齼敊䖏處泏濋㶆滀蟵䟞䠧躕䟣嘼㗰歜㡡幮岀㤕㤘廚䊰䙘䙕禇鶵芻雛鋤鉏㐥觸㹼摴斶櫉櫥䠂椘檚榋篨䅳処䦌竐竌閦媰俶儊儲傗絀諔鄐",
|
||||
"chuai": "揣啜踹膪搋膗㪜㪓䦤䦟䦷",
|
||||
"chuan": "传船穿川串喘椽氚钏舛遄舡巛荈堾玔瑏㱛䁣汌暷踳圌輲歂㼷賗釧猭㯌篅舩僢傳剶鶨",
|
||||
"chuang": "创床窗闯疮怆磢䃥䚎刱䎫㵂噇䡴㡖愴窓窻摐牎牕䇬剙剏闖䚒牀瘡刅傸䭚創幢",
|
||||
"chui": "吹垂锤椎炊捶槌陲棰菙㝽腄䞼䶴㓃錘鎚搥桘㩾䳠䍋埀䄲箠㥨龡倕顀",
|
||||
"chun": "春纯唇醇蠢淳椿莼鹑蝽䔚䓐萶萅蓴蒓陙㸪犉脣䫃惷䐏䏝䐇䏛旾瑃睶㵮浱漘滣湻暙㖺輴賰䞐䄝䥎鰆鯙錞㿤鶞槆杶䣩䣨醕櫄橁箺䦮媋偆純㝄鶉㝇",
|
||||
"chuo": "戳绰辍龊啜淖踔辶䓎歠䮕磭䃗辵趠繛齪逴涰嚽踀哾輟惙䆯鑡㚟㲋擉酫䂐䄪䍳䇍婥娖娕餟䋘綽",
|
||||
"ci": "此次差词刺磁辞雌慈兹瓷赐伺疵呲糍祠茨鹚䓧㹂茦莿薋䦻㤵辝䰍䯸䂣礠㓨辭辤蛓趀䨏珁玼刾䧳㘹䖪㠿鮆鴜䳄飺泚濨蠀䗹螆跐㘂骴髊賜䛐㞖䲿㡹庛㢀皉㩞朿柌栨䆅䈘齹垐䳐餈鶿鷀甆嬨佌偨佽䭣縒絘詞",
|
||||
"cong": "从匆丛聪葱囱淙熜琮苁骢璁枞藂䕺茐蔥蓯孮聦聰聡騘驄瑽瞛潈潀灇潨漗漎蟌暰䟲賩悰愡憁爜叢賨錝鍯怱鏓鏦欉樷樬樅棇徔悤囪徖䉘篵従從䳷㼻婃忩繱誴謥",
|
||||
"cou": "凑腠辏楱湊㫶輳",
|
||||
"cu": "促粗簇醋卒蹙猝蹴徂趣趋蔟殂䓚觕㗤顣䃚䢐脨趗鼀䠞踧踿䠓噈怚䎌憱麤䙯䥄麁䥘䟟㰗橻瘄瘯媨麄䬨縬蹵䛤誎",
|
||||
"cuan": "窜篡攒蹿撺爨镩汆䰖㸑殩㵀躥㠝巑熶竄䆘鑹攛櫕欑㭫簒穳",
|
||||
"cui": "催翠脆粹崔摧萃悴瘁璀啐淬毳榱䃀磪䂱膵膬䄟㯔臎脃脺趡墔琗㧘㱖㵏漼濢㳃啛嵟慛㥞忰翆㷃䊫粋㷪焠㝮襊竁鏙皠㯜槯䧽䆊凗疩伜倅紣縗缞綷顇衰",
|
||||
"cun": "存村寸忖皴吋刌壿邨膥澊踆籿拵䍎竴侟",
|
||||
"cuo": "错措挫搓撮磋锉蹉矬厝脞鹾鹾嵯痤蔖剒逪莡蒫莝遳蓌䂳䐣瑳䣜虘鹺睉䠡䟶㽨嵳㟇錯䱜鎈銼醝䴾酂酇㿷剉夎",
|
||||
"da": "大打达答搭瘩嗒哒鞑沓耷惮靼跶褡怛笪妲荙韃䩢薘剳荅䃮迖羍迏䐛䐊垯墶㙮逹達溚蟽噠迚呾咑䵣䳴眔㟷燵炟匒鎝鐽鎉撘㯚笚䑽龖龘㾑㜓㿯畣繨詚亣畗",
|
||||
"dai": "代带待袋戴呆贷逮歹岱傣玳怠黛殆迨甙棣呔诒埭毒大绐帶䒫貣㞭黱叇霴靆瑇帯㻖瀻蝳㫹曃蚮蹛跢軩軑轪軚獃懛廗襶䚟䚞鴏㯂簤艜䈆㿃垈帒貸柋㐲侢㶡紿緿",
|
||||
"dan": "但单担弹蛋淡胆丹旦氮诞耽郸掸惮疸眈赕澹啖箪膻石萏聃殚瘅儋蓞䩥匰耼聸馾駳髧砃䃫㽎腅膽䨢霮䨵玬殫頕㴷単泹㵅鴠㫜啿㗖鄲單噉㕪啗嘾唌嚪黮黕黵帎賧贉刐饏疍憚憺㡺瓭沊㱽褝襌衴窞禫甔觛䱋狚㺗撣㲷抌擔撢酖柦䄷䉞蜑簞䉷躭癉癚媅妉僤伔䭛餤弾彈紞繵訑勯亶㔊誕",
|
||||
"dang": "当党荡挡档裆铛宕噹菪砀凼谠蘯蕩礑碭䑗雼圵趤壋垱璫珰瞊澢灙盪璗䣊䣣當黨瓽潒逿蟷嵣氹愓襠鐺擋攩檔欓簜簹筜艡䦒闣㜭婸儅譡讜",
|
||||
"dao": "到道导倒岛刀蹈稻盗捣叨悼祷焘氘捯纛刂忉菿陦隯﨩隝䧂䲽壔翿燾瓙盜螩翢嶹嶌嶋禱禂鱽島㠀魛釖擣搗椡槝檤朷稲軇艔衜舠衟㿒導噵䆃辺䌦",
|
||||
"de": "的地得德嘚底锝㤫悳惪㥁䙸䙷淂㝵㥀鍀㯖棏徳恴",
|
||||
"dei": "得嘚",
|
||||
"deng": "等灯登邓瞪凳澄蹬噔磴戥嶝镫簦䒭隥䮴墱璒䠬燈鐙櫈艠竳嬁鄧㲪覴豋",
|
||||
"di": "的地第提低底敌帝弟抵递滴迪堤蒂缔笛涤狄嘀谛娣嫡邸诋砥棣碲柢睇骶荻觌坻氐镝籴羝蔕䩘鞮靮䩚蔋苖菧慸遰菂苐蔐藡隄聜阺墬埅䮤馰牴㹍髢䯼磾厎奃䂡腣坘䞶趆覿䨤埞墑䶍豴玓珶眱䴞䀿坔滌螮蝃㼵䗖蝭旳踶䟡蹢嚁呧唙啲䵠軧䍕頔嶳埊廸岻怟鸐䊮䣌㡳焍袛祶禘鉪㪆䢑釱觝䏑鯳䱃䱱鏑摕逓遞掋拞䀸梊杕枤㭽梑樀楴㰅㣙彽秪䑭䑯糴䨀媂僀仾俤偙弤㢩締詆啇敵甋遆諦翟",
|
||||
"dia": "嗲",
|
||||
"dian": "点电典店淀颠殿垫奠甸碘佃滇惦巅癫掂踮玷靛钿癜阽坫簟蒧蕇䓦䧃驔厧磹㼭䟍顛㒹電墊琔齻奌敁㓠澱㵤㶘蜔蹎跕嚸㸃點敟巔嵮巓壂㞟㥆㝪鈿攧槙椣橂槇䍄癲瘨㚲婰婝傎顚扂",
|
||||
"diao": "掉雕吊钓刁叼调碉凋貂鲷屌铞铫藋䔙蓧䂽奝䂪鼦雿琱㪕瞗汈蛁虭䵲彫鵰䘟窎窵鋽銱錭鑃鯛魡鮉銚釣㹿鈟扚䠼簓䉆竨瘹刟鳭㒛伄弔盄弴調訋",
|
||||
"die": "爹跌叠蝶迭碟谍喋牒堞蹀垤耋鲽瓞㦶戜苵㲲䴑䮢镻胅䏲臷趃䞕耊褺䠟䲀䞇㻡殜眰眣蜨曡㬪螲㫼昳哋咥跮疂氎疊疉畳嵽峌幉㥈惵㦅恎㷸褋䘭㲳鰈䳀挕㩹㩸楪㭯鴩艓牃㑙絰绖諜詄佚",
|
||||
"ding": "定顶丁订钉盯叮鼎锭啶腚仃町铤酊疔碇耵玎靪薡萣艼聢䦺矴磸碠鼑濎㴿㫀蝊虰帄嵿忊顁㝎鐤饤錠釘頂㼗㐉椗奵飣訂",
|
||||
"diu": "丢铥丟銩",
|
||||
"dong": "动东冬洞懂冻董咚栋侗峒恫胴氡鸫硐胨垌岽菄苳蕫駧䂢腖霘鼕䞒埬涷湩蝀昸㖦㗢戙迵㢥崬崠鯟鮗挏氭㨂東㼯鶇鶫棟動徚䅍箽笗㐑䳉䵔㓊凍䍶嬞姛㜱娻㑈倲働諌",
|
||||
"dou": "都斗读豆抖兜陡逗窦蚪痘渎吋蔸篼钭䕱荳䕆阧脰郖毭㪷㐙鬦鬪鬥鬬鬭浢唗唞吺斣㞳㢄㷆竇䄈饾鈄㨮兠梪酘橷枓乧闘閗㛒餖䬦䛠",
|
||||
"du": "度独读毒督渡杜肚堵赌嘟笃睹妒都镀竺犊渎牍蠹黩阇芏髑椟靯韇䪅匵䓯荰犢㸿騳䮷䀾䐗皾䢱蠧䲧覩剢瓄琽㱩殰殬裻錖瀆涜䟻黷䫳賭厾韣韥䙱䄍鑟鍍獨贕櫝醏螙篤牘䅊秺䈞凟闍㾄妬嬻豄讀讟読",
|
||||
"duan": "断段短端锻缎煅椴簖葮碫腶塅㱭瑖躖䠪耑褍鍴鍛毈籪媏偳緞斷㫁",
|
||||
"dui": "对队堆兑碓敦追怼镦憝䔪薱隊陮磓䨺䨴垖塠㙂㳔㵽濧瀩㬣轛䯟㠚㟋憞䊚對懟祋鐓䇤頧鴭痽䇏兊兌䬈䬽綐鐜対譵譈",
|
||||
"dun": "盾顿吨蹲敦钝墩囤沌遁盹炖趸惇砘礅躉驐犜碷遯㬿逇頓潡蜳噸踲蹾㥫庉燉鈍䤜獤撴伅墪撉",
|
||||
"duo": "多夺朵躲踱度堕惰哆舵跺垛咄掇铎剁哚柁裰缍䩔䩣䒳墮陏陊刴朶敠毲剟鵽敪鬌奲尮奪䐾垜㙍趓㙐埵㻧㻔畓㖼跥䠤喥嚉崜憜墯㥩剫䙃䙟䙤䤻鐸饳鈬䫂䤪挅㧷挆柮桗椯㔍軃躱䅜䑨㣞敚凙䍴痥㛆夛㛊敓飿綞嚲亸䯬隋",
|
||||
"e": "额恶俄饿呃鹅扼厄蛾娥峨愕鳄鄂遏萼腭颚讹噩谔婀锷垩轭屙阿咹鹗苊莪锇䩹䳬䓊㼢蕚䔾䕏阨鵈娿阸騀頋阏砐砈㕎礘磀硆砨㼂妿䞩堨堮迗䝈豟堊蝁惡琧悪䫷㱦珴齶歺睋湂涐蚅歞噁卾㓵顎咢鶚遌覨㗁䣞遻㖾吪呝軛囮軶岋㡋崿㟧㠋㟯峉峩㦍㷈廅額頞䆓䄉鈪匎㔩鑩鍔䱮鰪鱷鰐䳗䳘魤鋨鈋擜搹㩵㼰皒搤㧖枙櫮㮙䙳齃頟䖸鵝鵞䑥䑪閼妸姶僫偔餓餩譌讍䛖諤戹誐訛哦",
|
||||
"ei": "诶欸",
|
||||
"en": "嗯恩摁蒽奀峎䊐煾䅰䭡䭓䬶",
|
||||
"er": "而二儿尔耳饵迩洱贰鲕珥鸸铒佴荋貳弍薾聏陑毦隭刵䎶駬䮘髶髵耏鴯䏪胹兒趰弐貮邇爾児洏咡㖇唲輀轜峏粫袻鉺鮞㧫樲栮㮕栭䣵尓衈㛅䎟㜨㚷䎠㒃侕尒餌䋙䌺㢽䋩誀",
|
||||
"fa": "发法乏罚伐阀筏砝珐垡䒥藅茷蕟髪髮䂲坺㘺墢琺沷㳒灋浌㕹罸罰峜彂鍅瞂䣹栰橃笩䇅冹疺閥㛲姂佱発發傠",
|
||||
"fan": "反范饭犯翻繁凡泛番烦返贩帆藩梵樊蕃矾幡钒畈璠蘩燔蹯匥薠䒦㝃軬䮳颿䭵膰䐪墦䪤凣䀟㴀䀀氾滼瀿盕汎噃㕨輽䡊轓軓㠶販䪛㤆憣忛煩籵畨䊩襎㼝鱕㸋鐇㺕釩払䣲礬蠜䫶鐢棥橎柉杋笲䉊笵籓範勫飜鷭䉒舧舤凢瀪緐䌓㶗䋣㽹羳嬎㜶嬏奿仮飯飰繙䋦䛀旙旛訉拚",
|
||||
"fang": "方放房防仿访芳纺妨肪坊彷舫鲂钫匚枋邡㯐牥䦈髣眆淓汸昘昉蚄趽㕫㤃錺魴䲱鈁㧍堏㑂倣鶭紡瓬䢍鴋旊訪",
|
||||
"fei": "非飞费肥废肺匪菲沸啡妃吠斐翡诽绯蜚扉霏腓痱悱芾榧狒淝鲱镄镄篚萉蕜䕁䕠陫騑騛䰁厞朏蜰䑔鼣胇靅奜猆靟䩁剕㐟䨽棐婓餥渄濷㵒蟦暃昲曊䠊胐㥱屝飛飝䨾廃廢裶䚨䤵鯡鐨㩌杮㭭櫠䈈馡䆏䉬癈疿婔俷緋㔗費誹䛍",
|
||||
"fen": "分份奋粉纷愤氛芬粪坟焚吩酚忿汾雰玢鼢瀵鲼棼偾蕡䩿棻蒶隫㸮奮膹朌鼖䴅墳豮豶瞓濆昐蚡㖹轒幩帉岎憤翂燌黺糞黂㥹衯鐼鱝魵獖鈖㮥橨梤燓㷊枌馩馚躮秎羵㿎朆竕羒妢僨弅餴饙蚠炃紛䯨訜",
|
||||
"feng": "风封丰锋峰奉凤缝蜂冯逢疯讽枫沣烽俸砜葑唪酆䒠䩼飌蘴碸䏎堼犎霻靊堸鴌琒盽湗灃溄浲漨㵯沨渢䟪鄷豐崶㡝賵赗峯㦀焨煈寷䙜鎽鋒鏠猦摓檒桻覂楓麷夆蠭㷭篈艂馮瘋妦仹凮凨凬鳳僼鳯風偑綘縫諷",
|
||||
"fo": "佛坲梻仏",
|
||||
"fou": "否不缶鴀䳕雬殕缹缻妚紑",
|
||||
"fu": "复服夫富府父负副福妇附符付幅伏浮腐腹傅扶辐肤抚覆辅赋赴甫缚弗咐俯俘孵拂斧敷脯腑袱芙氟孚蝠阜匐麸釜涪馥凫驸茯讣蝮蚨苻呋罘稃芾跗拊茀趺伕鄜莩菔莩阝砩郛滏蜉呒幞赙赙怫黻黼祓鳆鲋桴绂艴绋荂芣葍䕎䓛䔰萯荴蕧䧞䮛駙䭸䯱㬼䯽髴砆䩉㕊䂤㚕鵩胕䨗䞜䞯䞸䞞韨䘄㙏䨱垘坿䝾邞琈豧玞畐㽬鶝鬴巿玸鳺䫍膚虙㐢㜑澓洑泭㳇㫙蝜蜅蚹䗄蚥哹踾䟔䟮嘸㕮咈罦輻畉䡍䍖輔輹㟊賦帗賻㠅岪翇㤱䪙韍㤔烰粰糐焤炥冨䘠袚褔衭襆複袝襥䃽禣祔鍢鈇頫負鰒鳧鮲鮒鮄鍑鳬鉜鉘䎅捬撫郙棴尃酜枎盙乶椨榑椱覄栿柎麬麩麱柫旉懯箙筟㓡䫝甶䠵䘀蛗峊鴔簠秿復稪艀䒇䒀䑧䵗彿笰乀竎㵗癁䦣㾈娐妋嬔婏媍婦䵾怤姇釡俛偩俌颫紱綒綍䋹䌿刜㪄縛䌗緮䋨絥弣紨紼諨訃㚆詂佛",
|
||||
"ga": "嘎伽尬噶旮咖夹尕尜钆嘠錷釓魀玍",
|
||||
"gai": "改该概盖钙溉芥丐垓赅戤陔葢蓋荄䏗瓂豥㕢䀭漑晐畡乢峐賅䪱忋祴鈣匃匄㧉摡槩槪㮣姟侅絠絯郂㱾賌該",
|
||||
"gan": "感赶敢甘杆干肝乾柑竿赣尴苷秆橄坩擀绀酐泔玕灨旰矸澉淦疳䔈芉皯䃭尷尲趕幹榦倝迀鳱䲺攼尶盰澸漧㽏汵䵟骭䯎忓粓衦鳡鱤㺂魐檊桿䇞簳稈筸贑䤗贛凎仠凲紺詌",
|
||||
"gang": "刚钢港纲岗杠缸冈扛肛戆罡筻犅牨矼堽堈䴚㽘㟵崗㟠剛岡焵焹釭䚗鎠鋼摃㧏掆槓㭎棡罁疘冮戅戇綱",
|
||||
"gao": "高告搞稿膏糕羔镐篙睾皋诰槁藁锆杲缟槔郜菒䔌藳㚏夰䗣鼛櫜峼韟祮祰禞鋯鎬鷎㚖皐槹橰檺勂吿臯鷱筶㾸餻縞髙槀稾稁誥",
|
||||
"ge": "个合各革格歌哥隔割葛阁戈胳颌鸽搁咯疙蛤骼铬膈嗝镉圪鬲硌盖哿塥虼袼搿舸䪂䩐鞈䕻戓㦴茖呄䧄牫騔㷴䐙肐䨣䘁䪺䫦臵鞷㵧滆滒䗘蛒㗆嗰轕輵㠷愅韚韐裓㝓䆟觡鎘亇饹鴚鮯鎶獦鉻犵匌挌㨰擱槅戨㢦櫊䈓㪾敋箇笴閣鴿䢔個佫佮彁諽䛋䛿謌",
|
||||
"gei": "给給",
|
||||
"gen": "根跟亘艮茛哏亙㫔揯搄㮓䫀",
|
||||
"geng": "更耕耿庚梗哽埂羹赓颈鲠绠莄菮堩刯郠浭畊骾峺焿鹒賡鶊䱍䱎鯁䱭䱴挭椩㾘羮絚綆䌄緪縆䋁",
|
||||
"gong": "工公共功供攻宫贡巩弓恭拱躬龚汞蚣珙肱红廾觥龷慐貢㔶䢼拲㭟䂬鞏䡗㧬㼦碽厷髸塨䢚㺬㫒唝嗊輁幊愩㤨熕宮觵匔匑栱㯯杛篢躳䇨㓋龏龔侊糼糿",
|
||||
"gou": "构够句购狗沟勾钩拘苟垢篝枸媾佝诟笱岣鞲遘觏彀缑冓覯芶䃓豿撀㜌㝅㨌坸耇耉耈玽溝㳶蚼㗕啂㽛購䝭䞀韝煹㝤褠袧雊鈎鉤夠㺃搆構簼䑦痀姤緱訽詬",
|
||||
"gu": "古故固顾姑骨鼓股谷孤估雇咕呱辜菇沽锢贾钴梏臌箍蛄汩蛊轱诂牯崮鸪鹘瞽痼鲴毂菰牿嘏罟觚酤巭薣盬㠬䓢蓇苽巬㠫夃㚉䜼䮩尳鴣㼋䀇脵皷鼔堌㯏䅽皼榖穀糓轂䍍䐨䶜䀦䵻䀰濲瀔淈泒蠱啒唃唂軲䡩䍛罛軱鶻崓愲祻鈷錮馉鮕鯝鈲䀜㧽扢橭棝榾柧杚箛稒笟篐㒴㽽凅㾶羖嫴傦餶逧僱䊺縎詁顧",
|
||||
"gua": "挂瓜寡刮褂呱卦剐胍鸹括栝诖䒷劀騧趏坬颪啩踻叧罣冎剮歄㒷煱掛桰鴰䈑颳絓緺詿",
|
||||
"guai": "怪拐乖䂯㽇罫恠叏夬㷇㧔柺枴箉䊽",
|
||||
"guan": "关观管官惯馆贯冠灌罐棺斡倌纶矜盥莞鳏鹳掼涫䩪䪀鸛觀雚蒄覌礶瓘璭琯矔卝泴㴦潅丱䗆䗰躀輨䏓䎚悺慣爟㮡悹䙮䘾䙛窤祼鑵鳤鱹鱞鰥䲘錧鏆摜欟樌罆観筦䦎癏瘝痯関關闗舘館䌯遦貫毌䝺",
|
||||
"guang": "光广逛胱犷潢咣桄茪黆炗垙珖洸㫛炚輄臦臩廣烡広灮炛銧獷姯僙俇",
|
||||
"gui": "规贵归鬼桂轨柜硅龟跪瑰闺诡傀匮圭刽桧鲑癸皈炅鳜珪匦眭晷刿庋宄簋妫茥鞼匭蓕蘬㔳陒雟㸵騩䰎厬胿䝿㙺攰邽㪈郌䳏䞨垝昋鬹規槼嫢璝鬶椝瓌劌瞡瞆瞶䁛氿湀㲹蟡蛫螝貴䠩軌䯣䞈巂嶲恑庪廆袿䙆襘祪禬鑎䣀㩻觤亀鐀鱖鮭䲅鱥䤥猤摫撌㨳㧪櫃槻樻槶椢櫷檜筀歸龜䇈攱閨䍷䍯癐䐴嬀姽媯劊佹䌆詭帰",
|
||||
"gun": "滚棍辊衮磙丨鲧绲蓘蔉䎾䃂㙥㯻睔滾䵪輥惃鯀鮌袞緄緷㫎䜇謴",
|
||||
"guo": "国过果郭锅裹蝈埚帼聒虢椁腘粿掴蜾崞猓馘菓蔮聝䂸㞅䆐腂膕䐸堝墎㳀㶁淉漍濄蟈褁㖪㕵嘓啯㗻國囯輠囻囶圀幗過惈慖䙨鈛鍋鐹馃㚍懖摑楇䴹槨簂瘑䤋䬎餜彉綶彍涡",
|
||||
"ha": "哈蛤虾铪鉿紦",
|
||||
"hai": "还海孩害嗨亥骇咳氦嗐骸胲醢㜾駴駭㦟塰咍䯐㤥烸䱺㺔㨟㧡酼䠽䠹䇋妎饚餀",
|
||||
"han": "含汉喊寒汗旱韩函涵罕憾焊憨翰撼邯悍捍酣瀚鼾蚶颔晗菡犴旰顸焓厂邗撖䕿䓿㽉䓍蔊莟顄凾圅馯駻厈䫲丆䏷䶃䐄爳䨡䖔㙳頇㙈垾韓㲦螒鶾䮧雗㙔䎯䧲琀䁔睅甝㵄漢涆澏浫㵎浛暵蜬虷㪋晘蜭蛿㘕㖤哻㘚㘎唅輚䍐崡嵅屽䍑㟏㟔熯㶰㸁䗙䘶䤴䥁釬銲魽鋎猂㺖鋡㨔扞皔㮀梒䈄馠筨兯閈闬㽳嫨㜦娢傼佄㒈㑵谽豃頷㼨䌍㢨䛞譀",
|
||||
"hang": "行航杭巷夯沆吭绗颃苀垳䀪蚢䣈䟘貥㤚裄䴂魧筕笐䘕䦳絎斻頏迒䲳",
|
||||
"hao": "好号毫耗豪浩郝壕嚎皓镐蒿嗥濠昊貉薅颢灏蚝嚆薃䒵茠薧聕䧚䧫䝞毜㬶䝥㘪淏㵆灝澔滈昦㬔暤暭晧曍䯫顥暠蠔㙱䪽號㕺噑哠嘷㞻㠙乚悎鰝獆獔獋皞皡皥皜㩝椃秏籇竓恏㚪侴䬉䜰傐儫㝀䚽鄗譹皋",
|
||||
"he": "和合何河呵核喝荷吓贺赫盒颌褐鹤禾嗬壑诃涸阂阖劾貉龢翮菏盖盍曷纥蠚鞨䕣萂䒩䓼㹇䃒碋礉盇賀䶅貈䞦䚂㷤靏靎垎靍鸖齕㕡龁澕渮㵑䳚㬞螛毼㔠鹖㓭䫘鶡㕰嚇啝咊㗿哬嗃䵱䢗峆䳽㥺䪚㦦翯煂熆爀焃㷎籺粭熇燺袔寉鶴鑉釛鲄饸魺狢鉌皬㿣抲㭱㪃㰤㮫楁覈柇㭘㮝麧䴳篕䎋惒盉䅂闔癋閤閡姀郃敆頜㪉欱餄紇鶮訶訸詥謞苛",
|
||||
"hei": "黑嘿嗨潶黒",
|
||||
"hen": "很恨狠痕鞎䓳拫㯊佷詪",
|
||||
"heng": "衡横恒哼亨珩鸻蘅桁㔰䒛胻脝㶇涥啈䯒恆悙烆䄓鑅撗橫鴴鵆姮䬖䬝",
|
||||
"hong": "红洪宏轰鸿哄虹烘弘泓竑訇讧闳薨蕻荭黉鞃䩑葓䲨葒苰䧆耾硔翃䫺硡䃔䂫㬴黌垬霟霐䞑䨎玒沗玜䀧鬨澒鴻汯渱潂浤渹晎叿吰呍嚝㖓䍔䡌軣轟輷䡏屸羾灴䉺㶹粠焢翝䆖宖銾鉷鈜魟鋐鍧撔揈篊閧闀閎䪦竤闂妅娂仜䫹谾䜫谹谼紅紘纮㢬彋綋紭訌",
|
||||
"hou": "后候厚猴侯喉吼逅篌齁骺堠鲎糇後瘊茩葔䂉㸸㕈鱟䞧豞睺洉㫗㬋䗔㗋㖃吽帿翵㤧翭䙈矦鲘䪷鮜鯸䳧銗犼㺅鍭郈垕㮢鄇䫛餱",
|
||||
"hu": "互乎护呼户忽胡湖虎糊弧狐壶沪蝴葫瑚浒惚唬扈琥瓠囫鹄唿斛祜滹鄠鹕醐猢和许核觳虍轷岵怙煳烀鹱槲笏冱戽䩴芐萀㸦蔛匢匫䔯苸蔰䕶㕆鬍鶘鶦䭌綔瓳㪶䎁怘䮸膴䞱豰壺嗀縠㺉螜壷垀雽䨥䨼戸䁫虖歑虝雐鍙瀫沍淴汻䲵泘滬滸䗂昒昈㗅䠒嘑嘝嚛喖䍓軤幠恗䪝䊀䉿焀熩粐㝬寣隺鍸䚛鳠錿鱯鸌鰗魱鯱曶㫚㹱乕摢抇搰㿥䰧㨭楜㯛枑槴箶衚頶鵠䧼䇘戶䈸䉉乯簄㾰頀媩嫮嫭婟俿䬍餬䭍䭅弖絗護謼帍鳸㦿䛎戏",
|
||||
"hua": "化话花划画华滑哗桦猾铧骅砉華鷨蕐黊蘤㭉䔢蒊驊硴夻磆䏦埖㓰䶤澅螖嘩㕦䠉㕷㕲呚㠏崋㟆㦊㦎糀鏵錵觟釫釪鋘䱻㚌撶摦搳㩇樺椛槬㮯枠杹䅿舙嬅婲畵畫劃婳姡嫿繣譁誮諣諙䛡話譮豁",
|
||||
"huai": "坏怀淮槐徊踝蘾蘹䃶壊耲壞䴜瀤咶㠢懐懷櫰䈭㜳褱褢",
|
||||
"huan": "还环换欢缓患幻唤焕寰桓痪宦涣豢獾浣奂洹圜鬟鹮垸萑漶逭锾鲩擐缳荁萈酄歡藧㿪㕕驩䭴䮝㹖貛䝠貆肒堚豲瓛環瑍雈睆䀨䀓澣澴㶎㵹渙㬊㬇㼫嚾喛喚還轘嵈䯘峘鴅懽㦥愌㡲糫煥䴟鵍寏䆠鍰䥧鐶镮奐烉鰀鯶鯇獂狟犿攌換梙槵㣪䈠歓䍺闤阛羦䦡瘓㓉孉嬛緩絙繯綄讙㪱",
|
||||
"huang": "黄皇荒慌晃煌惶簧谎恍蝗磺凰隍幌徨潢璜湟肓篁蟥遑鳇癀䪄黃鷬葟㞷䮲騜奛䐵㬻䐠䑟墴塃趪䞹堭瑝䁜兤滉曂晄喤㡆崲䍿愰怳㤺熿䊣熀炾䊗宺鐄鎤鱑鰉鍠锽獚皝皩䳨㿠㨪揘榥櫎楻穔䅣艎韹㾠㾮媓偟餭䌙縨謊朚巟㠵衁諻詤",
|
||||
"hui": "会回挥灰汇绘恢辉毁慧惠悔溃徽讳卉秽贿晦诙彗晖蛔桧诲喙洄荟珲蕙烩茴睢迴麾咴隳恚虺蟪缋蘳蔧薉匯㰥䕇藱薈隓䜐䧥芔䃣㥣靧䩈㩓毀毇䏨噕璤恵豗㱱㻅璯睳顪翽瞺頮颒滙湏洃泋潓輝濊瀈蛕㬩暳蚘蜖暉嚖嘒噅䫭囬廽逥圚廻㞧屷賄囘翙屶懳㤬憓恛翚翬烠烣燬㷐㷄煇燴寭袆䙡䙌褘禈鏸鐬䤧灳鮰獩㨤㩨㨹拻撝揮櫘槥檓橞檅楎篲䂕穢鰴幑䇻䅏徻闠阓痐瘣㜇彚媈嬒婎㒑僡會㑹佪儶餯㑰繢彙絵繪譿詼譭䛼譓䜋䛛諱詯誨堕",
|
||||
"hun": "婚混昏魂浑棍荤馄珲诨溷阍葷蔒䧰鼲䰟琿殙睴睧尡渾涽䫟圂慁轋䡣昬睯忶㥵惛焝觨䚠掍㨡棔䴷䅙䅱閽婫倱俒㑮餛䛰諢",
|
||||
"huo": "和活或火获货伙惑霍祸豁夥蠖嚯镬藿劐耠灬钬锪攉㦯韄䰥蒦騞奯剨臛耯靃眓矆矐䂄䁨濩湱瀖沎漷曤嚄嚿喐咟吙㗲㘞䯏旤雘㦜邩㸌煷窢䄀禍䄑䄆鑊䱛鈥鍃獲掝擭捇㨯檴䣶㯉穫秮䉟秳艧秴癨䦚閄彠彟佸俰貨䋭謋",
|
||||
"ji": "机几基己期济及级计即极技记集际积纪急激既继击奇季鸡迹剂辑绩吉寄疾挤肌籍祭寂脊饥忌冀藉稽畸棘鲫叽圾嫉姬讥妓汲系伎缉唧骥羁髻悸瘠箕暨矶麂岌蓟亟戟跻诘犄荠稷畿霁嵇嵴屐蒺觊笈玑楫偈鱀勣芨咭其齐芰蕺剞赍殛乩洎虮戢跽哜墼鲚掎笄彐佶齑䓫䩯蘎鞿蘻蘮葪薊茤旡蕀蔇虀薺䓽焏際隮㤂䲯﨤㹄䯂驥䮺鳮䰏㞆㚡朞卙䦇惎諅磼磯䐀鶏膌䐕䐚鷄雞叝䨖趌䟌䞘䟇塉郆霵賷坖䣢耤耭垍賫㙫㙨霽㒫䢋㱞㻷㻑璣璾䶩茍㦸䁒㭰㲺㴕㴉湒濈瀱漃㳵泲鹡鶺漈潗済濟䗁螏蝍暩蟣嗘踖躤踑蹟蹐䠏躋跡㘍㗊㖢喞㗱嘰嚌羇羈轚擊檕罽輯毄㚻繋撃䍤䝸覬㡇䶓嶯㠖㞦㠍㥛忣㠱㥍丮鵋㞛愱懻妀庴廭㸄㲅襀襋禝禨錤觙觭銈銡鱾䤠鍓魥鰿魝魢鯚鯽鰶鱭鑙犱鏶鐖鑇㔕撠刏鬾魕㰟裚揤曁旣皀卽皍擠㨈鸄覉覊極㮟樭橶枅䤒檝㮨梞槣槉楖㭲檵機櫅䇫彶䚐嵆徛簊稘筓積臮箿稩躸䪢刉艥䒁鷑穊穄穖穧兾㾊痵癪㽺㾒㾵癠塈堲䳭姞䢳伋亼偮㑧飢饑谻㞃僟亽雧級綨績緁緝紀彑䋟継紒㡮幾㡭繼計韲齏剤劑齎齌㧀記誋譤譏䜞给",
|
||||
"jia": "家加价假架甲夹佳嫁驾嘉贾钾稼颊伽挟迦枷荚戛拮浃胛袈痂颉镓岬笳珈蛱跏瘕袷葭恝郏铗莢䩡䕛斚犌戞㕅郟夾頰鵊㼪脥駕毠乫㔖鴐腵貑鴶㪴耞圿豭玾頬䁍䀹䀫浹泇蛺䖬唊斝䑝幏叚忦糘麚䴥裌鋏鉫鉀鎵猳拁抸扴㮖榎梜賈椵榢槚檟徦㿓婽傢價䛟",
|
||||
"jian": "间见建件坚简渐减检践健尖监艰键肩兼鉴浅箭碱剪剑舰奸歼俭拣荐贱茧柬捡煎溅涧谏睑堑腱毽笺缄饯硷翦犍謇鲣僭锏缣囝鞯菅蒹戋戬湔趼踺蹇裥搛枧楗笕鹣牮谫戔韉靬韀鞬堅䵖㔋監鋻鍳鑒㯺譼虃囏艱蔪繭薦藆蕑蕳葌菺䧖䮿礷碊礛鬋䶠䩆礀磵礆堿麉䶬趝墹䵤鳽雃戩臶幵瑊珔䵡豜豣殱殲瑐蠒玪鹸鹻鹼見瞷睷瞼㓺瀳減洊瀐䤔漸濺瀽㶕澗湕㳨瀸暕鵑踐䟰跈轞䟅䭕賤䯛䯡賎帴㦗惤熞熸糋寋弿襺袸襉襇鑑鑬鳒鏩鰹鰔鰜鰎鑳㺝猏鐗鐧䥜鍵鐱鑯㨴挸揀擶揃㨵撿樫檻椷栫榗梘㰄椾検檢櫼箋㣤㔓䄯牋筧䅐馢籛䇟篯艦簡䉍徤䵛覵間覸冿鶼姧姦俴剣劍劎剱劒劔餞䬻䭠餰䭈㦰倹儉緘絸繝彅縑諓䛳譛鵳諫譾謭旔詃槛",
|
||||
"jiang": "将讲江降奖蒋港匠疆浆姜僵酱桨缰绛犟强茳礓耩豇洚糨匞韁薑顜葁蔣䕬㹔膙塂壃䞪䙹畺殭䁰滰疅畕嵹翞糡鳉鱂摪摾橿櫤㯍夅䉃䒂奨醤㢡奬獎醬漿螀螿槳將傋䋌䥒繮勥謽絳弜弶講",
|
||||
"jiao": "教叫较交觉角脚焦胶郊缴骄娇轿搅浇嚼校剿礁椒矫狡绞蕉酵窖饺跤佼侥皎蛟茭醮姣铰湫鲛峤艽噍挢敫徼僬鹪茮斠藠驕膠腳膲趭璬珓䂃䣤䴛䁶㳅灚澆漖䀊滘潐㬭曒蟜暞晈蟭䠛踋劋嘂嘄噭呌嘦轇轎較嶠㠐峧賋嶕嶣䪒憿憍煍烄燋䘨䆗窌䚩鱎鮫䥞獥鉸鐎㩰敎皭攪撹皦撟捁挍摷㰾譥釂㭂敽鷮敿矯徺臫笅穚簥筊㽲㽱虠䢒䴔鵁勦嬓嬌孂㚣僥龣儌餃鷦燞繳纐絞訆譑䜈",
|
||||
"jie": "结解接阶界价节介姐借街揭届洁杰截皆戒捷竭劫桔藉诫秸睫楷芥婕拮孑诘疥嗟颉疖桀碣羯讦偈蚧毑袷家她卩喈骱鲒䕙鞊鞂蓵䔿菨莭㔾階卪岊犗礍䂝䯰䂶㛃镼砎䃈脻丯刦刧刼頡㔛劼㓤迼堺堦䣠琾疌玠䀷䁓潔尐滐蠽湝昅蛶蠘蜐蛣䗻蝔唶踕跲喼吤畍嶻崨幯㠹巀嵥岕悈屆㞯㦢㸅庎煯㝌衱袺褯衸㝏䥛觧鉣㘶鍻鎅鮚䰺䱄䲙魪狤擮㨗掲擑㨩掶搩杢㮮楬楐檞桝榤㮞椄徣䂒䅥節蠞稭㓗㾏㿍楶癤痎䇒媎媫嫅媘㑘倢偼䲸傑飷結䌖鶛誡訐詰誱謯䛺",
|
||||
"jin": "进金今近仅紧尽禁劲津斤晋锦浸筋巾谨襟靳矜瑾烬噤缙觐馑堇荩卺赆廑衿钅槿妗蓳荕菫緊覲㝻歏黅藎䒺巹㹏矝厪㰹砛䐶墐壗晉㬜琎瑨殣琻勁珒璶璡齽䶖鹶漌溍浕濅堻濜㴆㬐䗯唫嚍䝲贐惍㶦煡燼寖䘳䆮祲觔釿錦釒㨷劤搢䖐䤐枃䫴㱈㯲㯸䑤凚嫤㶳盡䀆賮嬧僅仐侭伒僸饉䭙儘進縉䋮䌝紟謹䥆",
|
||||
"jing": "经精境京静竟惊景睛镜径警晶劲竞净敬井颈茎鲸荆靖兢痉憬泾菁粳阱胫腈迳旌璟儆箐刭肼靓獍婧弪荊莖葏㢣蟼憼驚䔔聙頚㣏㕋脛鼱㘫坓汬丼璥靜靚䴖鶄殌璄巠剄頸鵛逕坙梷淨汫瀞㵾涇澋浄曔暻㬌踁䵞䡖幜麠麖宑穽鯨㹵猄鏡坕桱橸稉徑秔凈痙竸競竫竧妌婙婛俓傹経弳經綡䜘鶁亰旍誩",
|
||||
"jiong": "炯窘迥炅颎冂扃蘏蘔褧駫駉澃䐃坰埛㷡煛泂浻煚㖥囧冋㢠冏䢛燛㤯烱逈㷗㓏㑋僒侰絅䌹綗熲顈",
|
||||
"jiu": "就究九久旧酒救纠舅揪灸疚臼鸠厩赳韭咎桕啾柩鹫鬏玖阄僦匶萛韮匛䓘舊牞镹䊆䳔䳎慦㺩㺵殧齨䰗鬮㲃汣䡂㠇丩乆䊘㡱廏廐廄㶭麔䆒鯦勼匓捄摎㧕揂㩆欍柾朻樛杦舏䅢揫㐇鳩奺倃糾乣糺紤鷲䛮",
|
||||
"ju": "具据局举剧句居巨距聚拒柜菊矩惧俱拘桔咀锯鞠橘踞驹沮瞿炬踽疽遽掬枸飓榘苣裾龃榉倨狙钜莒且车苴鞫犋雎琚屦窭锔醵椐讵蘜䕮䢹乬巪蒟輂埾陱聥犑駏驧駶駒䃊砠㪺䢸舉㐦擧鴡貗腒䏱鼳鼰毩毱弆壉趜埧㘲耟㠪歫䶙齟䶥郹䴗鶪㮂狊䋰勮豦劇愳虡眗䡞洰㳥挙湨澽涺泦泃淗趄昛蚷㬬蜛䗇蹫跙㘌躆跼跔踘啹罝㽤巈岠岨崌㞫鵙怇鶋懅懼䪕㥌屨㞐凥烥粔焗粷寠袓襷䆽窶䄔鉅鐻邭鋸鋦鮔匊䱟鮈鵴䱡據㩴㩀㨿挶䰬抅㐝拠檋櫸欅䣰䤎椇梮椈秬簴筥躹䅓艍䈮䵕閰姖娵㜘婮婅倶侷颶䜯繘詎䛯諊渠",
|
||||
"juan": "卷倦捐圈娟鹃绢眷涓镌蠲鄄狷锩桊蔨菤奆朘腃臇埍睊睠淃瓹呟罥羂䳪脧惓慻焆㷷裐隽鋑䥴獧錈鎸鐫捲䚈䣺㯞䅌䡓勌劵䄅龹䖭帣巻餋弮勬絭姢䌸㢧絹㢾讂㪻",
|
||||
"jue": "决觉绝掘嚼爵诀厥倔攫崛蕨獗撅噘抉镢蹶谲角孓噱橛珏矍鳜桷钁劂爝觖匷㓸芵蕝孒䦼矡駃砄蹷蟨憠鷢橜䐘䏣臄貜䏐䁷覺趉䞵䞷赽瑴䝌玨㻕玦亅䀗覐㵐決覚泬灍蟩䖼蚗虳噊䟾躩䠇趹爴䡈㟲嶡嶥崫㤜憰戄屩屫刔鴂爑㷾熦焳䙠䘿䆕䆢氒鐍鐝觼觮䦆鈌鴃玃㹟㩱挗㸕捔撧㰐㭾㭈櫭䍊䇶欮疦瘚弡彏䋉㔢絶㔃絕譎斍訣",
|
||||
"jun": "军均菌君俊峻钧郡骏竣隽浚筠麇儁皲捃莙葰䕑陖皹駿鵕㕙碅㓴埈䝍㻒珺䜭濬汮㴫晙蜠蚐呁㽙畯賐懏燇麏麕皸軍袀㝦寯鲪銞馂鵔鮶鍕銁鈞攈攟棞桾箟箘䇹姰頵鵘覠㒞餕㑺雋龟",
|
||||
"ka": "卡咔咖咯喀佧胩垰裃鉲䘔",
|
||||
"kai": "开凯慨恺揩楷铠忾闿锴岂蒈垲剀锎䒓奒䐩塏䁗暟嘅䡷輆剴颽凱㡁嵦愷愾炌烗鎧㚊鎎鐦鍇開闓勓欬",
|
||||
"kan": "看刊堪砍坎勘嵌侃槛瞰龛阚磡戡莰凵顑歁墈栞䶫鬫矙轗輡嵁崁惂冚欿衎㸝䘓㸔䀍竷闞龕偘",
|
||||
"kang": "抗康炕扛慷亢糠鱇伉钪闶匟砊漮䡉囥嵻忼㱂粇㝩鏮犺鈧槺躿穅閌嫝邟㰠",
|
||||
"kao": "考靠烤铐拷犒尻栲䐧攷丂洘䯌嵪㸆銬鲓鮳鯌䯪髛",
|
||||
"ke": "可科克客刻课颗壳棵渴咳柯磕苛坷瞌窠蝌轲颏恪稞髁珂氪缂岢嗑剋尅呵骒溘蚵锞钶疴薖萪匼騍牱犐礚碦勊勀砢㕉堁殼殻㵣渇顆敤㪙趷礊軻嶱嵑㞹嵙峇愘炣㪡愙䙐錁翗鈳搕揢榼醘㐓㪼㤩衉艐痾㾧牁娔樖緙課頦",
|
||||
"kei": "剋尅",
|
||||
"ken": "肯恳垦啃龈裉㸧硍墾懇貇豤肻肎褃錹掯",
|
||||
"keng": "坑吭铿硻阬牼硁硜䡰鏗鍞銵摼挳妔誙劥",
|
||||
"kong": "空控孔恐箜倥崆鞚硿埪涳㤟悾鵼錓躻㸜",
|
||||
"kou": "口扣寇叩抠佝蔻芤眍筘剾蔲瞉鷇㲄瞘滱䳟怐冦宼㓂窛釦敂䳹摳劶㔚簆彄",
|
||||
"ku": "苦哭库枯裤酷窟挎骷绔袴刳堀喾䧊郀矻嚳㱠跍圐㠸庫廤㐣焅褲鮬狜楛桍䇢秙䵈瘔㒂俈絝",
|
||||
"kua": "跨夸垮挎胯侉咵趶骻䯞銙舿姱誇䋀",
|
||||
"kuai": "会快块筷脍侩狯哙蒯浍郐䓒巜膾凷墤㙕㙗塊圦㱮欳澮㬮噲䯤㟴廥糩鲙鱠獪擓㧟㔞䈛鄶䭝儈旝",
|
||||
"kuan": "款宽髋䕀臗髖寛寬窾窽䥗䲌鑧䤭㯘歀梡欵",
|
||||
"kuang": "况矿狂框旷筐眶匡邝哐圹诳劻夼贶贶纩诓匩邼硄礦砿壙眖矌洭黋況曠昿軭軖軦軠岲貺恇忹懭鄺懬爌䊯鋛鑛鉱㤮鵟狅抂䵃筺穬儣絖纊絋誆誑",
|
||||
"kui": "亏溃愧奎魁馈葵窥盔傀匮逵夔喟睽喹聩揆篑岿馗蒉蝰暌跬悝愦䕚蘷藈匱蕢䕫虁聵聭聧骙騤犪尯磈㚝膭頍㙓刲䖯殨㕟虧潰晆䠑䟸躨蹞嘳顝䯓巋巙憒煃窺頯鍷鍨㨒䫥楏䤆櫆楑籄簣䈐䦱闚䍪㛻嬇媿戣鄈䳫饋餽䧶謉",
|
||||
"kun": "困昆捆坤锟崑鲲琨髡堃醌悃阃菎騉髨髠硱堒壼壸瑻睏涃潉蜫䖵晜㫻鹍鵾䠅崐焜熴鶤裩裍裈褌祵錕鯤猑㩲梱稇稛閸閫綑",
|
||||
"kuo": "括扩阔廓蛞鞟鞹萿葀䯺髺鬠霩濶䟯㗥韕挄擴拡頢筈䦢闊",
|
||||
"la": "拉啦腊辣蜡落喇垃剌旯邋砬瘌藞鞡䪉菈䏀鬎磖䂰㕇䃳臈臘䟑䝓䶛㻋㻝瓎溂䗶蝋蝲蠟嚹翋㸊爉鯻鑞镴搚揦攋䱫揧辢楋櫴柆䓥",
|
||||
"lai": "来赖莱癞睐籁徕涞崃疠唻赉濑铼䓶藾萊䧒騋㚓䂾琜睞瀨瀬淶䠭㠣崍庲襰䄤䲚鯠錸猍梾頼賴鵣棶郲來賚顂鶆逨䚅麳筙㥎籟徠箂䅘癩㾢婡俫倈䋱",
|
||||
"lan": "兰蓝烂览篮栏拦懒滥揽澜婪岚缆阑榄斓褴啉谰镧漤罱藍韊䪍覧覽擥蘫蘭葻䰐䃹䑌壈璼㱫瓓灆濫灠灡浨㳕瀾嚂囒躝㘓幱嵐㞩懢懶惏㦨爁爦爤糷䊖顲燗爛燷燣襤襽襕襴䆾钄䳿鑭㩜攬㨫攔欖㰖欗醂欄籃籣䦨闌㜮孏嬾㛦孄儖㑣㑑繿纜䌫䍀譋斕讕",
|
||||
"lang": "浪朗郎狼廊琅螂啷榔鎯莨阆蒗锒稂䕞蓈蓢硠朤朖㙟埌㱢瑯䁁䀶蜋㫰䍚䡙䯖崀㟍㢃烺䆡㝗䱶鋃樃桹躴艆筤㾿閬㾗嫏郞塱㮾勆郒欴㓪斏誏",
|
||||
"lao": "老劳落牢络捞姥烙唠涝佬潦痨酪崂醪乐耢铹铑栳荖䵏䕩硓磱嗠䝤朥耮耂㐗䳓珯澇労浶蛯蟧㗦咾嘮哰轑㟙㟹嶗㟉㞠恅憦顟粩䃕勞憥䝁窂銠鮱鐒䲏狫㧯撈㨓橯䇭躼軂簩癆嫪僗髝䜎",
|
||||
"le": "了乐勒肋仂嘞鳓泐叻艻阞砳㔹玏氻㖀忇㦡鰳鱳扐楽樂簕竻韷餎",
|
||||
"lei": "类累雷泪勒蕾垒肋擂磊儡镭耒羸嘞檑酹嫘缧缧诔䒹蕌蘲虆藟蘽蔂蘱絫厽㹎䮑礌礧磥㲕䐯鼺䨓靁㙼䢮䣂頛㼍瓃矋㵢洡灅㶟涙淚㴃蠝䍥䍣塁罍礨㔣壘壨畾纍轠鸓䴎櫐㡞類頪纇颣禷鐳銇鑸鑘鱩錑攂㭩䣦欙櫑樏䉪䉂䉓癗㿔㒍㑍㒦儽傫纝縲䛶誄讄",
|
||||
"leng": "冷愣楞棱塄薐䮚碐堎睖踜㘄唥䚏䉄稜倰䬋",
|
||||
"li": "里理力利立例离历李礼丽粒隶哩璃励黎厉厘梨莉吏栗犁鲤狸砾沥荔篱漓笠蛎痢俐锂俚雳逦戾镉罹栎蠡俪藜鹂骊砺蜊黧娌莅猁疠傈唳溧疬慄醴砬喱鬲苈澧蓠坜嫠郦呖跞轹詈粝鲡鳢枥篥缡藶蒚蒞荲䔆䔁䔣䔧蔾菞䔉苙茘䓞蘺䧉犡䮥䮋驪勵厲礪㔏礰鬁㻎砅䃯礫歴暦厯磿歷厤曆㻺㽁貍䤚蠫䴄脷壢靂隷䟐赲䟏靋塛孷釐剺斄㹈瓑珕蟸叓䣓䰛酈鸝邐䚕婯麗䴡㱹㡂㽝瓅瑮琍瓈䶘㮚䁻睙濿瀝浬浰沴涖灕蠇䘈曞蠣蛠㬏蝷蚸蟍蜧㒿嚦㘑囇躒㗚唎嚟㕸囄轣䡃轢䍠䍦豊巁屴峛峢㟳峲㠟岦㤦㤡㦒悧悷䊪爄糲糎爏廲粴麜㷰裡褵䙰禲禮䄜䥶觻䲞鋰鱱鳨鱺鯉鱧鯏㺡鏫鑗鉝瓥㼖攊㿨攦㸚擽皪搮㧰攭櫔櫪栛朸隸䣫欐䤙醨栃檪櫟鷅梸㰀㯤欚棙樆㰚䅄穲䖽䵩悡鋫䱘㴝犂睝䖿鯬鵹䊍邌錅䴻棃剓筣䉫秝艃䵓䅻籬癘竰癧䍽㿛㾐㾖鴗凓䇐孋㓯娳刕儮儷䬅䬆㑦㒧劙䗍盠盭䰜纚䋥綟縭讈裏離謧",
|
||||
"lia": "俩",
|
||||
"lian": "联连脸练炼恋莲怜链廉帘敛镰鲢涟殓濂梿奁裢潋楝蔹臁琏琏蠊裣匲蓮薕萰蘞匳蘝聨聫聯䏈聮奩鬑䃛磏臉䨬覝堜鄻璉㱨殮瑓䁠㶌瀮漣湅濓溓瀲澰㶑螊蹥嗹噒連㦁㡘慩翴㦑憐䙺㥕燫煉劆㢘熑褳襝鏈鰱鰊鐮錬鍊㺦䥥鎌㼓摙櫣㪝槤㼑㰈㯬㟀簾䆂䇜籢籨亷㾾㝺羷㜕嫾嬚媡㜃㜻斂㪘歛㰸僆䭑縺練䌞纞謰戀",
|
||||
"liang": "两量亮良粮梁俩凉辆谅粱踉晾靓莨墚魉椋䩫䓣駺㹁脼㔝兩両涼湸蜽唡啢䠃喨哴輌輛輬辌㒳䝶悢糧裲䭪鍄掚魎䣼樑倆倞俍緉諒",
|
||||
"liao": "了料疗辽僚聊廖缭寥撩燎撂瞭缪嘹潦寮镣蓼獠尥鹩钌藔䒿镽䩍尞鷯遼䨅㶫膫㙩璙䝀敹漻㵳暸蟟曢蹽蹘䍡嶚嶛髎嵺賿憭憀屪鄝䢧䎆廫膋爎㡻䉼炓㝋窷竂釕鐐爒㺒橑䄦簝䑠療嫽尦飉豂䜮繚䜍",
|
||||
"lie": "列烈裂猎劣咧冽趔鬣埒洌躐捩茢䓟聗㸹犣鬛㼲脟㲱埓劽䴕㤠烮鮤鴷迾姴䁽浖毟蛚㬯哷䟹䟩㽟煭鱲猟獵㧜挒挘擸栵㭞㯿䅀䉭巤颲儠䜲",
|
||||
"lin": "林临邻磷淋鳞霖麟琳拎凛吝粼赁蔺躏嶙啉璘廪檩遴膦瞵辚辚懔臨䕲菻藺隣阾厸驎䮼䫰碄壣瀶潾澟暽䗲晽躪蹸躙㖁轥疄轔崊恡悋懍燐㷠䢯鄰粦㔂亃翷斴甐麐廩冧㝝䚬鱗鏻獜撛㨆橉䫐檁箖䉮焛閵癝凜癛僯賃繗綝㐭",
|
||||
"ling": "领另令灵零龄岭铃玲凌陵棱菱伶苓聆翎绫羚鲮呤棂蛉囹瓴酃泠柃䔖蘦䖅蕶蔆蓤䕘䧙駖㸳砱朎霊霗㪮䰱龗霝䴒䚖孁靈㲆䨩夌坽䴇霛琌㱥㻏齡羐鹷齢澪淩㬡昤㖫跉䡼䡿輘軨䯍崚岺嶺㦭㥄爧燯炩㡵䴫麢䙥裬袊祾䄥錂鯪魿狑鈴掕皊櫺欞㯪醽䉁䍅䉹䈊䉖䠲舲彾秢笭衑竛閝㾉婈姈鸰刢領鴒䌢綾紷詅〇",
|
||||
"liu": "流六留刘硫柳溜瘤碌榴馏琉浏绺蹓遛镠骝鎏鹨熘镏锍旒蓅藰蒥䋷䭷驑駵駠騮磟磂䶉㙀塯霤㽌璢畱鬸珋瑠䰘澑畄瀏瑬蟉䗜㽞嚠疁罶嵧羀懰鷚翏雡熮㶯廇麍裗䄂䚧鐂鏐䱞䱖鰡鎦鋶鹠劉鶹㨨橊桺栁桞橮䉧癅嬼媹飗飂䬟飀飅餾綹㐬斿旈",
|
||||
"long": "龙隆笼垄拢胧聋咙陇窿珑垅弄砻茏栊滝眬泷癃䪊蘢䃧隴䏊龓尨礲朧霳䥢鏧壠靇瓏矓漋㙙㴳湰瀧昽曨蠬哢躘嚨嶐㟖巃巄贚㦕㢅爖㝫襱竉鑨攏梇䙪櫳槞㚅䡁徿籠䆍篭聾礱龍壟龒蠪驡鸗㰍竜㛞㑝儱豅㡣",
|
||||
"lou": "露楼漏陋搂喽篓娄镂偻髅蝼瘘耧蒌嵝鞻㔷蔞䮫㲎塿耬䝏剅瞜䁖漊溇螻嘍䣚䫫婁甊遱鷜㪹髏㟺嶁屚慺㥪廔熡䄛鏤䱾㺏摟樓簍䅹軁艛瘻瘺謱",
|
||||
"lu": "路陆绿露录鲁炉卢芦鹿碌禄卤虏庐噜麓颅漉辘掳六赂鹭戮泸橹璐潞鲈撸蓼箓轳胪垆氇鸬渌辂镥栌簏舻逯虂䩮蘆蓾蕗蔍菉陸䎼騼䮉騄馿䰕磠硵䃙硉臚膔氌䐂壚塷趢塶圥勎坴鵱瓐㱺璷琭矑虜㪭盧顱鸕鹵睩淕瀘滷澛瀂淥曥蠦螰㫽踛嚧蹗鷺䟿嚕㖨黸䡜轤轆輅䡎髗㠠賂峍㟤㦇䎑勠剹㢚廬爐廘熝粶䴪㼾䘵祿錴鐪鑪鏀㔪鏴鯥䲐鱸魯鴼鵦䱚鏕魲鑥獹録錄鈩擄攎摝擼醁㯭櫨樐㯝樚櫓㯟㭔椂枦甪罏稑籚簬簵穋簶穞籙艣艫艪舮㓐㿖㛬㪖䚄盝㜙娽僇侓纑彔䌒㢳㪐謢玈",
|
||||
"luan": "乱卵挛峦滦鸾孪栾銮脔娈䖂虊亂灤羉圞圝釠癴癵鵉孿㝈奱㡩灓曫巒鸞鑾攣欒孌臠㱍龻䜌",
|
||||
"lun": "论轮伦仑沦纶抡囵崙菕芲陯磮碖腀耣埨淪溣蜦踚㖮圇輪崘惀㷍鯩錀㤻掄棆䑳稐䈁婨侖倫綸論",
|
||||
"luo": "落罗逻洛络螺裸萝锣骆烙骡啰珞箩摞捋倮瘰猡硌荦脶漯泺镙椤雒蠃蘿蓏騾駱䯁硦覶頱腡㼈㱻覼䀩㴖濼曪囉囖邏羅峈㦬犖鏍鑼鮥玀㩡攞㰁欏洜㓢鵅籮躶䈷笿癳㿚㑩儸饠㒩纙絡䌱䌴驘臝䊨鸁䇔詻剆㽋咯",
|
||||
"lv": "律率绿虑旅氯铝履吕捋驴滤侣屡缕榈褛偻闾稆膂藘葎䕡驢膢膟垏勴慮濾郘呂氀㠥嵂屢爈焒褸祣鑢鋁㲶捛挔櫖梠櫚穭箻閭儢侶僂絽縷緑綠繂膐",
|
||||
"lve": "略掠锊寽㔀畧㨼圙鋢鋝稤",
|
||||
"ma": "马吗妈麻嘛骂码抹玛蚂蟆犸嫲么杩蟇蔴䣕馬䣖遤碼鬕瑪睰溤螞䗫嗎駡嘜罵䯦犘㦄䳸祃禡鎷鰢鷌獁㨸榪㾺痲痳閁媽㜫㐷傌㑻摩",
|
||||
"mai": "买卖麦脉埋迈霾荬劢唛薶勱邁蕒䮮脈霢霡䨪賣売䨫䁲嘪䚑鷶買麥衇䘑䈿㜥佅䜕",
|
||||
"man": "满慢漫曼蛮瞒蔓馒螨幔缦鳗谩颟墁埋鞔熳镘䕕顢㒼蔄蘰鬗䯶鬘䰋䐽䝡䝢㙢䟂瞞満滿㵘澷蟎鄤㬅㗈㗄䡬㡢慲屘悗䊡襔鏋鏝鰻獌摱樠槾䅼䑱姏娨嫚㛧僈饅䜱縵謾䛲矕蠻",
|
||||
"mang": "忙盲茫芒氓莽蟒铓牤邙硭漭䒎莾蘉茻牻駹厖硥壾㙁㻊䁳䀮盳浝汒蠎㬒蛖哤䟥䵨㟿㟐㟌㡛恾庬㝑鋩狵釯杧䅒笀䈍痝娏䖟杗吂",
|
||||
"mao": "毛矛貌冒贸帽猫茂茅髦瑁锚牦铆卯懋袤昴峁眊茆瞀蟊蝥耄泖旄蓩鶜䓮芼鄚萺堥暓䖥愗髳冇貓䫉覒氂犛㲠㺺渵㴘冐毷㪞㒻㫯蝐罞軞䡚冃㡌戼㝟錨夘鉾䀤鉚乮鄮貿㧌㿞㧇皃㒵楙柕㮘枆酕䅦笷媢㚹䋃",
|
||||
"me": "么濹嚰嚒",
|
||||
"mei": "没美每妹梅煤眉霉媒枚酶镁媚魅玫昧莓糜楣寐湄嵋袂浼鹛镅猸䒽葿䓺苺脄腜脢堳坆㺳䜸瑂珻眛睸䀛湈沬沒渼䰪蝞跊嚜槑䵢黣䍙嵄郿鶥韎㶬䊊煝塺䊈燘禖祙鎇鋂鎂抺攗鬽挴楳㭑䤂栂䆀䰨躾黴徾篃毎䉋羙凂痗媺嬍媄睂旀",
|
||||
"men": "们门闷瞒懑扪汶焖钔虋菛璊玧㱪懣㵍暪㡈䝧㥃㦖䊟穈燜䫒鍆㨺捫椚門悶閅們",
|
||||
"meng": "梦蒙猛盟孟萌朦氓锰懵蟒勐檬濛蜢虻蠓矇瞢甍礞艨艋䓝鄸䒐䠢顭夢莔氋鹲鸏蕄䰒㚞䑅䑃䏵㙹靀霿霥矒溕曚䗈甿㠓幪懜懞冡鼆䀄䙩㝱䙦錳䴌䲛鯭鯍䥂獴䥰㩚掹擝橗䤓䴿䵆䉚㒱癦䇇㜴儚饛鄳夣蝱",
|
||||
"mi": "密米秘迷蜜弥泌眯咪觅谜靡糜猕谧醚嘧弭脒幂麋縻汨蘼蘼芈敉宓冖祢糸蔝㰽蒾䕷蘪藌蔤葞䕳䮭镾覔㫘䪾覓㸓塓鸍羋瞇䖑濗漞濔㵋㳴㴵灖洣滵淧沵沕䌘渳瀰㳽羃䍘峚幎㠧㟜怽幦戂㥝㐘粎䊳麊熐麿爢㸏麛䴢冪宻鼏䁇冞㝥袮禰祕䱊銤獼㩢覛擟攠㨠䤍䤉釄醿醾䣾榓櫁樒簚䉾㜆孊侎䭩䭧䌩䌐㣆䥸彌㜷瓕䌕䋛䌏䛉謐䛑䛧謎詸",
|
||||
"mian": "面免棉眠绵勉缅腼冕娩沔湎眄渑宀芇葂䏃䰓勔靦靣䃇㻰㤁丏麺䀎睌矈矏矊汅㴐澠蝒㬆喕愐糆㝰鮸緜㮌䤄杣㰃櫋麵麪麫檰䫵臱媔㛯婂嬵偭㒙緬絻綿",
|
||||
"miao": "描苗妙秒庙渺瞄缪淼藐缈邈鹋眇喵杪鶓㦝䁧䖢㠺庿廟劰篎䅺竗媌嫹㑤緢緲玅",
|
||||
"mie": "灭蔑篾咩乜蠛薎孭礣烕䩏䁾瀎滅䘊哶吀幭懱鴓鑖鱴搣櫗衊䈼㒝",
|
||||
"min": "民敏闽皿悯抿泯岷闵苠珉玟黾愍鳘缗蠠䃉䂥碈砇垊琝瑉琘䁕盿湣潣旻旼䟨䡅罠䡑䡻㟭崏㞶䪸敯刡㥸鴖暋㟩敃惽怋憫忟鍲鈱䲄錉㨉捪笽笢簢勄慜鰵閩冺痻閔姄僶緡㢯䋋黽緍忞",
|
||||
"ming": "明命名鸣铭冥螟茗瞑酩溟暝蓂眀眳洺㫥鳴朙㟰慏䊅鄍䒌䫤覭㝠䆩䆨䄙銘猽掵榠凕嫇姳佲詺",
|
||||
"miu": "谬缪謬",
|
||||
"mo": "么没模末默莫摸脉磨冒膜摩墨漠魔抹沫陌寞摹蓦蟆蘑馍谟茉貉秣殁貘万貊耱麽镆瘼嫫嬷嬷靺䒬莈驀㱳謩藦䮬砞䩋礳䃺䏞貃䳮塻圽歿歾瞙眜瞐䁼眽眿尛蛨黙昩䘃蟔嗼嚤䁿㱄髍帞帓懡糢㷬爅㷵䯢劘麼䜆庅鏌銆魹䱅魩獏㹮皌擵枺橅䴲䉑妺嫼嬤饃䬴饝纆絈謨嘿",
|
||||
"mou": "某谋牟眸缪呣哞鍪蛑侔䥐劺鴾䏬䗋踎䍒恈䱕㭌麰繆謀",
|
||||
"mu": "目母木模莫幕牧亩墓姆慕穆暮姥牡拇睦募沐牟缪苜钼毪坶仫莯䧔鞪䱯楘㜈牳砪氁胟雮霂畞䀲暯蚞踇畂畮峔幙慔毣炑䥈鉬狇鉧㣎㧅䑵艒㾇凩㒇縸䊾畆畝畒",
|
||||
"na": "那哪拿纳娜呐捺衲钠内南肭镎靹蒳䖓乸䫱貀豽䏧雫䀑㴸䖧䟜吶㗙嗱軜䎎䪏袦鈉魶䱹鎿㨥䅞笝䇱郍䇣䈫拏妠搻納䛔",
|
||||
"nai": "奶耐乃奈萘氖迺艿能鼐柰孻螚䘅䯮腉渿褦釢錼㮈㲡廼㮏疓㾍䍲嬭倷",
|
||||
"nan": "难南男喃楠囡赧囝腩蝻䕼䔜萳戁難莮䔳遖䁪湳暔㫱㽖畘䶲煵揇抩枏柟䈒㓓婻娚侽諵䛁",
|
||||
"nang": "囊囔曩馕攮䂇嚢灢㶞蠰乪擃欜齉儾㒄饢",
|
||||
"nao": "脑闹恼挠瑙呶孬桡淖铙硇垴蛲猱夒䃩碙碯臑脳腦䑋䴃堖鬧蟯巎嶩悩憹怓惱鐃獶獿峱㺀㺁撓䄩閙嫐㞪㛴䫸㑎匘譊䛝詉䜀䜧",
|
||||
"ne": "呢呐讷哪疒䭆䎪眲㕯抐訥",
|
||||
"nei": "那内哪馁脮腇㼏㘨㖏䡾內䳖鮾䲎鯘錗㨅氞氝娞㐻餒",
|
||||
"nen": "嫩恁㶧㯎㜛嫰",
|
||||
"neng": "能䏻㲌㴰",
|
||||
"ni": "你疑尼泥拟逆妮腻倪匿溺霓昵睨怩鲵铌旎呢坭猊伲䘌臡苨䕥薿孴聣隬䧇膩貎胒䝚郳㪒堄䁥齯惄眤㵫淣聻埿氼暱晲蜺蚭跜輗㞾㠜㥾㦐愵籾麑䘽䘦觬鈮鯢狔㹸掜屔抳䰯擬棿檷柅䭲馜秜䵒䵑屰䦵嫟嬺婗妳儞㲻伱儗㣇縌誽䛏",
|
||||
"nian": "年念粘碾撵捻辗蔫拈埝黏鲶鲇辇廿䩞卄輦涊㲽淰躎蹍蹨哖唸㘝㞋惗焾鮎鯰攆撚䚓鵇秥簐䄭秊艌䄹姩䬯",
|
||||
"niang": "娘酿䖆醸釀嬢孃",
|
||||
"niao": "鸟尿溺袅脲茑嬲蔦䮍䦊䃵䐁㳮㠡㞙鳥䙚裊㭤樢嬝嫋㜵㒟褭",
|
||||
"nie": "捏聂涅孽镍蹑蘖镊颞啮嗫摄乜陧臬糵㜸苶菍聶顳隉孼蠥糱櫱䯅䯀䯵齧㚔䂼㘿㙞摰槷湼㴪圼囁囓躡踙嚙踂噛踗㡪嵲嶭巕㸎䄒鑷鑈钀鎳錜揑㩶枿㮆籋臲篞㖖痆闑帇敜䌜䜓讘捻",
|
||||
"nin": "您恁脌囜㤛拰䋻䚾䛘",
|
||||
"ning": "宁凝拧狞咛柠泞佞聍甯䔭薴聹鬡㿦矃澝濘䗿嚀寕㝕㲰寍寜鸋寧寗鑏獰擰橣檸㣷嬣儜倿䭢侫",
|
||||
"niu": "牛扭纽钮拗妞忸狃靵莥䒜牜䏔㺲䀔汼炄鈕杻䋴紐",
|
||||
"nong": "农弄浓脓哝侬蕽鬞膿䢉䁸濃噥農燶㶶襛禯㺜挵挊醲檂欁辳齈穠秾䵜癑儂繷譨",
|
||||
"nu": "努奴怒弩帑孥驽胬搙䢞笯駑砮㐐傉伮㚢",
|
||||
"nuan": "暖䎡渜㬉煗煖䙇奻餪",
|
||||
"nuo": "诺娜挪糯懦喏傩搦难锘逽㔮蹃㡅愞懧糥糑鍩䚥掿㰙梛榒橠稬穤㐡㛂儺㑚諾",
|
||||
"nv": "女衄恧钕朒沑籹釹衂",
|
||||
"nve": "虐疟硸䖋䖈瘧婩",
|
||||
"o": "哦噢喔筽",
|
||||
"ou": "偶呕鸥殴耦藕讴禺沤怄瓯区欧蕅毆鷗歐甌䚆鴎藲膒腢塸漚㼴嘔吘䯚慪熰鏂䳼櫙㛏㒖䌔䌂謳",
|
||||
"pa": "怕爬帕扒啪趴琶耙杷葩钯筢䔤苩䯲䶕潖帊袙皅掱舥妑",
|
||||
"pai": "派排迫拍牌湃徘俳哌蒎犤沠渒㵺䖰輫鎃猅棑㭛簲箄簰",
|
||||
"pan": "判盘胖潘盼叛攀畔拌蹒泮蟠磐槃爿袢柈番襻丬萠蒰聁䰉䰔磻䃑䃲坢眅㳪溿沜瀊洀蹣跘炍鑻鋬牉䈲鞶幋縏盤鎜搫媻頖鵥冸詊拚",
|
||||
"pang": "旁胖庞乓磅螃彷滂徬耪逄䮾厐龎肨膖胮霶㫄雱䨦眫㤶㥬炐龐鳑鰟舽䅭㜊嫎䒍覫",
|
||||
"pao": "跑炮泡抛袍刨咆疱狍庖匏脬鞄䩝萢皰礟礮靤砲奅褜垉㘐軳麅麃炰拋爮㯡麭䶌㚿䛌",
|
||||
"pei": "配培陪佩胚赔沛妃裴呸帔辔霈锫醅旆蓜阫馷䪹䲹䫠肧毰珮㳈浿㫲䣙賠㟝怌㤄䊃犻錇㧩衃姵俖伂轡裵斾",
|
||||
"pen": "盆喷湓葐翸歕喯噴呠瓫",
|
||||
"peng": "朋碰棚蓬膨捧篷鹏烹砰澎抨怦硼嘭彭堋蟛莑芃蘕駍騯鬅髼鬔䰃磞硑鵬蟚塜塳㼞淎泙踫輣軯䡫剻㥊憉恲熢袶䄘鑝錋匉捀皏掽樥槰椪䴶梈椖稝竼篣閛韸韼㛔倗傰纄弸苹亨",
|
||||
"pi": "皮批屁披辟疲脾匹劈僻副罢譬啤琵坯癖毗痞枇霹噼裨媲否貔丕吡陂砒邳铍圮睥蜱疋鼙陴埤淠蚍罴甓庀擗郫仳纰苉鴄㓟隦阰駓髬㔻礔磇䏘豾脴腗䑀䑄膍肶豼噽嚭壀耚疈錃潎澼蚾蚽䠘㔥羆䡟毘岯嶏崥翍礕䴙憵鷿鸊悂炋焷螷蠯鈹銔鉟銢鲏鮍魾魮䤨釽錍狓狉鈚抷㨽揊䰦䫌䤏㯅秛秠稫篺笓鵧㿙闢嫓伾伓枈紕諀旇䚰䚹",
|
||||
"pian": "片偏篇骗扁翩骈胼蹁便犏谝貵䮁騈駢騙腁䏒跰囨骿賆魸鍂楩楄覑㸤㾫㛹媥㓲騗鶣㼐諞",
|
||||
"piao": "票飘漂瓢瞟缥剽嫖朴嘌骠慓殍螵薸䕯䏇驃犥㵱㬓䴩鰾㺓㹾皫㩠魒勡彯飄顠翲㼼醥徱篻闝僄飃縹旚",
|
||||
"pie": "撇瞥苤氕丿暼鐅撆嫳覕䥕",
|
||||
"pin": "品贫频拼聘拚嫔颦姘牝玭榀蘋薲驞礗砏琕顰䀻矉蠙嚬汖㰋馪穦嬪娦貧",
|
||||
"ping": "平评凭瓶屏苹萍乒坪呯鲆枰娉俜蓱荓聠砯胓䶄塀玶㻂淜涄洴蚲蛢輧軿甹岼幈帲帡屛焩鮃檘缾䍈甁簈箳郱頩艵慿憑凴竮㺸評冯",
|
||||
"po": "破迫婆坡颇泼朴泊魄粕珀鄱钋笸陂叵钷皤蔢尀蒪頗駊奤砶䞟䨰㨇洦湐溌潑昢哱嘙嚩岥䯙岶䪖烞鉕釙鏺廹敀櫇䣮䣪酦醱醗箥䎊䄸㰴㛘㔇繁",
|
||||
"pou": "剖掊裒犃垺哣㧵抔捊抙箁咅娝婄",
|
||||
"pu": "普铺扑谱朴葡仆浦蒲埔菩瀑圃噗曝匍蹼溥濮璞莆氆攴镤镨堡攵䔕䑑蒱䧤陠㹒暴圤墣㺪瞨潽㬥䗱圑贌烳炇㲫䴆菐鯆鏷䲕鋪獛鐠擈撲酺檏樸㯷䈻䈬穙痡暜舖舗㒒僕纀諩譜",
|
||||
"qi": "起其气期器企七奇汽齐妻启旗弃骑欺漆棋岂凄契歧戚栖泣砌祈蹊乞迄崎祺鳍伎缉岐琦祁琪憩畦沏绮脐亟嘁荠杞麒颀耆啐蛴碛淇葺芪祇綦欹槭萋讫圻蕲揭萁芑骐亓丌柒汔蜞屺桤藄䩓䓅鄿䕤蘄䔇䒻炁芞藒䒗萕陭隑䏅䧘亝騹騎騏䭼䭶唘碶磩碕鬐䰇磧慼䫔䚉栔㓞㼤矵攲敧鵸碁䫏磜剘蜝㐞䳢棊肵䏠臍墄埼霋䞚䟄䎢璂䚍玘郪鶈䀙䶞盀盵濝淒呇滊湇湆蚑螧蚔蚚暣㫓蠐咠唭踦跂䟚噐呮罊蟿䡋軝䡔䢀㟢豈帺㟓岓嵜㠎邔慽㥓愭悽愒迉忯㞚㞓懠粸䉻麡䧵褀褄䙄禥䄎䄢鏚錡锜釮鲯鯕鶀䱈鰭䲬䰴夡玂猉鐑頎掑捿氣鬿魌気摖㩩櫀㯦㟚棲㩽榿檱㮑䣛桼憇諬䅲欫甈㣬䄫簯䅤䑴䉝艩簱籏㾨竒疧闙䀈婍娸傶僛倛䏌䬣㒅綺緀紪䭫䭬綥䌌斊棄䛴諆斉齊䶒䐡䁉䋯啔啟䏿䁈晵啓棨訖旂枝俟稽",
|
||||
"qia": "恰洽掐卡髂拤袷咭葜鞐圶硈胢䨐殎䶝䶗䠍跒䯊峠㡊帢㤉擖酠冾㓣䜑",
|
||||
"qian": "前千钱潜迁浅签纤牵欠遣铅歉谦乾倩嵌虔钳黔谴堑扦阡茜钎掮犍钤佥荨骞愆箝芡芊肷椠岍悭慊褰搴仟缱䪈韆䕭茾孯臤蜸掔婜蔳葥蕁蒨騚騝㸫鬜鬝厱膁㦮墘䥅亁乹圲䨿䁮䖍歬淺灊潛汧壍嬱汘濳蚈黚輤塹㟻槧㜞軡㡨岒慳悓忴粁䊴䞿騫錢鹐鵮銭鉗鑓鰬釺鎆鈆鉛鈐鏲㧄攑㩮拑皘㨜攐攓㩃拪揵扲撁橬檶遷棈榩櫏杄槏㯠圱刋谸籖䍉篏䈤䈴篟簽籤羬䇂䦲竏㪠䫡奷媊僉俔儙諐伣㐸偂傔䭤仱欦綪繾縴譴顅謙牽",
|
||||
"qiang": "强枪墙抢腔羌呛跄锵蔷羟襁戕戗嫱樯蜣炝锖镪薔蘠蔃墻玱瑲溬漒蹡蹌啌嗴唴嗆嶈廧熗獇猐鏘鎗鏹摤㩖搶檣椌䵁槍艢䅚篬牆羥羗羻羫墏斨牄嬙㛨戧強彊繈繦謒疆",
|
||||
"qiao": "巧桥悄瞧敲乔侨翘峭窍俏锹鞘憔跷撬樵荞橇壳雀诮峤鞒硗愀劁缲谯鞩鞽㤍䲾㚽菬荍藮蕎陗犞磽䃝䩌硚礄䂭翹墝㚁趬趫墽墧睄郻㴥踍蹺躈蹻嘺骹帩幧韒燆㢗㝯䆻竅釥鐰鄥䱁鄡鐈鍬撽櫵槗橋勪喬䀉䎗㡑鍫䇌頝癄嫶僺僑顦繰繑誚髜毃㪣髚譙",
|
||||
"qie": "切且窃契怯砌伽茄妾惬趄锲箧挈郄苆㥦匧㰼聺㚗洯蛪㓶厒㤲㰰朅淁㫸䟙踥㗫愜悏竊鍥䤿鯜㹤癿篋笡籡穕㾜䦧㾀㛍㛙䬊",
|
||||
"qin": "亲侵勤秦琴禽钦沁芹寝擒矜噙覃揿芩嗪衾螓吣锓檎菣靲䔷懃斳兓菳菦藽耹骎㮗駸肣㘦赾埐坅琹珡䖌澿瀙螼蠄昑蚙唚㞬嶜嵚嶔嵰懄慬吢㤈㢙庈㝲寴寢寑顉鈙鮼鵭欽鋟鈫抋捦撳㩒搇梫䠴笉䈜瘽䦦親㓎㾛嫀媇㪁鳹雂綅誛",
|
||||
"qing": "情清亲青轻请倾庆氢晴顷卿蜻擎氰磬罄圊箐苘檠謦黥鲭綮葝䔛碃䌠硘埥殸漀㷫郬靘靑殑濪淸暒甠啨軽輕鑋䝼䞍慶檾庼廎寈錆鯖䲔夝擏掅氫㯳櫦棾樈凊儬傾頃請勍剠䋜䯧",
|
||||
"qiong": "穷琼穹邛茕跫蛩銎筇卭㧭䓖藭藑蛬䊄䅃赹璚瓗㼇瓊瞏睘惸㷀煢焭熍焪䆳竆窮宆憌桏㮪橩笻䠻舼儝㒌䛪",
|
||||
"qiu": "求球秋丘酋囚蚯邱裘鳅巯泅湫虬遒楸逑龟蝤赇糗犰鼽俅蓲鞦鞧莍萩蘒芁䎿毬肍䞭趥坵皳䣇盚㺫蟗玌璆殏巰㐀汓浗湭渞蛷虯䟵䟬䠗唒㕤賕㟈崷㞗㤹㥢恘秌煪觩觓銶䲡䤛䱸鰽鯄鮂鰍鰌釚釻㼒㧨搝扏梂逎㭝朹湬蝵鹙鶖醔媝穐篍龝蠤㷕丠頄㐤叴訄恷䜪紌絿緧䊵訅仇",
|
||||
"qu": "去区取曲趣趋屈驱渠躯娶岖瞿祛蛐觑衢蛆龋黢癯苣蠼佉阒麯蘧蕖磲朐璩氍劬鸲麴诎葋䒧匤菃敺區䒼螶䧢阹驅駆駈厺髷胠刞臞䝣鼩㰦鼁坥䟊䞤趍趨耝璖麹䶚齲覰覻䁦䀠䂂戵鸜覷灈浀淭䖦㫢蠷蟝蝺呿䠐躣㖆軥㻃嶇㲘岴胊鶌憈翑焌爠粬煀袪鑺鴝斪䵶鰸魼鱋抾㭕㯫欔欋麮衐籧忂筁軀闃閴竘竬㜹佢伹紶㣄䋧絇詘詓誳㧁",
|
||||
"quan": "全权圈泉劝拳券犬醛蜷痊颧铨荃诠筌鬈畎辁悛犭绻勸顴葲虇䄐騡駩犈牷犮硂䑏䟒埢瑔䀬湶洤蠸䠰踡跧啳圏輇巏㟨㟫峑恮䊎烇鳈鐉鰁銓搼權楾権棬椦勧箞㒰齤奍韏觠牶闎婘姾佺縓綣絟詮",
|
||||
"que": "确却缺雀鹊炔瘸榷阙阕悫皵鵲䧿蒛碏礭確硞碻礐趞㱿㲉愨慤埆㱋塙琷㴶崅燩㕁搉㩁棤㰌缼䇎䦬㾡闕闋傕卻",
|
||||
"qun": "群裙逡麇䭽夋囷峮宭㿏㪊裠帬羣",
|
||||
"ran": "然染燃冉髯苒蚺䖄㲯蒅㸐䒣㿵髥肰䫇珃蚦呥嘫冄䎃衻袡袇䤡橪㯗䑙㾆媣姌㚩㜣䣸繎",
|
||||
"rang": "让壤嚷攘瓤禳穰蘘鬤㚂壌瀼躟懹爙獽穣䉴儴勷譲讓",
|
||||
"rao": "绕扰饶桡娆荛蕘隢㹛遶襓擾橈䫞嬈㑱饒繞",
|
||||
"re": "热惹喏若熱",
|
||||
"ren": "人认任忍仁韧刃妊纫壬饪仞衽荏稔轫亻靭靱荵芢㸾牣䏕䏰肕腍忈䀼軔㠴岃屻韌㣼䴦袵祍魜鈓銋扨梕杒栣朲棯忎躵秹䇮秂姙刄䋕鵀㶵栠飪餁䭃仭䌾紝纴綛紉絍認訒讱",
|
||||
"reng": "仍扔芿陾辸礽㭁䄧㺱䚮",
|
||||
"ri": "日䒤驲馹囸衵鈤釰釼",
|
||||
"rong": "容溶荣融绒熔蓉茸戎榕冗嵘镕蝾肜狨茙㲨䩸氄駥毧㲓㲝坈瑢瀜栄螎曧蠑䠜㘇䡥䡆軵嶸峵烿爃嵤榮㣑䘬褣䇀宂㝐䢇㼸鎔㺎搑搈榵㭜䤊槦穁䇯穃䈶羢媶嬫嫆傇傛縙絨",
|
||||
"rou": "肉柔揉蹂鞣糅葇鶔騥䰆腬脜䐓瑈瓇渘蝚㖻輮㽥禸韖煣粈宍鍒鰇楺䄾䧷媃厹譳",
|
||||
"ru": "如入乳儒辱汝蠕茹褥濡嚅孺铷缛襦女蓐薷颥溽洳蕠蒘㹘㦺鄏肗䰰顬渪蝡曘嗕嶿袽鱬銣㨎擩扖醹杁筎㐈鳰邚鴑䋈媷嬬帤鴽挐桇侞縟繻",
|
||||
"ruan": "软阮朊䓴碝礝耎腝堧壖瑌瓀輭㽭軟䞂撋䪭㼱媆偄㐾緛",
|
||||
"rui": "瑞锐蕊兑睿芮蕤蚋枘蕋蘃蘂䓲㓹甤叡㪫㲊壡汭蜹繠橤鋭銳桵㮃䅑㛱緌䌼",
|
||||
"run": "润闰膶瞤潤㠈橍閏閠䦞",
|
||||
"ruo": "若弱偌箬鄀爇蒻叒䐞渃㘃嵶焫鰙鰯挼捼楉篛婼鶸",
|
||||
"sa": "萨撒洒仨卅飒脎蕯薩靸躠隡馺䘮㪪灑㳐䊛䙣鈒钑摋櫒颯㽂㒎䬃訯",
|
||||
"sai": "塞赛腮鳃噻毸毢嗮㗷嘥顋愢賽䚡鰓揌䈢簺僿思",
|
||||
"san": "三参散伞叁糁毵馓弎㪚毿犙䫩鬖毶壭䀐潵㤾糤糣糝䊉䫅鏾鏒㧲㪔䉈閐厁俕饊傘繖",
|
||||
"sang": "丧桑嗓搡颡磉顙䫙桒喪䡦褬鎟槡",
|
||||
"sao": "扫嫂骚缫搔臊瘙埽鳋䕅騒騷䐹矂溞螦氉鰠鱢掻掃㿋㛐㛮颾繅髞梢",
|
||||
"se": "色涩瑟啬塞铯穑槭䔼雭䨛嗇㱇璱㻭歮濇濏澁渋㴔洓瀒澀轖懎㥶銫鏼摵擌㮦栜穯穡䉢閪瘷歰飋㒊繬譅",
|
||||
"sen": "森襂槮椮",
|
||||
"seng": "僧鬙",
|
||||
"sha": "沙杀啥纱砂傻刹厦杉莎煞鲨霎裟挲嗄唦痧唼铩歃萐蔱䮜髿䝊硰㲚㸺乷鯊桬啑喢帹翜翣廈粆魦鯋鎩猀毮閷殺榝樧㰱箑䶎䈉䵘閯㚫㛼儍倽紗繺",
|
||||
"shai": "晒筛曬㬠㩄簛籭簁篩",
|
||||
"shan": "山单善闪扇衫陕珊禅杉擅掺栅煽膳删姗汕赡跚掸讪缮舢疝嬗潸鳝搧鄯苫膻芟骟彡蟮钐陝剼騸㚒磰㪎脠赸墠圸墡㣌睒灗澘㶒晱蟺嘇軕刪邖幓贍炶煔覢熌䘰禪䄠釤銏䱉䱇鱓鯅鱔狦鐥䦅䥇䦂掞挻㨛樿柵檆椫䴮㣣笘䠾䆄痁閊㪨敾歚羴閃羶譱姍僐饍傓縿繕䚲訕謆",
|
||||
"shang": "上商伤尚赏汤裳晌熵墒垧殇觞绱鞝蔏鬺殤丄尙賞漡滳螪贘慯恦禓觴鋿鏛鑜樉䬕傷緔扄謪",
|
||||
"shao": "少烧绍召稍梢哨勺捎邵鞘芍韶筲艄苕劭潲杓莦萷䒚䔠蕱髾㪢䏴㲈玿輎㷹焼燒䘯袑鮹柖䈰䈾㸛娋卲綤䙼䬰弰紹旓",
|
||||
"she": "社设射涉舍摄舌蛇折拾畲奢赦慑麝赊佘猞歙阇厍滠揲蔎騇厙奓䂠䁋䁯灄渉㴇㵃涻蠂虵蛥䵥畭輋䞌賒賖懾韘慴䀅䄕䤮攝摂捨欇㰒㭙檨䠶㒤舎畬䬷弽䌰㢵設",
|
||||
"shen": "什身神深参甚审伸申沈渗婶肾慎绅呻娠砷蜃莘吲糁鯵诜谌瘆信葚胂渖哂矧谂蔘腎頣蓡薓葠駪㰮眘昚脤㥲堔珅眒瞫滲㵕㵊瀋涁蜄曑曋罧屾峷愼糂籸燊籶邥㔤審覾宷裑䆦穼罙祳鋠鲹鉮鰺鰰魫鯓氠扟䰠柛㰂榊兟甧甡鵢瘮㾕妽嬸㜤姺敒侺侁㑗紳弞矤訷谉讅詵諗訠",
|
||||
"sheng": "生声省胜升盛圣剩乘牲绳笙甥嵊晟眚蕂苼䎴聖陞阩陹鼪勝賸榺墭聲殅珄渻湦泩䚇㼳晠琞曻昇㗂呏貹䞉憴焺鍟䱆鵿鉎狌斘橳枡剰䪿㾪竔偗䁞繉縄繩譝甸",
|
||||
"shi": "是时实事十使什式世识食市史石始师失视示似适士势试施室释诗氏湿饰驶拾蚀尸逝侍誓矢狮匙柿硕嗜屎噬嘘栅拭峙仕恃虱轼舐耆螫豕谥弑奭殖蓍泽莳贳埘炻鲥鲺铈酾筮蒔貰䒨蒒葹䦹旹㱁乨駛䰄觢㸷䩃乭䂖䏡鼫鼭卋㔺邿塒㐊辻兘勢丗䴓鳾瑡亊䶡眎睗䁺眂眡溼溡浉湜濕㵓澨溮湤䖨㫑㫭時昰遈㒾呩㕜䟗㖷呞軾嵵崼峕忕蝨屍鸤䲩鳲恀烒煶䊓実寔宩冟襫襹褷䙾實祏視鉽釶鉐鉂䤱鮖鰣鯴鰘鰤鶳鉇鉃㹬㹝獅鈰鍦㹷銴弒揓栻枾釃榯榁柹㮶簭遾舓秲徥師釋釈笶籂箷竍䦠嬕姼餝䭄蝕餙飾飠䌳絁試詩諟戺䗐䛈適謚諡識",
|
||||
"shou": "手受收首守授售寿瘦兽狩绶扌艏膄壽夀垨涭獣㖟獸㥅収㝊鏉龵痩䭭綬䛵",
|
||||
"shu": "术数书属树述熟输束殊叔朱舒鼠疏署竖蔬抒枢淑暑薯梳俞蜀庶赎塾墅恕曙倏漱黍腧戍孰澍秫菽纾疋沭摅姝殳毹荗䩳䩱㷂竪豎䜿䝂薥䔫蒁藷陎㽰毺䑕䞖霔尌朮怷璹琡䜹㻿尗虪濖瀭潄潻㳆鼡㶖蠴暏䠱踈䟽咰數軗輸㟬贖䝪䎉疎屬庻糬襩裋襡䘤䆝鏣鮛鱪鱰錰鉥掓攄捒樞樹橾㯮杸䴰鶐䉀䢤術癙㾁書㛸婌㜐㣽鵨鄃侸跾倐儵焂㒔紓綀絉䃞",
|
||||
"shua": "刷耍唰㕞誜",
|
||||
"shuai": "率衰摔帅甩蟀帥䢦卛",
|
||||
"shuan": "拴栓涮闩䧠腨閂",
|
||||
"shuang": "双霜爽孀骦騻驦礵䫪鷞㼽㦼塽鹴鸘漺灀䗮䡯慡鏯欆艭㕠孇雙縔",
|
||||
"shui": "谁水睡税说氵脽氺涚涗帨裞祱稅閖㽷䭨誰",
|
||||
"shun": "顺瞬舜吮蕣䑞鬊䀵瞚䀢順㥧橓楯",
|
||||
"shuo": "说烁硕朔数妁蒴铄搠槊矟碩䀥爍鑠獡鎙欶箾䌃説說",
|
||||
"si": "思四死斯似司丝私饲寺撕祀肆嘶嗣厮俟泗咝巳鸶蛳驷锶汜伺食厶耜兕澌笥姒缌纟蕼䔮蕬㹑㸻牭騃駟騦磃蟴䏤鼶貄亖耛䎣㺨肂洍涘洠瀃泀泤㴲蟖螄㕽噝罳㟃孠覗廝燍䇁禗禩禠鈶鐁鋖鍶鈻鉰釲㺇銯虒枱杫梩柶楒㭒榹蜤㐌恖竢凘䦙䇃媤㚶㚸娰儩佀飔価俬颸飼飤緦糹㣈鷥絲",
|
||||
"song": "送松宋颂讼耸诵淞嵩悚凇怂忪菘崧竦駷鬆硹濍㕬嵷憽㞞愯䢠庺梥鎹㧐㩳㨦檧楤㮸枩柗㣝䉥聳慫娀頌枀倯傱餸䜬誦訟䛦",
|
||||
"sou": "搜艘嗽嗖擞飕馊薮螋叟溲瞍嗾锼蓃藪蒐䏂騪䮟鄋㵻㖩廋廀叜鎪獀捜擻摉摗醙櫢籔䉤䈹凁瘶傁颼䬒餿",
|
||||
"su": "素速苏诉缩俗塑肃宿稣溯粟酥簌窣夙谡嗉僳愫蔌涑觫蘇莤藗䔎蘓㕖骕驌碿䃤膆塐趚甦殐璛珟玊溸㴑㴼泝潥潚㴋洬㬘囌蹜憟䘻㝛鯂穌鱐鋉䥔㨞㩋榡遬㔄樎櫯梀㯈樕䅇橚䑿愬遡㪩肅䎘鷫嫊鹔䏋粛㜚㓘傃㑛餗㑉縤䌚䛾謖訴",
|
||||
"suan": "算酸蒜狻匴㔯祘筭笇痠",
|
||||
"sui": "随虽岁碎遂髓穗隋绥隧邃祟燧睢荽濉谇䔹荾鞖䪎芕隨䢫鐆遀砕膸埣瓍㻟璲㻪㻽歲歳睟瀡㵦浽澻㴚滖哸䠔雖䡵嵗㞸䯝髄亗賥韢熣煫襚禭䥙鐩夊檖䉌穂䅗穟㒸嬘䭉倠綏繐繀繸䍁䜔旞譢誶尿",
|
||||
"sun": "孙损笋荪狲飧榫隼蓀薞蕵孫飱䁚㡄㦏猻鎨搎損㔼槂簨箰筍鶽",
|
||||
"suo": "所索缩锁梭嗦琐唆羧唢娑蓑挲些睃睃嗍桫䓾莏䂹䐝䞽趖琑瑣㪽䖛溹溑逤䣔暛蜶嗩䞆惢褨鎍鎖鮻獕鏁鎻挱乺摍䵀䅴䈗簔簑㛖傞䌇縮莎",
|
||||
"ta": "他它她塔踏塌榻沓蹋嗒拓獭挞趿遢溻鳎铊闼鞳鞜䓠㿹牠䂿䶁䶀墖㳠㳫澾涾毾躂躢蹹嚃嚺㗳䵬䍝遝崉䎓粏褟祂禢錔鰨鮙鉈㺚㹺獺狧撻㧺搨榙橽㭼㯓䑜䍇㣵濌䈋䈳㣛闧闥闒阘㛥侤㒓傝䌈誻䜚譶",
|
||||
"tai": "大太态台抬泰胎苔汰钛酞肽薹骀邰炱跆鲐䑓菭孡態㣍駘夳冭坮臺㙵溙汏汱㬃旲㘆囼㥭忲䢰燤炲㷘㸀鈦鮐擡檯䣭䈚籉箈舦嬯㒗㑷㑀儓颱",
|
||||
"tan": "谈探弹碳坦叹滩炭摊坛贪谭潭痰毯瘫檀坍袒覃忐昙钽澹郯锬藫歎菼䕊䃪貚䏙䐺墵䞡壜埮墰㽑壇璮灘潬湠曇暺嘆嘽啴嗿惔憛憳憻顃㲜㲭㷋燂䊤襢䆱鉭錟擹攤醈醓醰橝榃舑舕罎罈䉡癱䦔痑婒怹倓僋貪談譚䜖譠",
|
||||
"tang": "堂唐糖躺汤塘倘趟烫膛淌棠搪螳蹚羰傥溏帑醣耥瑭螗铴镗樘鞺薚蓎隚䧜磄膅鼞赯矘漟燙湯坣䣘劏曭蝪踼䟖嘡啺戃糛爣糃煻鄌㲥鶶㼺禟鐋鏜钂鎲镋鎕㿩摥㭻橖榶䉎篖䅯闛㜍伖㑽儻㒉偒傏饄餹䌅㙶",
|
||||
"tao": "讨套逃陶桃萄掏涛淘滔叨韬啕绦洮饕跳鼗鞱鞉鞀㹗騊駣㚐夲瑫㴞濤蜪飸咷轁幍慆韜裪祹迯鋾匋搯槄醄䵚嫍絛䬞饀䬢弢縚綯绹縧詜謟討䚯䛬",
|
||||
"te": "特忑忒慝铽脦蟘㥂鋱㧹",
|
||||
"teng": "腾疼藤滕誊䕨虅驣䲢幐縢螣騰鰧謄膯鼟霯漛䠮熥籐籘䒅䲍駦痋邆儯",
|
||||
"ti": "体提题替梯踢蹄惕啼剔剃涕屉嚏锑棣倜悌鹈逖醍缇绨䪆䔶薙蕛䧅㯩騠髰鬄鬀碮厗朑䨑趧趯䎮瑅殢瓋睼漽渧題鶗惖逷㗣嚔蹏鷤嗁㖒罤䯜體骵䝰㡗崹惿屜褆䙗褅禔禵䚣鳀鯷鷈鮷悐銻鍗䴘鷉掦挮揥擿笹䣽㬱䶑䅠躰軆徲籊稊㣢䣡䶏鵜媞偍䬾緹䌡綈䛱戻謕歒鶙弟",
|
||||
"tian": "天田甜填添佃恬腆舔阗钿畑忝殄畋掭菾黇磌碵䩄胋鷏㙉甛塡靔靝瑱㐁琠璳兲睓沺淟湉晪䟧䠄唺㖭䡒䡘鴫䐌覥觍賟悿屇㥏㶺窴錪䥖搷㮇䣯酟䑚舚䄼䄽闐痶婖倎餂鷆緂㧂甸",
|
||||
"tiao": "条调跳挑眺迢窕苕佻笤啁粜髫龆蜩祧鲦䒒萔芀蓚蓨糶聎䯾朓趒齠晀旫䟭㟘脁岧岹恌庣宨窱祒覜鰷䱔樤㸠䠷䎄䳂嬥鞗䩦䖺鯈鋚鎥條絩誂",
|
||||
"tie": "铁贴帖餮萜聑驖䵿蛈呫貼怗鐵鐡䥫銕鉄䴴僣飻",
|
||||
"ting": "听停庭挺厅廷亭艇烃婷蜓汀霆町铤葶莛梃鞓聴聽聤厛鼮脡䵺圢耓珽涏渟䗴蝏甼嵉聼廰廳烴庁烶䱓鋌㹶邒桯榳楟頲颋筳䦐閮娗侹䋼綎誔諪",
|
||||
"tong": "同通统痛童铜筒桶桐佟侗酮捅瞳僮彤潼嗵恸峒茼砼仝蓪㼧㪌䂈䮵犝朣赨眮浵晍蚒䳋曈哃㠽峝峂㠉膧慟㤏烔粡庝炵燑䆚䆹鲖鉵銅鮦狪獞鉖樋㮔橦筩憅㣠秱㣚衕穜䶱勭氃䴀㼿痌㛚㸗餇絧統綂詷",
|
||||
"tou": "头投透偷愉骰亠蘣斢黈䞬頭㰯䟝㖣㡏䵉㢏鋀䱏鍮㪗敨婾媮妵㓱偸紏緰㕻䚵",
|
||||
"tu": "图土突途徒吐涂兔屠凸秃荼钍菟堍酴蒤葖莵鷋駼鼵迌腯㐋堗圡瑹㻬㻯㻠㻌䖘汢潳涋湥塗跿䠈唋圗圖図嶀㟮䣝鷵怢悇廜庩宊鶟鈯釷鵵鵌鍎鋵揬捸捈䤅㭸梌䅷馟兎禿稌筡鵚瘏痜凃䣄峹嵞䳜",
|
||||
"tuan": "团湍疃抟彖䵎貒墥剸鷒漙湪団䵯團畽圕慱䊜糰煓褖鏄鷻猯摶㩛槫檲篿䜝揣",
|
||||
"tui": "推退腿颓蜕褪忒煺藬蓷蘈隤駾㞂尵㦌䍾䀃㱣螁蛻蹪蹆骽㷟㢈㢑魋橔頺䅪頹䫋頽穨㿉㾯㾽㿗㾼弚娧俀僓弟",
|
||||
"tun": "吞屯豚臀囤褪饨鲀氽暾芚朜霕坉㼊豘涒旽蛌㖔噋黗軘臋忳㞘焞魨㹠㩔呑飩",
|
||||
"tuo": "脱托拖妥拓驼陀唾椭驮沱砣鸵佗坨跎箨柁柝橐沲鼍庹酡乇䓕萚蘀莌阤嶞陁馱駄䭾驝騨驒駝馲駞㸰㸱毻碢砤鼧鵎脫堶槖沰汑涶跅鼉咜咃䡐㟎岮䪑袥袉㼠饦䲊鰖鮀鴕魠䰿鮵狏扡拕捝挩橢楕杔䴱彵籜䍫㾃嫷媠毤侂仛侻飥紽詑託讬",
|
||||
"wa": "瓦挖娃哇蛙凹洼袜佤娲腽韈聉䎳砙膃劸㰪鼃䵷邷漥溛咓䠚嗢嗗畖㼘韤襪窐窪穵窊㧚搲攨屲瓾媧䚴",
|
||||
"wai": "外歪崴呙㖞喎咼䶐䠿顡竵",
|
||||
"wan": "完万晚玩湾弯碗顽挽烷婉皖蔓腕丸宛惋蜿豌绾纨莞剜脘畹塆菀芄琬箢薍萖萬㿸䂺䩊脕埦頑㝴刓壪琓瞣睕澫涴潫汍灣蟃晥晼晩踠唍輐輓贎䯈岏貦帵贃䝹忨卐卍翫䗕䘼䖤盌㽜鋄錽䳃鋔䥑鎫抏捖捥杤椀梚䅋笂妧婠倇㸘綰綩紈䛷彎",
|
||||
"wang": "往王望忘亡网旺汪妄枉惘罔辋辋魍朢菵莣尪迋尫瀇㲿㴏㳹蚟蛧蝄暀罒輞罖罓㓁䤑棢徍彺䰣徃兦仼亾尣尩䋞䋄網䛃誷",
|
||||
"wei": "为维围委未微谓卫味唯威危伟尾违伪慰魏喂胃纬畏韦惟苇萎尉蔚巍薇偎帷娓渭桅圩倭痿崴猬诿猥潍煨葳韪帏嵬玮逶炜隈隗洧涠沩囗軎鲔艉闱位䔺蔿䪋苿菋蓶葨䵋荱藯葦蘶芛蒍隇䧦䮹熭碨硙䃬㞇硊㕒䑊腲鄬爲䙿壝墛霨䞔霺䝐瑋㱬琟覹矀濻潙韑瀢渨潿溦浘湋洈濰溈蝛㬙韙蝟暐蜲蜼喴踓㖐喡䡺轊囲䵳罻圍㠕骩骫骪幃嶉嵔㟪峗峞嶶崣屗㞑叞褽犚螱㷉韡䪘韋違㥜愄愇懀燰烓煟煒寪頠鏏厃鳂鳚鍡鍏鮪鰄鮇鰃䲁鮠䥩撱㨊揻揋捤㧑楲㭏醀椳欈梶椲䈧㣲徫躗躛㦣衛衞䘙讆讏䉠覣犩䭳痏闈癓媙媦媁儰僞偉䬑颹䬐饖餵䬿餧偽縅緭緯㢻維䗽詴亹斖䜜謂䜅為諉",
|
||||
"wen": "文问温闻稳纹吻蚊紊瘟韫雯汶刎璺阌鞰莬芠䎽駇馼鼤脗肳塭豱瑥䰚殟珳渂溫㳷昷㗃呡㖧呅輼辒轀蟁炆顐㝧鳁鎾鰛鰮魰揾搵抆榅榲桽穩穏䎹聞閿闅䦩閺問闦瘒妏㒚伆饂繧紋彣䘇螡蚉㐎鴍鳼",
|
||||
"weng": "翁嗡瓮蓊蕹聬㹙㹚䐥䤰塕奣瞈滃暡螉㘢嵡䱵鎓攚齆䈵㜲勜鹟鶲罋甕",
|
||||
"wo": "我握窝卧沃涡斡蜗喔倭挝龌渥莴幄硪肟臥萵䰀臒腛㦱瓁㱧齷䁊瞃濣渦涹蝸䠎踒唩㠛焥窩猧捰捾㧴枂楃婐媉婑仴偓",
|
||||
"wu": "物无五务舞武屋误恶午吴伍污乌雾悟吾呜侮唔巫勿梧诬捂晤兀於芜戊毋鹉妩钨邬坞蜈婺鹜忤骛牾庑杌亡芴阢鼯圬浯鋈怃焐寤迕痦仵莁靰蘁茣蕪鹀鵐陚䎸隖奦務㡔嵍熃騖鶩䳱敄䮏鴮碔矹䃖䑁㬳霧雺霚塢墲鵡珷珸郚㻍㐚逜㐏忢瑦卼玝璑瞴洿汚汙洖溩㵲潕螐旿蟱䟼躌吳呉嗚䡧䍢峿屼嵨岉剭悮悞憮乄熓粅廡㷻窏窹祦鋙铻鄔鯃烏鰞歍鎢㹳扤摀㐅杇啎無鷡橆甒鼿齀箼䒉㽾䦜䫓䦍娬娪嫵娒倵俉㐳儛㑄弙䳇誣誈䛩誤譕",
|
||||
"xi": "系西细习息吸喜戏析希席洗稀惜悉袭腊溪媳牺锡嘻夕隙晰栖膝熙昔烯熄禧鳃徙嬉犀蟋奚兮曦蜥汐翕玺唏螅铣淅硒皙熹窸羲矽檄郗忾僖屣歙樨觋娭豨咭葸菥蓰隰鼷舄浠粞裼穸禊饩欷醯舾阋㐂葈蕮蒵䩤䓇匸煕蓆莃薂蒠覡隵隟䧍䢄枲騱驨騽䮎犔犠犧磶磎礂䲪䙽㚛䐼䏮貕舃肸肹谿䫣㙾霼趘䨳趇欯囍憙歖霫赩赥豯卌琋壐璽瞦䀘鬩戲䖒矖戱卥戯睎盻覤㳧澙渓潟鸂虩漝㵿漇潝螇暿蟢蠵晞嚱躧蹝呬㗩㕧焁唽噏喺繫黖㽯嵠巇㠄嶍酅㔒忚㤴慀恄憘㤸怬屃屓屭㥡㦻悕習飁恓㞒屖焟熺糦㸍焬熂燨爔熻邜鐊觿觽觹鳛錫鑴饻鱚鰼鯑鉨釸鈢㹫㺣鎴釳鏭狶鉩扱鵗㩗忥氥扸墍㯕榽䙵橲槢桸晳惁椞㮩㭡厀椺橀怸熈㷩稧徯㣟䈪郋鄎徆襲㿇凞瘜闟䊠㜎衋嬆傒翖俙㑶係饎餼餏郤豀縘繥緆細縰綌绤謑䜁譆諰焈謵䛥䜣䚷洒蹊",
|
||||
"xia": "下夏吓狭辖霞峡瞎厦虾暇匣唬遐侠黠呷瑕罅狎瘕硖柙蕸陿陜䖎騢硤碬磍夓埉圷㙤赮丅乤珨睱䖖虲蝦㗇㽠㘡翈轄峽懗䫗㰺䪗舝炠煆烚鶷䘥祫鎼鏬鍜魻鰕鎋狹梺筪敮舺閕䦖疜閜傄俠颬谺縖諕䛅",
|
||||
"xian": "现先线显限县鲜险献宪陷仙闲纤腺弦贤嫌掀咸衔羡掺涎娴见酰舷藓馅锨铣冼霰暹籼苋痫氙蚬岘莶燹跹跣祆猃筅鹇藖韅䁂賢贒莧䵌㔵蘚䒸䕔薟苮䧟䧋䧮陥険險礥䃱尠䃸臔姭䏹鼸毨胘韯壏塪赻䨘垷埳䨷現豏珗䶢䶟獻睍縣鹹県盷瞯涀灦㳭瀗㶍㳄鍌㵪澖湺䝨尟㫫晛蜆䗾顕䘆㬗蛝顯㬎蚿㘋咁咞嘕哯蹮躚啣㘅嗛輱䞁幰峴㡉崄嶮㦓忺憪憸糮粯廯䵇烍㡾麙鶱憲褼襳禒鑦臽䚚䀏鋧䥪䱤鱻䲗鮮銽錎䤼鍁銛铦銑獮玁狝㺌獫㧋搟攇㩈㧥撊撏挦攕㮭醎枮櫶杴㭠橌橺麲㭹㯀䉯䢾㪇箲馦秈銜䉳衘稴屳閒鷳羨鷼閑鷴㜪䦥㿅癇癎甉㛾娊奾嫺嫻嬐孅娹妶仚僊僲僩僴餡韱佡伭綫纎繊線缐絤㢺纖婱絃諴誢䜢譣誸洗",
|
||||
"xiang": "想相象向响像项乡降香羊享箱祥详湘橡翔巷厢镶襄饷骧芗飨衖葙蟓庠鲞缃缃項瓨䔗萫䢽薌驤䐟膷䜶珦瓖晑䖮曏跭㟟嶑㟄䊑廂麘襐勨鱌鱶鱜鐌銄鑲栙楿欀缿稥忀鮝鯗姠佭餉饟緗鄊蚃鄕郷鄉蠁響嚮㗽饗絴纕亯㖜㐔詳",
|
||||
"xiao": "小消笑效校销削晓肖硝萧孝啸潇俏嚣哮淆宵箫霄筱逍骁姣枭哓鴞蛸崤魈枵绡绡䒕虈䕧䒝蕭藃驍硣膮斅斆㬵毊瀟揱涍㕾敩洨蠨蟏暁曉蟂蟰嘵嘋鸮踃嚻囂呺嘐㗛咲嘯嘨髐髇憢㤊恔庨焇灲熽䊥灱宯窙銷鴵䥵梟㹲猇獢郩殽皢皛撨櫹穘鷍筿簫簘篠痚痟効㔅歗婋虓侾翛㑾烋颵俲傚綃彇謏誟歊誵訤詨",
|
||||
"xie": "些解写协谢械鞋斜谐胁泄歇邪契携卸屑泻蟹懈挟蝎偕楔勰亵燮鲑撷颉榭邂缬澥瀣廨躞叶薤渫獬榍绁靾鞢鞵䕵䩧䢡藛薢䕈䔑㔎㕐絜脅脇劦膎協㙝奊翓塮暬垥瑎齛齥齘禼卨䪥韰㱔㳦洩㴮瀉㵼㴬㴽㳿蝢旪蠍蠏㖑嚡噧㖿嗋䵦䡡峫嶰屟恊愶屧㞕㥟㦪灺緳熁燲糏炨炧䊝冩寫㝍褉䙎襭䙊祄㙰䲒䥱䥾猲揳挾拹㨙擷攜㨝烲焎娎㩉㩦擕㩪㰔䉣缷徢齂㣯䉏㣰䦑㸉㓔䦏媟孈脋伳偞偰龤㙦㒠㰡僁䭎紲緤綊纈絏縀繲絬衺䚳䙝褻讗爕夑㽊謝䚸諧血",
|
||||
"xin": "心新信欣辛薪锌芯馨鑫衅昕訢忻莘炘歆囟忄镡䒖阠孞馸舋釁脪盺噷噺軐惞廞焮襑鈊䰼鐔鋅邤㭄杺枔馫顖嬜妡㛛㚯㐰伈俽伩䜗䚱訫䛨",
|
||||
"xing": "行性形兴型星省幸醒刑姓杏猩腥邢惺悻荥陉擤荇硎饧䓷莕葕陘骍騂臖興㐩㓝㼬㙚垶㼛郉瑆䣆䁄睲涬洐蛵曐哘䳙煋滎㝭觲觪䤯鈃钘鉶铏銒鋞鯹鮏㨘䰢皨㮐䂔㣜箵篂㓑嬹婞娙倖侀餳緈䛭謃",
|
||||
"xiong": "雄兄胸凶熊汹匈芎熋䧺洶焽焸哅賯恟忷夐敻胷匂兇詗诇詾訩讻㐫",
|
||||
"xiu": "修秀休袖臭羞绣朽锈嗅溴貅岫咻宿髹庥馐鸺苬髤脙璓臹珛㱙琇潃滫螑嚊㗜峀糔烌鱃鮴鏥銹鏽鎀鏅銝樇齅㾋脩鵂俢飍饈綉繡繍褎褏",
|
||||
"xu": "许需须续序虚徐绪叙蓄吁絮婿嘘旭栩墟畜浒戌胥圩恤煦蓿酗顼诩魆洫盱砉溆勖糈醑芧蕦藇藚㰲蒣聓䔓㜿䦽㞊䳳㷦㕛㐨䂆驉㚜㦽鬚䢕盨媭嬃須㘧壻垿珬頊珝殈㺷瞁虛歔虗汿沀㵰湑潊漵朂晇暊勗旴冔蝑昫㖅噓㗵呴喣盢㞰賉怴㤢㥠慉燸烼歘欻烅裇䙒禑銊鑐欨鱮䱬獝揟魖䣱䣴楈槒聟䅡鄦卹䘏欰稰稸疞㾥䦗䍱姁㜅㑔㑯敍敘伵偦䬔侐俆䋶續続緒緖縃綇䜡訏譃諿詡諝谞訹許䛙休邪",
|
||||
"xuan": "选宣旋悬玄喧轩绚眩炫渲漩暄萱癣煊镟璇县碹泫铉揎楦痃儇谖萲䩰鞙䩙蓒蕿藼蘐蔙䧎駽䮄塇璿琄瑄琁玹懸睻眴矎贙䁢㳙㳬晅昍蠉暅蝖蜁暶昡咺䠣吅軒翾䴉㘣䍗䝮愋懁選愃怰烜翧䘩袨禤䚭䚙鋗䴋鰚䲂鍹㹡鏇鉉㧦楥梋檈箮衒䍻癬㾌媗嫙颴弲繏絢縼諼譞諠䗠䲻券",
|
||||
"xue": "学血雪削穴薛靴谑踅噱鳕泶蒆鞾茓辥膤學觷壆澩嶨燢鷽䨮趐坹瞲㔧辪㶅瀥峃鸴㗾㖸吷轌㞽㡜岤䎀袕鱈䱑狘㧒㿱乴樰䤕桖艝疶䫻䬂䫼䭥斈謔",
|
||||
"xun": "训迅寻循讯巡询旬逊驯勋熏汛殉荀薰峋洵浚鲟徇浔醺窨荨埙巽蕈孙曛恂郇獯蘍薫愻遜馴駨顨奞毥臐壦攳坃塤壎殾燅珣璕矄潠潯畃䖲蟳勛噀嚑噚䞊卂巺㽦爋燻燖䙉㝁迿㰬鱏鱘鑂狥㨚灥揗㰊杊栒樳桪稄勲勳鄩尋廵焄㜄侚伨偱㒐䭀紃䋸纁㢲訓訊詢䛜訙",
|
||||
"ya": "压呀亚牙雅芽鸭押崖哑鸦讶丫涯轧衙娅伢蚜桠氩垭碣琊疋迓邪砑睚吖岈揠痖蕥䪵鴉聐孲厊圧厓䃁壓厑䝟劜堐埡圠玡亞鵶䢝㰳亜襾齖齾漄啞唖圔䵝軋鴨崕䯉㿿庌䊦庘㝞窫錏鐚铔䰲犽猰猚㧎掗氬挜枒椏覀笌䄰稏䅉冴疨瘂䦪婭俹訝",
|
||||
"yan": "眼研验言严演烟沿盐延颜岩炎燕掩厌艳咽焰铅宴衍殷阎雁淹砚檐焉彦蜒俨奄谚腌堰晏胭嫣阉湮筵兖妍偃唁鼹恹琰赝魇滟酽焱餍甗郾菸厣埏鄢罨崦剡闫谳讠鹽匽鶠䕾酀㬫鷰㷼䴏嬊莚萒蔅䓂隁隒驠騴騐験驗牪硽黡䊙揅硏硯夵魘厭厴懕黶檿嬮饜䣍剦礹䂩鳫贗鴈贋㷳䶮䂴臙䑍鼴墕壧䎦䀋塩壛㿼䢥珚琂齞齴䖗鬳䁙覎䀽虤沇厳漹灔灎灧灩淊溎渷㶄㳂渰蝘曣㦔猒䗡暥曮鷃曕妟䳛昖㫟嚥嚈囐嚴碞喦嵒㘙啱㗴喭㘖噞黭黫黬黤艶艷豓豔巘巚巌嵓巖巗觃嵃嶖愝懨熖㷔焑敥炏焔煙烻㢂爓㢛麣戭褗裺鴳䄋䤷觾燄鰋䲓䱲狿抁揜椻㭺歅醼醃釅醶欕棪樮椼櫩楌篶郔䗺躽軅簷䅧䇾閆閹龑䢭兗乵閻顔遃㿕嬿㛪姸孍㚧姲娫娮傿弇顩㕣儼偐䭘酓㓧䳺䨄縯䊻綖䌪讌䜩顏彥訮詽讞扊諺㫃訁",
|
||||
"yang": "样养阳洋氧央杨扬羊仰秧痒漾疡佯殃鸯怏鞅恙徉炀暘泱蛘烊陽阦駚礢胦䑆霷雵坱垟珜䁑眏眻瀁䬗昜敭蝆䖹旸㬕咉䵮輰軮㿮崸䒋鴦崵岟㟅懩慃煬炴鍈卬鍚鉠钖鰑㺊氜揚氱抰㨾攁楧鸉楊柍様樣䇦劷羏㔦羕飬養瘍鴹癢姎佒飏颺䬬䬺䭐傟紻諹詇详",
|
||||
"yao": "要药摇腰咬耀遥邀瑶姚窑妖谣钥尧么乐吆肴夭侥舀幺徭珧杳窕窈鹞繇曜爻约轺崾鳐䔄蘨靿薬藥葽蓔苭葯騕磘㞁䂚䍃颻鷂飖尭垚顤堯瑤殀䋤䶧齩䁘㔽矅覞䁏眑㴭溔滧㵸㿢暚䖴㫐嗂喓鷕軺峣嶢嶤岆㟱愮熎燿烑㢓䴠宎㝔䙅袎窰䆙窅䆞穾窯窔祅鎐鰩鱙猺遙獟狕䚻䢣䌛邎揺抭搖㨱摿榣柼㮁楆枖榚鴁鼼䉰筄䑬艞㿑闄媱婹傜倄偠仸䬙餆餚鴢䌊䋂纅謡謠訞㫏䚺讑詏疟",
|
||||
"ye": "也业夜叶液爷野喝页冶耶咽邪拽曳腋椰掖噎晔谒揶射邺靥吔烨铘䓉葉枼䧨驜靨擪㪑頁礏墷枽㙪㐖璍瑘殗瞸瞱潱澲漜洂曄曅蠮暍曵曗嘢㗼㖶㖡㙒嶪嶫燁煠㥷爗鄴鸈業㱉㝣鐷鋣釾䥺鍱鎁䤶鎑馌䲜䥟䥡䤳擛皣捓抴擫歋㩎捙擨㭨壄埜䈎㸣僷倻爺䭟餣饁謁亪亱鵺",
|
||||
"yi": "一以义意已艺易议咦依益衣异医移遗疑亦宜仪忆伊倚乙亿抑役毅译椅翼姨蚁泄谊疫逸矣溢夷疙绎尾蛾怡胰贻裔彝邑奕翌屹臆颐诣驿熠咿蜴漪沂呓揖弋轶迤懿悒佚羿噫铱弈壹肄翳癔缢刈旖苡怿痍猗诒峄食射荑薏埸圯殪眙嗌黟嶷嶷衤饴钇镱镒挹酏劓舣瘗翊仡佾蘙芅匜䩟藝蓺虉弌頤巸媐䖁䓃㔴䔬苢勚勩萓苅殹㙠醫鹥瞖繄䗟贀悘鷖黳嫛毉瑿萟䓈藙䓹䕍䬥隿耴迆阣䧧㹓瓵䮊驛駅䭿逘礒䝝帠肊䐖䐅鶂膉貖䝘敼㰻霬墿夁亄㦤鷧㱅壱坄㙯埶㺿玴珆豷豛䰙鹝鷊辷㱲殔鴺乁頥齮齸頉㵩浳㶠渏沶㴁洟浥潩㳑瀷㲼泆浂澺洢㵝㴒湙曀蛦晹䗑曎螘蛡敡鶍螔蟻䗷螠蛜暆囈呭㘊跇遺跠㖂唈㘁呹吚㕥㘈異欭輢黓睪斁歝圛軼轙畩貤貽䞅骮䯆顗峓幆嶧䝯嶬崺怈㦉恞㠯䎈郼䢃懌乛㞔㰝㥴忔攺憶㡼廙熼燡㢞熤燚熪燱炈庡焲宧冝宐㝖襼袣䘝衪裿褹袘寱䘸䆿迱寲䄁祎禕釴鈘釔鉯䱌鶃鮧鯣䱒鳦鸃䲑鮨鏔匇迻狋㹭獈鐿鎰鈠銥撎䖊㣻拸乂㩘枻杙杝槸䣧醳醷桋栧椬栘柂檥檍榏枍䴬㰘椸檹棭䄬劮鄓㓷䇵䄿䇩穓顊稦笖簃乊䉨艗艤秇垼篒籎瘞瘱豙䴊義羛羠鷾痬䦴竩兿鹢鷁嫕㚤㜒嬄㚦㛕彛彞嬟嬑㜋㛄佁侇㑥俋伿㐹㑜䬁儀億飴饐䭂䭞䬮䭇伇㥋偯㑊弬㣂㡫䋵繹䋚䌻彜觺㽈繶縊讛詍裛詒旑訲讉譯㦾扅悥扆訳帟誼誃謻㫊議譩詣蛇",
|
||||
"yin": "因音引印银阴隐饮姻吟殷荫淫尹茵寅蚓瘾龈垠胤喑氤窨鄞吲圻狺铟茚霪堙洇廴夤夤蘟蔭䕃鞇靷荶蔩䓄蒑䒡隱檃櫽隠阥陻隂陰骃駰㹜碒磤㕂㥯㸒䨸霒趛赺韾堷霠烎璌殥慭珢齗齦龂䖜濦滛濥垽㴈峾溵乑湚泿洕朄螾蟫噖嚚㖗噾䡛囙輑圁嶾湮㡥崟崯㞤訔㦩懚㥼愔廕粌㝙㪦冘裀禋䤺䲟淾銦鮣犾鈝㹞銀鈏㼉㧢斦慇㐆㧈檼垔䤃酳鷣栶檭猌㙬憖憗筃秵㣧䇙癮癊䪩㾙闉凐瘖訚誾婬婣飲侌㱃飮䌥絪緸讔䚿諲訡",
|
||||
"ying": "应影英营映迎硬盈婴鹰颖赢荧蝇莹莺樱瑛萤鹦萦缨膺瀛荥璎嘤媵罂瘿茔楹郢滢颍嬴景蓥潆撄萾㲟鶧蘡藀䕦盁孾碤礯䃷朠膡䑉霙䨍珱瓔㼆䁐䀴鷪渶溁溋㵬浧㴄瀴濴瀠㶈瀯濙灐濚瀅蛍営鴬灜暎蝧蝿蠳蠅嚶甖巊鑍鸎罌嬰鸚賏譻巆愥煐㢍廮応罃褮塋䁝禜縈螢䪯營熒鶯覮鎣嫈瑩甇謍鶑噟應鷹譍䙬锳鐛鱦䤝㨕攖摬攍桜梬櫻櫿矨軈籝籯韺癭㿘媖孆偀僌㑞䭊䭗緓绬頴颕潁纓㯋穎贏",
|
||||
"yo": "哟唷喲",
|
||||
"yong": "用永勇拥涌庸泳佣咏雍踊蛹臃俑甬壅鳙恿痈邕喁慵湧墉镛饔苚蒏㦷勈硧砽惥埇䞻塎㙲慂滽㴩灉澭顒颙䗤踴嗈噰㞲嵱愑悀愹怺㶲醟鄘鷛廱彮㝘鲬鯒鱅鰫鏞郺擁柡栐㷏牅癰癕雝嫞傭㽫詠",
|
||||
"you": "有又由优油友游右幼尤犹忧邮幽诱悠铀佑黝柚囿蚴酉釉疣猷莠攸祐鱿繇鼬蚰牖呦莜莸尢卣蝣宥铕侑苃䒴蕕䢊聈牰駀䀁鄾迶憂䳑肬貁䞥耰丣㻀逌䚃瀀沋㳺湵滺浟泑蜏䖻哊嚘㕱唀㘥輏輶㽕峟甴峳懮㤑怞怮庮麀䆜禉銪鲉鈾魷鮋䱂㹨狖㺠猶逰㮋栯櫌櫾酭梄槱楢郵怣牗㰶秞䅎䑻㕗羑㾞羪姷㚭優佦㒡㛜䬀偤纋孧㓜訧亴䛻遊誘䢟㫍",
|
||||
"yu": "于与语育鱼余雨预域玉遇予欲宇愈渔誉郁羽狱御裕愉豫愚喻娱寓浴吁舆尉榆俞禹屿淤逾峪谕於迂虞瘀驭芋隅渝瑜阈毓盂汩熨禺腴揄臾煜钰彧鹬鬻谀馀聿纡竽伛龉觎圄欤妪玙邪蓣萸舁雩蜮昱蝓圉嵛庾庾燠窳窬饫狳瘐妤肀俣鹆蕷蘛㔱䩒芌蕍茰蒮䔡䖇萭薁蓹蘌茟匬萮陓隃䂊矞預鷸遹䮙驈馭䮇騟䂛戫礖砡㝼礇䃋硢硲䏸礜轝㦛鸒歟與譽輿䐳雤貐斞霱堣䨒迃亐圫䨞堬堉琙璵邘㺮㪀玗䢩敔䜽鳿瑀齬齵鸆䁌䲣䱷䁩睮歶淢㳚潏滪澦㳛盓澞湡漁灪淯㶛虶㬂䗨欥㬰蜟噳踰喅喩唹罭㽣輍骬嶼㠘髃嵎嶎䍞㠨崳惐䣁忬頨懙㥚㥥㤤㥔燏㡰粖庽㷒爩麌焴䢓㲾䴁䵫寙㝢䙔衧褕䆷穻鴧鴪䄏祤鈺鍝魣鱊鰅鴥鷠䰻魚鮽鯲㺞鐭䥏㺄獄銉鋊錥㼌扝扜挧魊扵棫櫲桙楰醧杅酑鬰欎欝鬱楀楡棛棜稢䈅稶穥籅䍂䄨䘘牏鄅㙑軉秗禦䉛篽籞艅艈籲込箊閾瘉羭癒䘱嫗嬩㚥䢖媀娛娯傴伃僪㒜儥兪覦歈㼶悆雓俁㑨㒁䬄偊饇飫餘螸慾鵒俼緎紆䋖㣃逳袬諛謣語斔䛕旟諭乻吾奥粥",
|
||||
"yuan": "原员远元院源愿圆园缘援袁怨冤渊猿宛苑垣媛鸳辕沅爰橼塬鸢圜螈垸瑗鼋湲芫眢掾蒝薳䩩薗蒬茒葾鳶㹉䏍貟贠騵厡厵願鶢䳒䳣遠鼘逺邧䲮黿㤪盶溒渁鼝淵渆渕灁蝯蚖蜵蜎䖠蝝肙剈噮鶰員圎園轅囦圓㟶円㥳悁鹓惌鵷寃褑褤裫裷禐駌夗鴛妴鎱鈨魭鋺猨㭇榞榬杬酛棩櫞笎衏邍羱䅈䬇嫄媴嬽傆㥐䬧䬼䨊縁緣謜䛄䛇",
|
||||
"yue": "月约越跃阅悦曰岳乐粤兑钥栎钺说刖瀹哕樾龠䖃戉蘥㹊玥䢲泧㬦蚏蚎䟠噦跀躍䠯啘䢁黦䡇軏岄曱嶽恱悅爚礿禴鉞鈅䥃鸑䤦鑰抈捳㰛籆矱籰粵籥篗箹閲閱嬳㜧妜㜰鸙䶳䋐約",
|
||||
"yun": "运云允匀韵孕晕蕴芸陨酝韫耘恽纭熨愠氲筠郓郧殒员昀狁蕓䩵荺蕰薀蒀蒷蒕藴蘊阭耺隕馻夽奫磒腪䢵䨶䲰雲䞫霣㚃鋆殞齫齳眃沄澐涢溳蝹暈鄖䚋喗囩䵴䡝畇賱㟦㞌韗韞愪慍惲煴熉熅鄆運褞䆬鈗䤞勻抎氳抣枟橒醖醞秐䉙馧筼篔䦾䇖韻㾓㚺妘㛣㜏䪳伝傊餫紜緼缊縜縕贇赟",
|
||||
"za": "杂咱扎咋砸咂匝拶䕹臜臢䞙䪞帀迊沯沞囋囃襍鉔魳桚韴雑雥雜",
|
||||
"zai": "在再载灾仔栽宰崽哉甾䏁䮨載䵧烖㦲酨㱰睵渽溨洅㴓㞨賳扗畠䣬災傤儎縡",
|
||||
"zan": "咱赞暂攒簪瓒錾糌趱昝㔆兂趲瓉鄼賛瓚濽灒噆喒暫蹔鏨㟛寁襸禶鐕鵤鐟撍攅攢揝橵贊簮㜺儧儹偺㤰饡㣅讃讚",
|
||||
"zang": "藏脏葬赃臧奘驵蔵塟匨駔臟臓羘㘸贜贓髒賍賘弉銺牂",
|
||||
"zao": "造早遭藻燥糟灶躁枣凿噪皂澡蚤唣薻䥣㲧趮栆璪璅䖣䗢蹧喿唕慥㷮煰鑿竃竈䲃皁醩棗梍簉艁䒃傮䜊譟",
|
||||
"ze": "则责择泽侧啧仄赜咋昃帻箦迮舴蔶賾䕪䕉矠礋責齰䶦齚歵瞔㳻㳁澤溭沢滜泎汄蠌昗㖽嘖鸅幘則崱庂襗䰹皟捑擇択樍䇥簀㣱嫧諎謮",
|
||||
"zei": "贼蠈賊戝鲗鱡鰂",
|
||||
"zen": "怎谮䫈譖",
|
||||
"zeng": "增综赠憎曾锃甑罾缯鬵磳増䰝璔囎㽪贈熷䙢鋥鱛橧矰鄫曽繒譄",
|
||||
"zha": "扎炸眨渣闸喳榨诈栅札乍楂喋蚱柞铡咤查咋砟哳吒揸齄痄䕢䃎厏䞢耫霅㱜皻㪥㗬㴙溠䖳灹㡸宱觰鲊鍘鮓䥷抯摣紥挓搾拃柤醡樝皶蚻紮䵵牐齇劄箚䵙㷢閘鲝鮺偧㒀䋾譇䛽詐譗",
|
||||
"zhai": "摘窄债宅寨斋翟砦责择侧祭齐瘵㡯鉙粂捚㩟榸檡夈債斎齋",
|
||||
"zhan": "展战站占粘颤沾崭盏斩毡湛瞻栈辗詹绽蘸谵旃霑搌㠭菚虦盞䪌薝驏驙䩅氊趈䟋琖㻵虥䁴惉戦魙䗃蛅戰噡輾轏斬覱㟞岾嶃嶄嶦嶘㞡䎒䘺鳣䱠䱼鱣㺘棧桟醆枬榐栴橏䡀㣶閚嫸偡佔僝飐颭飦饘䋎綻詀讝氈鹯鸇邅譧譫旜",
|
||||
"zhang": "长张章掌丈障涨帐仗胀账杖璋彰樟瘴漳蟑嶂鱆獐幛鄣嫜仉蔁騿礃脹墇㙣瞕涱漲暲㕩賬帳幥慞粻粀麞鏱扙痮㽴遧瘬傽餦張",
|
||||
"zhao": "找照招召赵着兆昭沼诏朝钊肇濯啁棹罩爪嘲笊䮓駋㕚䃍㐍䝖爫趙垗瑵瞾曌㷖䍜羄燳㡽炤鍣釗鮡狣㺐鉊㨄櫂枛罀箌䈇䈃䍮㐒巶妱㑿佋皽肈肁旐詔",
|
||||
"zhe": "这着者折哲遮浙蔗褶辙锗辄蛰蜇赭柘鹧摺螫谪著磔䩾䓆䎲㪿䮰䂞矺厇砓詟䐑䐲䏳喆嚞乽蟄謺䝕䝃歽淛蟅晣虴啫踷䠦嗻輙輒䵭轍㞏䗪鷓粍籷䊞襵袩銸鍺鮿埑晢啠悊㯰樜讋嫬這謫讁",
|
||||
"zhei": "这",
|
||||
"zhen": "真针阵镇振珍震诊侦贞枕圳砧斟疹臻甄祯桢朕赈帧榛缜箴畛稹填蓁胗溱浈轸鸩椹葴蒖䑐䫬薽萙塦陣聄㓄駗碪鬒䂧䂦㪛䏖䨯瑧殝珎遉貞眹眕㴨湞潧澵昣䟴辴轃黰甽軫賑帪幀䝩屒䲴寊䪴鴆裖袗禛禎鍼鋴針鎮錱覙鱵獉鉁鎭挋䳲揕搸抮㮳酙楨樼㯢栚籈姫嫃侲㐱偵弫䊶縥絼縝㣀眞紾紖纼誫診",
|
||||
"zheng": "正政争整证征丁蒸症郑睁挣怔拯铮筝狰峥诤徵钲聇脀烝氶䂻鬇爭㱏埩靕鴊䥭睜眐塣晸踭䡕崢崝幁㡧㡠炡䥌鉦錚猙鏳掙揁掟抍撜愸篜箏徰䈣䦛䦶鄭㽀癥姃媜佂凧䋊䋫糽䛫証諍證",
|
||||
"zhi": "之只制质知指直至志织支值致职止植置纸智执殖枝脂秩肢滞拓汁旨址稚芝吱帜蜘挚掷侄趾治识酯窒峙炙桎栉雉祗芷咫痣栀氏胝祇跖踯鸷蛭枳帙痔徵贽姪沚陟骘陟膣豸埴郅踬轾轵忮黹祉觯卮摭絷夂彘蘵芖䓌䛗䓜迣茋䓡藢䕌聀阯騭隲䏄㝂䎺職犆馶駤馽厔㕄砋礩䐭䐈䏯胑䑇乿膱墆鳷䧴坧䟈㙷覟墌疐坁垁漐縶贄慹騺鷙䥍摯執瓡驇臸瓆璏歭㫖淽滯滍汥洔淔洷㴛潌汦泜潪瀄晊蟙跱蹠躓躑㗌㗧㘉畤䡹輊軹豑豒剬䞃幟崻懥懫翐恉庤庢廌㡶熫寘衼襧衹袟禃祬祑帋觶觗䚦鋕銍铚䳅䱨鯯㩼锧鑕狾猘釞劧㨁貭搘挃㨖巵㧻抧摨搱扺扻劕質䭁擳擲梽榰㮹梔櫍椥柣櫛䵂栺樴㲛䝷鼅䵹鴙䅩秓徝稙憄䉅秷製䱥䄺䇛徏軄徴筫穉䆈稺秖䇽䉜㣥瘈痓䦯疻疷㜼娡㛿妷嬂値俧凪傂儨倁偫䬹隻綕緻䌤鴲紙紩織誌訨袠戠䫕旘",
|
||||
"zhong": "中种重众终钟忠肿仲衷踵盅冢锺忪螽舯茽蔠刣尰鼨腫塚堹歱泈汷蚛蜙蹱喠眾幒煄炂衶衳祌銿鈡䱰鴤鍾狆㹣鐘㲴柊衆籦種㣫徸彸筗瘇妕媑妐偅伀㐺終螤諥蚣",
|
||||
"zhou": "周州洲宙轴骤皱昼舟咒粥肘帚绉胄纣诌妯繇啁调荮碡酎籀䩜菷葤㔌䎻驟駎騆駲䐍䶇霌盩珘睭淍䖞晭嚋呪喌噣咮輖軸輈辀冑郮週㼙賙赒㥮粙炿烐皺鯞銂矪徟甃籒籕鸼鵃箒䈙䇠疛㾭晝婤㛩伷㑳㑇僽侜紂縐䋓诪譸詋䛆謅",
|
||||
"zhu": "主住注助逐著宁筑诸珠猪竹朱柱祝驻株贮嘱煮铸烛蛛瞩竺蛀拄伫褚诛侏澍潴箸渚炷躅铢瘃苎术属茱翥洙麈橥杼槠邾舳疰丶茿莇藸蓫䕽苧蕏陼䎷逫馵䮱駯駐劯硃砫䐢墸䟉壴坾䬡煑䝒豬櫫矚眝㵭瀦濐灟乼蝫蠋曯蠾蠩跦跓囑鸀罜軴帾貯嵀䝬劚斸㤖㔉㫂燝燭爥炢麆㝉㿾䘢袾窋宔祩鋳鑄钃鯺鱁鮢䥮㺛銖㹥鉒拀㧣柷欘樦櫧笁篫築笜筯䍆鴸鼄篴䇧簗䇡秼㾻竚羜孎㑏佇䭖飳䰞䌵纻紵絑紸諸迬殶詝誅註",
|
||||
"zhua": "抓爪髽膼撾檛簻挝",
|
||||
"zhuai": "拽转跩",
|
||||
"zhuan": "转专砖赚撰篆传颛馔啭蒃孨磚磗膞腞塼堟瑼鄟專甎叀専瑑蟤囀䡱転轉顓賺灷襈鱄篹籑䉵竱嫥僎饌縳諯譔",
|
||||
"zhuang": "状装庄壮撞桩妆幢僮奘戆庒荘莊壵湷糚粧樁梉狀壯焋娤裝妝",
|
||||
"zhui": "追缀椎坠锥赘惴骓隹缒墜騅硾礈腏膇贅沝畷䄌錣鑆鵻錐醊甀笍娷綴縋諈揣",
|
||||
"zhun": "准谆淳屯肫窀埻迍準啍㡒宒衠稕凖綧訰諄",
|
||||
"zhuo": "捉桌著卓着浊灼啄琢拙酌镯茁斫濯淖涿棹擢焯浞禚倬诼斮斲䕴䪼叕硺䶂龺圴斱琸鵫灂濁汋晫蠗啅罬斀劅㣿㪬蠿烵炪丵窡窧鐯鋜鐲㺟犳斵擆撯棳椓㭬槕櫡棁梲穱籗籱篧彴䅵穛娺妰諁諑謶鷟缴",
|
||||
"zi": "自子资字紫仔姿滋兹姊籽咨孜渍梓髭恣滓谘淄呲孳鲻龇辎甾眦秭赀吱齐茈趑耔觜訾嵫锱笫粢缁芓蓻茡荢䔂茊葘菑茲孖牸矷頾頿胏䐉胾嗭赼趦鼒㺭剚鄑㱴㰷齜眥呰啙貲胔鈭㰣姕漬澬湽虸吇嗞輺輜崰䘣禌釨鰦鯔鎡镃鍿錙㧗杍橴榟椔秄䅆稵資栥秶㾅㜽姉鶅倳紎緇緕纃訿齍諮孶玆",
|
||||
"zong": "总宗综纵踪棕粽鬃熜偬从腙葼蓗骔騌騣惣㹅鬉䰌碂磫朡堫䝋豵鬷昮蝬䗥蹤踨䍟嵏嵕嵸惾翪燪糭㷓糉㢔焧鑁鯮鯼鍐猔猣㚇揔摠搃捴㯶椶稯熧瘲疭倧傯倊綜緫緵總繌縦縱縂総緃",
|
||||
"zou": "走奏邹揍陬鄹驺鲰诹菆郰棸騶赱㔿齱齺㵵䠫黀鄒鯫鯐掫棷箃緅諏",
|
||||
"zu": "组族足祖阻租卒诅镞俎菹靻䔃蒩葅䯿珇䖕唨踤哫㞺崒崪䚝䱣鎺鏃爼椊䅸箤卆組䘚詛㲞㰵",
|
||||
"zuan": "钻攥纂躜缵繤䂎躦鑚鉆鑽䤸劗籫纉纘䌣",
|
||||
"zui": "最嘴罪醉咀蕞䮔厜璻蟕晬嗺噿嶵㠑嶊冣㝡䘹祽鋷錊酻酔樶檌㰎栬槜檇辠䘒稡纗絊",
|
||||
"zun": "尊遵樽鳟撙墫噂嶟鶎銌鱒鐏捘罇鷷僔繜譐",
|
||||
"zuo": "作做坐左座昨佐琢撮柞唑祚捽阼胙嘬怍酢笮葄葃蓙䔘苲莋㸲㝾䞰䎰咗㘀㘴岝岞䝫糳袏鈼㭮稓穝秨筰㛗㑅飵侳繓䋏"
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
local Element = require('elements/Element')
|
||||
|
||||
---@class BufferingIndicator : Element
|
||||
local BufferingIndicator = class(Element)
|
||||
|
||||
function BufferingIndicator:new() return Class.new(self) --[[@as BufferingIndicator]] end
|
||||
function BufferingIndicator:init()
|
||||
Element.init(self, 'buffering_indicator', {ignores_curtain = true, render_order = 2})
|
||||
self.enabled = false
|
||||
self:decide_enabled()
|
||||
end
|
||||
|
||||
function BufferingIndicator:decide_enabled()
|
||||
local cache = state.cache_underrun or state.cache_buffering and state.cache_buffering < 100
|
||||
local player = state.core_idle and not state.eof_reached
|
||||
if self.enabled then
|
||||
if not player or (state.pause and not cache) then self.enabled = false end
|
||||
elseif player and cache and state.uncached_ranges then
|
||||
self.enabled = true
|
||||
end
|
||||
end
|
||||
|
||||
function BufferingIndicator:on_prop_pause() self:decide_enabled() end
|
||||
function BufferingIndicator:on_prop_core_idle() self:decide_enabled() end
|
||||
function BufferingIndicator:on_prop_eof_reached() self:decide_enabled() end
|
||||
function BufferingIndicator:on_prop_uncached_ranges() self:decide_enabled() end
|
||||
function BufferingIndicator:on_prop_cache_buffering() self:decide_enabled() end
|
||||
function BufferingIndicator:on_prop_cache_underrun() self:decide_enabled() end
|
||||
|
||||
function BufferingIndicator:render()
|
||||
local ass = assdraw.ass_new()
|
||||
ass:rect(0, 0, display.width, display.height, {color = bg, opacity = config.opacity.buffering_indicator})
|
||||
local size = round(30 + math.min(display.width, display.height) / 10)
|
||||
local opacity = (Elements.menu and Elements.menu:is_alive()) and 0.3 or 0.8
|
||||
ass:spinner(display.width / 2, display.height / 2, size, {color = fg, opacity = opacity})
|
||||
return ass
|
||||
end
|
||||
|
||||
return BufferingIndicator
|
||||
@@ -1,100 +0,0 @@
|
||||
local Element = require('elements/Element')
|
||||
|
||||
---@alias ButtonProps {icon: string; on_click?: function; is_clickable?: boolean; anchor_id?: string; active?: boolean; badge?: string|number; foreground?: string; background?: string; tooltip?: string}
|
||||
|
||||
---@class Button : Element
|
||||
local Button = class(Element)
|
||||
|
||||
---@param id string
|
||||
---@param props ButtonProps
|
||||
function Button:new(id, props) return Class.new(self, id, props) --[[@as Button]] end
|
||||
---@param id string
|
||||
---@param props ButtonProps
|
||||
function Button:init(id, props)
|
||||
self.icon = props.icon
|
||||
self.active = props.active
|
||||
self.tooltip = props.tooltip
|
||||
self.badge = props.badge
|
||||
self.foreground = props.foreground or fg
|
||||
self.background = props.background or bg
|
||||
self.is_clickable = true
|
||||
---@type fun()|nil
|
||||
self.on_click = props.on_click
|
||||
Element.init(self, id, props)
|
||||
end
|
||||
|
||||
function Button:on_coordinates() self.font_size = round((self.by - self.ay) * 0.7) end
|
||||
function Button:handle_cursor_click()
|
||||
if not self.on_click or not self.is_clickable then return end
|
||||
-- We delay the callback to next tick, otherwise we are risking race
|
||||
-- conditions as we are in the middle of event dispatching.
|
||||
-- For example, handler might add a menu to the end of the element stack, and that
|
||||
-- than picks up this click event we are in right now, and instantly closes itself.
|
||||
mp.add_timeout(0.01, self.on_click)
|
||||
end
|
||||
|
||||
function Button:render()
|
||||
local visibility = self:get_visibility()
|
||||
if visibility <= 0 then return end
|
||||
cursor:zone('primary_down', self, function() self:handle_cursor_click() end)
|
||||
|
||||
local ass = assdraw.ass_new()
|
||||
local is_clickable = self.is_clickable and self.on_click ~= nil
|
||||
local is_hover = self.proximity_raw == 0
|
||||
local foreground = self.active and self.background or self.foreground
|
||||
local background = self.active and self.foreground or self.background
|
||||
local background_opacity = self.active and 1 or config.opacity.controls
|
||||
|
||||
if is_hover and is_clickable and background_opacity < 0.3 then background_opacity = 0.3 end
|
||||
|
||||
-- Background
|
||||
if background_opacity > 0 then
|
||||
ass:rect(self.ax, self.ay, self.bx, self.by, {
|
||||
color = (self.active or not is_hover) and background or foreground,
|
||||
radius = state.radius,
|
||||
opacity = visibility * background_opacity,
|
||||
})
|
||||
end
|
||||
|
||||
-- Tooltip on hover
|
||||
if is_hover and self.tooltip then ass:tooltip(self, self.tooltip) end
|
||||
|
||||
-- Badge
|
||||
local icon_clip
|
||||
if self.badge then
|
||||
local badge_font_size = self.font_size * 0.6
|
||||
local badge_opts = {size = badge_font_size, color = background, opacity = visibility}
|
||||
local badge_width = text_width(self.badge, badge_opts)
|
||||
local width, height = math.ceil(badge_width + (badge_font_size / 7) * 2), math.ceil(badge_font_size * 0.93)
|
||||
local bx, by = self.bx - 1, self.by - 1
|
||||
ass:rect(bx - width, by - height, bx, by, {
|
||||
color = foreground,
|
||||
radius = state.radius,
|
||||
opacity = visibility,
|
||||
border = self.active and 0 or 1,
|
||||
border_color = background,
|
||||
})
|
||||
ass:txt(bx - width / 2, by - height / 2, 5, self.badge, badge_opts)
|
||||
|
||||
local clip_border = math.max(self.font_size / 20, 1)
|
||||
local clip_path = assdraw.ass_new()
|
||||
clip_path:round_rect_cw(
|
||||
math.floor((bx - width) - clip_border), math.floor((by - height) - clip_border), bx, by, 3
|
||||
)
|
||||
icon_clip = '\\iclip(' .. clip_path.scale .. ', ' .. clip_path.text .. ')'
|
||||
end
|
||||
|
||||
-- Icon
|
||||
local x, y = round(self.ax + (self.bx - self.ax) / 2), round(self.ay + (self.by - self.ay) / 2)
|
||||
ass:icon(x, y, self.font_size, self.icon, {
|
||||
color = foreground,
|
||||
border = self.active and 0 or options.text_border * state.scale,
|
||||
border_color = background,
|
||||
opacity = visibility,
|
||||
clip = icon_clip,
|
||||
})
|
||||
|
||||
return ass
|
||||
end
|
||||
|
||||
return Button
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user