Created
November 30, 2023 18:13
-
-
Save nyonson/bcbad7bafdeba2230da4e9a0ab2df34e to your computer and use it in GitHub Desktop.
master_me pipewire filter config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
context.modules = [ | |
{ | |
name = libpipewire-module-filter-chain | |
args = { | |
node.name = "Filtered Mic" | |
node.description = "Filtered Mic" | |
filter.graph = { | |
nodes = [ | |
{ | |
type = ladspa | |
name = master | |
plugin = /usr/lib/ladspa/master_me-ladspa.so | |
label = master_me | |
# Presets: https://github.com/trummerschlunk/master_me/blob/master/plugin/master_me-easy-presets.lv2/presets.ttl | |
control = { | |
"Target" = -23 | |
"gate bypass" = 1 | |
"gate attack" = 1 | |
"gate hold" = 1 | |
"gate release" = 500 | |
"eq highpass freq" = 20 | |
} | |
} | |
] | |
} | |
capture.props = { | |
node.passive = true | |
audio.rate = 48000 | |
} | |
playback.props = { | |
media.class = Audio/Source | |
audio.rate = 48000 | |
} | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment