-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path99-virtual-surround.conf
171 lines (171 loc) · 6.6 KB
/
99-virtual-surround.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
context.modules = [
{ name = libpipewire-module-filter-chain
flags = [ nofail ]
args = {
node.description = "Virtual Surround"
media.name = "Virtual Surround"
filter.graph = {
nodes = [
{
type = sofa
label = spatializer
name = spFL
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 30.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spFR
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 330.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spFC
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 0.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spRL
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 150.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spRR
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 210.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spSL
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 90.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spSR
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 270.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{
type = sofa
label = spatializer
name = spLFE
config = {
filename = "sofa-path"
}
control = {
"Azimuth" = 180.0
"Elevation" = 0.0
"Radius" = 10.0
}
}
{ type = builtin label = mixer name = mixL }
{ type = builtin label = mixer name = mixR }
{
type = builtin
label = convolver
name = convL
config = {
filename = "eq-path"
channel = 0
}
}
{
type = builtin
label = convolver
name = convR
config = {
filename = "eq-path"
channel = 1
}
}
]
links = [
{ output = "spFL:Out L" input="mixL:In 1" }
{ output = "spFL:Out R" input="mixR:In 1" }
{ output = "spFR:Out L" input="mixL:In 2" }
{ output = "spFR:Out R" input="mixR:In 2" }
{ output = "spFC:Out L" input="mixL:In 3" }
{ output = "spFC:Out R" input="mixR:In 3" }
{ output = "spRL:Out L" input="mixL:In 4" }
{ output = "spRL:Out R" input="mixR:In 4" }
{ output = "spRR:Out L" input="mixL:In 5" }
{ output = "spRR:Out R" input="mixR:In 5" }
{ output = "spSL:Out L" input="mixL:In 6" }
{ output = "spSL:Out R" input="mixR:In 6" }
{ output = "spSR:Out L" input="mixL:In 7" }
{ output = "spSR:Out R" input="mixR:In 7" }
{ output = "spLFE:Out L" input="mixL:In 8" }
{ output = "spLFE:Out R" input="mixR:In 8" }
{ output = "mixL:Out" input = "convL:In" }
{ output = "mixR:Out" input = "convR:In" }
]
inputs = [ "spFL:In" "spFR:In" "spFC:In" "spLFE:In" "spRL:In" "spRR:In", "spSL:In", "spSR:In" ]
outputs = [ "convL:Out" "convR:Out" ]
}
capture.props = {
node.name = "effect_input.spatializer"
media.class = Audio/Sink
audio.channels = 8
audio.position = [ FL FR FC LFE RL RR SL SR ]
}
playback.props = {
node.name = "effect_output.spatializer"
node.passive = true
audio.channels = 2
audio.position = [ FL FR ]
}
}
}
]