summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorGuido Cella <guido@guidocella.xyz>2021-07-27 14:14:24 +0200
committeravih <avih@users.noreply.github.com>2021-07-27 20:32:05 +0300
commit6fe4fc4593dd5126a208fda83bbff97c7add446b (patch)
treecbbc40fb2d860d42db63bfcbd2c33ca5483678ff /TOOLS
parente2c24adebede2d269b0fa2df3f1a05a44343e8c0 (diff)
downloadmpv-6fe4fc4593dd5126a208fda83bbff97c7add446b.tar.bz2
mpv-6fe4fc4593dd5126a208fda83bbff97c7add446b.tar.xz
TOOLS/autocrop.lua: allow hiding OSD messages
Because having these on every video is annoying, and when you resume from watch later files, the filters are applied immediately so they hide your osd-playing-msg or equivalent show-text commands.
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/lua/autocrop.lua18
1 files changed, 12 insertions, 6 deletions
diff --git a/TOOLS/lua/autocrop.lua b/TOOLS/lua/autocrop.lua
index a06db7f702..3683b9f02a 100644
--- a/TOOLS/lua/autocrop.lua
+++ b/TOOLS/lua/autocrop.lua
@@ -56,6 +56,9 @@ detect_min_ratio: number[0.0-1.0] - The ratio of the minimum clip
detect_seconds: seconds - How long to gather cropdetect data.
Increasing this may be desirable to allow cropdetect more
time to collect data.
+
+suppress_osd: bool - Whether the OSD shouldn't be used when filters
+ are applied and removed.
--]]
require "mp.msg"
@@ -67,7 +70,8 @@ local options = {
detect_limit = "24/255",
detect_round = 2,
detect_min_ratio = 0.5,
- detect_seconds = 1
+ detect_seconds = 1,
+ suppress_osd = false,
}
read_options(options)
@@ -82,6 +86,8 @@ timers = {
detect_crop = nil
}
+local command_prefix = options.suppress_osd and 'no-osd' or ''
+
function is_filter_present(label)
local filters = mp.get_property_native("vf")
for index, filter in pairs(filters) do
@@ -113,7 +119,7 @@ end
function remove_filter(label)
if is_filter_present(label) then
- mp.command(string.format('vf remove @%s', label))
+ mp.command(string.format('%s vf remove @%s', command_prefix, label))
return true
end
return false
@@ -157,8 +163,8 @@ function detect_crop()
mp.command(
string.format(
- 'vf pre @%s:cropdetect=limit=%s:round=%d:reset=0',
- labels.cropdetect, limit, round
+ '%s vf pre @%s:cropdetect=limit=%s:round=%d:reset=0',
+ command_prefix, labels.cropdetect, limit, round
)
)
@@ -249,8 +255,8 @@ function apply_crop(meta)
-- Apply crop.
mp.command(
- string.format("vf pre @%s:lavfi-crop=w=%s:h=%s:x=%s:y=%s",
- labels.crop, meta.w, meta.h, meta.x, meta.y
+ string.format("%s vf pre @%s:lavfi-crop=w=%s:h=%s:x=%s:y=%s",
+ command_prefix, labels.crop, meta.w, meta.h, meta.x, meta.y
)
)
end