blob: ded629d4ea127081fab03960e16411d04fba5039 (
plain)
1
2
3
4
5
6
7
8
9
|
-- show osc all the time when file is an audio file.
-- source: https://github.com/mpv-player/mpv/issues/3500#issuecomment-305646994
mp.register_event("file-loaded", function()
local hasvid = mp.get_property_osd("video") ~= "no"
mp.commandv("script-message", "osc-visibility", (hasvid and "auto" or "always"), "no-osd")
-- remove the next line if you don't want to affect the osd-bar config
mp.commandv("set", "options/osd-bar", (hasvid and "yes" or "no"))
end)
|