summaryrefslogtreecommitdiffstats
path: root/TOOLS/lua/drc-control.lua
blob: 1771d099a11497bddda90d1cace198f803a98e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
-- This script enables live control of the dynamic range compression
-- (drc) audio filter while the video is playing back. This can be
-- useful to avoid having to stop and restart mpv to adjust filter
-- parameters. See the entry for "drc" under the "AUDIO FILTERS"
-- section of the man page for a complete description of the filter.
--
-- This script registers the key-binding "\" to toggle the filter between 
--
-- * off
-- * method=1 (single-sample smoothing)
-- * method=2 (multi-sample smoothing)
--
-- It registers the keybindings ctrl+9/ctrl+0 to decrease/increase the
-- target ampltiude. These keys will insert the filter at the default
-- target amplitude of 0.25 if it was not previously present.
--
-- OSD feedback of the current filter state is displayed on pressing
-- each bound key.

script_name = mp.get_script_name()

function print_state(params)
    if params then
        mp.osd_message(script_name..":\n"
                           .."method = "..params["method"].."\n"
                           .."target = "..params["target"])
    else
        mp.osd_message(script_name..":\noff")
    end
end

function get_index_of_drc(afs)
    for i,af in pairs(afs) do
        if af["label"] == script_name then
            return i
        end
    end
end

function append_drc(afs)
    afs[#afs+1] = {
        name   = "drc",
        label  = script_name,
        params = {
            method = "1",
            target = "0.25"
        }
    }
    print_state(afs[#afs]["params"])
end

function modify_or_create_af(fun)
    afs = mp.get_property_native("af")
    i = get_index_of_drc(afs)
    if not i then
        append_drc(afs)
    else
        fun(afs, i)
    end
    mp.set_property_native("af", afs)
end

function drc_toggle_method_handler()
    modify_or_create_af(
        function (afs, i)
            new_method=(afs[i]["params"]["method"]+1)%3
            if new_method == 0 then
                table.remove(afs, i)
                print_state(nil)
            else
                afs[i]["params"]["method"] = tostring((afs[i]["params"]["method"])%2+1)
                print_state(afs[i]["params"])
            end
        end
    )
end

function drc_scale_target(factor)
    modify_or_create_af(
        function (afs)
            afs[i]["params"]["target"] = tostring(afs[i]["params"]["target"]*factor)
            print_state(afs[i]["params"])
        end
    )
end

function drc_louder_handler()
    drc_scale_target(2.0)
end

function drc_quieter_handler()
    drc_scale_target(0.5)
end

-- toggle between off, method 1 and method 2 
mp.add_key_binding("\\", "drc_toggle_method", drc_toggle_method_handler)
-- increase or decrease target volume
mp.add_key_binding("ctrl+9", "drc_quieter", drc_quieter_handler)
mp.add_key_binding("ctrl+0", "drc_louder", drc_louder_handler)