dotfiles/wireplumber/.config/wireplumber/wireplumber.conf.d/51-alsa.conf
Sanchayan Maity 8df0a2b704
wireplumber: Migrate configuration from 0.4 to 0.5
https://pipewire.pages.freedesktop.org/wireplumber/daemon/configuration/migration.html#

Reintroduce the filter chain configuration we had in PipeWire for DT770
and input de-noising to WirePlumber.
2024-03-26 15:44:22 +05:30

43 lines
729 B
Plaintext

monitor.alsa.rules = [
{
matches = [
{
node.nick = "iFi (by AMR) HD USB Audio"
media.class = "Audio/Sink"
}
]
actions = {
update-props = {
audio.rate = 192000
audio.allowed-rates = "48000,88200,96000,176400,192000,352800,384000"
}
}
}
{
matches = [
{
node.nick = "HD Pro Webcam C920"
media.class = "Audio/Source"
}
]
actions = {
update-props = {
node.disabled = true
}
}
}
{
matches = [
{
node.nick = "LG HDR 4K"
media.class = "Audio/Sink"
}
]
actions = {
update-props = {
node.disabled = true
}
}
}
]