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.
|
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
|
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.
|
|
|
|
|
#
|
|
|
|
|
# Uses RTKit to boost the data thread priority.
|
2021-09-20 18:00:27 +03:00
|
|
|
{ name = libpipewire-module-rtkit
|
2021-02-11 17:54:21 +01:00
|
|
|
args = {
|
2021-02-13 21:11:35 +02:00
|
|
|
#nice.level = -11
|
2021-03-03 19:56:22 +01:00
|
|
|
#rt.prio = 88
|
2021-07-04 21:57:54 +02:00
|
|
|
#rt.time.soft = 2000000
|
|
|
|
|
#rt.time.hard = 2000000
|
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-01-11 10:40:42 +01:00
|
|
|
#channelmix.normalize = true
|
2021-09-20 18:00:27 +03:00
|
|
|
#channelmix.mix-lfe = true
|
|
|
|
|
#channelmix.upmix = false
|
2021-03-17 11:09:19 +01:00
|
|
|
#channelmix.lfe-cutoff = 0
|
2021-02-20 21:03:38 +01:00
|
|
|
}
|