blob: 883e52d6c6a8c513f7d01f7b95da493c072cd9fc (
plain)
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
|
# 6 band sink equalizer
#
# Copy this file into a conf.d/ directory such as
# ~/.config/pipewire/filter-chain.conf.d/
#
context.modules = [
{ name = libpipewire-module-filter-chain
args = {
node.description = "AKG k271 mkii Match"
media.name = "AKG k271 mkii Match"
filter.graph = {
nodes = [
{
type = builtin
name = eq_band_1
label = bq_lowshelf
control = { "Freq" = 62.0 "Q" = 0.9 "Gain" = 7.0 }
}
{
type = builtin
name = eq_band_2
label = bq_peaking
control = { "Freq" = 140.0 "Q" = 2.5 "Gain" = 3.0 }
}
{
type = builtin
name = eq_band_3
label = bq_highshelf
control = { "Freq" = 200.0 "Q" = 1.2 "Gain" = -4.7 }
}
{
type = builtin
name = eq_band_4
label = bq_peaking
control = { "Freq" = 660.0 "Q" = 2.8 "Gain" = -6.6 }
}
{
type = builtin
name = eq_band_5
label = bq_peaking
control = { "Freq" = 745.0 "Q" = 2.5 "Gain" = 5.5 }
}
{
type = builtin
name = eq_band_6
label = bq_peaking
control = { "Freq" = 1820.0 "Q" = 1.5 "Gain" = -4.4 }
}
{
type = builtin
name = eq_band_7
label = bq_peaking
control = { "Freq" = 3000.0 "Q" = 1.8 "Gain" = 5.4 }
}
{
type = builtin
name = eq_band_8
label = bq_peaking
control = { "Freq" = 3200.0 "Q" = 5.0 "Gain" = -2.3 }
}
{
type = builtin
name = eq_band_9
label = bq_peaking
control = { "Freq" = 4800.0 "Q" = 2.0 "Gain" = 3.6 }
}
{
type = builtin
name = eq_band_10
label = bq_highshelf
control = { "Freq" = 6500.0 "Q" = 2.5 "Gain" = -1.5 }
}
]
links = [
{ output = "eq_band_1:Out" input = "eq_band_2:In" }
{ output = "eq_band_2:Out" input = "eq_band_3:In" }
{ output = "eq_band_3:Out" input = "eq_band_4:In" }
{ output = "eq_band_4:Out" input = "eq_band_5:In" }
{ output = "eq_band_5:Out" input = "eq_band_6:In" }
{ output = "eq_band_6:Out" input = "eq_band_7:In" }
{ output = "eq_band_7:Out" input = "eq_band_8:In" }
{ output = "eq_band_8:Out" input = "eq_band_9:In" }
{ output = "eq_band_9:Out" input = "eq_band_10:In" }
]
}
audio.channels = 2
audio.position = [ FL FR ]
capture.props = {
node.name = "effect_input.k271ii"
media.class = Audio/Sink
}
playback.props = {
node.name = "effect_output.k271ii"
node.passive = true
}
}
}
]
|