Skip to content

Instantly share code, notes, and snippets.

@nyonson
Created November 30, 2023 18:13
Show Gist options
  • Save nyonson/bcbad7bafdeba2230da4e9a0ab2df34e to your computer and use it in GitHub Desktop.
Save nyonson/bcbad7bafdeba2230da4e9a0ab2df34e to your computer and use it in GitHub Desktop.
master_me pipewire filter config
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