mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
- Also added new latency control parameter, not super visible differences, but it's cool :)
31 lines
704 B
Plaintext
31 lines
704 B
Plaintext
{
|
|
"wireplumber.rules": [
|
|
{
|
|
"description": "Global audio format and rate for audio nodes",
|
|
"matches": [
|
|
{ "media.class": "Audio/Sink" },
|
|
{ "media.class": "Audio/Source" }
|
|
],
|
|
"apply_properties": {
|
|
"audio.format": "F32P",
|
|
"audio.rate": 48000,
|
|
"audio.channels": 2,
|
|
"session.suspend-timeout-seconds": 0
|
|
}
|
|
},
|
|
|
|
{
|
|
"description": "PulseAudio bridge specific tweaks",
|
|
"matches": [
|
|
{ "node.name": "pulse_sink" },
|
|
{ "node.name": "pulse_source" }
|
|
],
|
|
"apply_properties": {
|
|
"pulse.min.req": 128,
|
|
"pulse.max.req": 1024,
|
|
"pulse.idle.timeout": 0
|
|
}
|
|
}
|
|
]
|
|
}
|