25 lines
686 B
Plaintext
25 lines
686 B
Plaintext
# Fenrir console audio support
|
|
# Adds secondary socket for console applications like Fenrir
|
|
|
|
pulse.properties = {
|
|
# the addresses this server listens on
|
|
server.address = [
|
|
"unix:native"
|
|
"unix:/tmp/pulse.sock" # console access socket
|
|
]
|
|
}
|
|
|
|
# client/stream specific properties
|
|
pulse.rules = [
|
|
{
|
|
# speech dispatcher asks for too small latency and then underruns.
|
|
matches = [ { application.name = "~speech-dispatcher*" } ]
|
|
actions = {
|
|
update-props = {
|
|
pulse.min.req = 1024/48000 # 21ms
|
|
pulse.min.quantum = 1024/48000 # 21ms
|
|
}
|
|
}
|
|
}
|
|
]
|