1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-01-24 07:42:27 +01:00

[ALL] Addition of combined sound output sink for pipewire

This commit is contained in:
j1nx 2023-08-31 11:54:36 +00:00
parent b0db7be3ef
commit 521897077b

View File

@ -0,0 +1,28 @@
context.modules = [
{ name = libpipewire-module-combine-stream
args = {
combine.mode = sink
node.name = "ovos_combined_sink"
node.description = "OpenVoiceOS combined sound output"
combine.latency-compensate = false
combine.props = {
audio.position = [ FL FR ]
}
stream.props = {
}
stream.rules = [
{
matches = [
{
media.class = "Audio/Sink"
}
]
actions = {
create-stream = {
}
}
}
]
}
}
]