Migrate
Some checks failed
Release xbps for amd64 / compilation-amd64 (push) Failing after 1m22s

This commit is contained in:
ITmodulo 2024-01-27 16:06:25 +01:00
commit fc8212c51e
22 changed files with 383 additions and 2 deletions

View file

@ -0,0 +1,33 @@
context.modules = [
{ name = libpipewire-module-filter-chain
args = {
node.description = "Xiph's rnnoise ladspa plugin"
media.name = "Noise Canceling mic"
filter.graph = {
nodes = [
{
type = ladspa
name = rnnoise
plugin = /usr/lib/ladspa/librnnoise_ladspa.so
label = noise_suppressor_mono
control = {
"VAD Threshold (%)" = 50.0
"VAD Grace Period (ms)" = 200
"Retroactive VAD Grace (ms)" = 0
}
}
]
}
capture.props = {
node.name = "capture.rnnoise_source"
node.passive = true
audio.rate = 48000
}
playback.props = {
node.name = "rnnoise_source"
media.class = Audio/Source
audio.rate = 48000
}
}
}
]