2021-02-11 21:01:58 +01:00
|
|
|
# Real-time Client config file for PipeWire version @VERSION@ #
|
2021-06-02 15:22:49 +02:00
|
|
|
#
|
2021-09-20 18:00:27 +03:00
|
|
|
# Copy and edit this file in @PIPEWIRE_CONFIG_DIR@ for system-wide changes
|
2021-06-02 15:22:49 +02:00
|
|
|
# or in ~/.config/pipewire for local changes.
|
2022-02-03 17:31:01 +01:00
|
|
|
#
|
|
|
|
|
# It is also possible to place a file with an updated section in
|
|
|
|
|
# @PIPEWIRE_CONFIG_DIR@/client-rt.conf.d/ for system-wide changes or in
|
|
|
|
|
# ~/.config/pipewire/client-rt.conf.d/ for local changes.
|
|
|
|
|
#
|
2021-02-11 17:54:21 +01:00
|
|
|
|
2021-02-11 21:01:58 +01:00
|
|
|
context.properties = {
|
2021-02-11 17:54:21 +01:00
|
|
|
## Configure properties in the system.
|
2021-02-13 21:11:35 +02:00
|
|
|
#mem.warn-mlock = false
|
|
|
|
|
#mem.allow-mlock = true
|
|
|
|
|
#mem.mlock-all = false
|
2021-02-19 12:44:03 +01:00
|
|
|
log.level = 0
|
2022-01-12 17:44:45 +01:00
|
|
|
|
|
|
|
|
#default.clock.quantum-limit = 8192
|
2021-02-11 17:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-11 21:01:58 +01:00
|
|
|
context.spa-libs = {
|
2021-02-13 21:11:35 +02:00
|
|
|
#<factory-name regex> = <library-name>
|
2021-02-11 17:54:21 +01:00
|
|
|
#
|
|
|
|
|
# Used to find spa factory names. It maps an spa factory name
|
|
|
|
|
# regular expression to a library name that should contain
|
|
|
|
|
# that factory.
|
|
|
|
|
#
|
2021-02-13 20:38:02 +01:00
|
|
|
audio.convert.* = audioconvert/libspa-audioconvert
|
|
|
|
|
support.* = support/libspa-support
|
2021-02-11 17:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-12 12:39:58 +01:00
|
|
|
context.modules = [
|
2021-09-20 18:00:27 +03:00
|
|
|
#{ name = <module-name>
|
|
|
|
|
# [ args = { <key> = <value> ... } ]
|
2021-02-13 21:11:35 +02:00
|
|
|
# [ flags = [ [ ifexists ] [ nofail ] ]
|
|
|
|
|
#}
|
2021-02-11 17:54:21 +01:00
|
|
|
#
|
|
|
|
|
# Loads a module with the given parameters.
|
|
|
|
|
# If ifexists is given, the module is ignored when it is not found.
|
|
|
|
|
# If nofail is given, module initialization failures are ignored.
|
|
|
|
|
#
|
2022-01-15 20:54:15 +01:00
|
|
|
# Uses realtime scheduling to boost the audio thread priorities
|
|
|
|
|
{ name = libpipewire-module-rt
|
2021-02-11 17:54:21 +01:00
|
|
|
args = {
|
2021-03-03 19:56:22 +01:00
|
|
|
#rt.prio = 88
|
2022-01-17 14:01:06 +01:00
|
|
|
#rt.time.soft = -1
|
|
|
|
|
#rt.time.hard = -1
|
2021-02-13 21:11:35 +02:00
|
|
|
}
|
2021-02-11 17:54:21 +01:00
|
|
|
flags = [ ifexists nofail ]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# The native communication protocol.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-protocol-native }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Allows creating nodes that run in the context of the
|
|
|
|
|
# client. Is used by all clients that want to provide
|
|
|
|
|
# data to PipeWire.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-client-node }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Allows creating devices that run in the context of the
|
|
|
|
|
# client. Is used by the session manager.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-client-device }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Makes a factory for wrapping nodes in an adapter with a
|
|
|
|
|
# converter and resampler.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-adapter }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Allows applications to create metadata objects. It creates
|
|
|
|
|
# a factory for Metadata objects.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-metadata }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Provides factories to make session manager objects.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-session-manager }
|
2021-03-12 12:39:58 +01:00
|
|
|
]
|
2021-02-20 21:03:38 +01:00
|
|
|
|
|
|
|
|
filter.properties = {
|
|
|
|
|
#node.latency = 1024/48000
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stream.properties = {
|
2021-09-20 18:00:27 +03:00
|
|
|
#node.latency = 1024/48000
|
|
|
|
|
#node.autoconnect = true
|
|
|
|
|
#resample.quality = 4
|
2022-03-03 12:33:02 +01:00
|
|
|
#channelmix.normalize = false
|
2022-12-13 16:27:41 +01:00
|
|
|
#channelmix.mix-lfe = true
|
2022-03-03 12:33:02 +01:00
|
|
|
#channelmix.upmix = true
|
2022-04-12 11:55:27 +02:00
|
|
|
#channelmix.upmix-method = psd # none, simple
|
|
|
|
|
#channelmix.lfe-cutoff = 150
|
|
|
|
|
#channelmix.fc-cutoff = 12000
|
2022-03-01 09:53:40 +01:00
|
|
|
#channelmix.rear-delay = 12.0
|
2022-04-12 11:55:27 +02:00
|
|
|
#channelmix.stereo-widen = 0.0
|
2021-03-09 21:07:37 +01:00
|
|
|
#channelmix.hilbert-taps = 0
|
2022-06-27 11:19:01 +02:00
|
|
|
#dither.noise = 0
|
2021-02-20 21:03:38 +01:00
|
|
|
}
|