modern_lisp-machine/.config/mpv/scripts/increase-volum.lua

7 lines
196 B
Lua
Raw Normal View History

2024-09-08 20:06:38 +00:00
mp.register_event("start-file", function()
mp.set_property("af", "volume=10")
mp.command("af-clear")
mp.command("af-add=volume=10:force")
mp.command("af-add=volume=10:force")
end)