music/bitvis: Use fastLookaheadLimiter
This commit is contained in:
parent
0f1740005a
commit
5254769a9c
2 changed files with 19 additions and 7 deletions
|
@ -4,6 +4,7 @@
|
||||||
name:
|
name:
|
||||||
- bitvis
|
- bitvis
|
||||||
- bitvis-http
|
- bitvis-http
|
||||||
|
- swh-plugins
|
||||||
|
|
||||||
- name: Create bitvis user
|
- name: Create bitvis user
|
||||||
user:
|
user:
|
||||||
|
|
|
@ -9,17 +9,28 @@ context.modules = [
|
||||||
filter.graph = {
|
filter.graph = {
|
||||||
nodes = [
|
nodes = [
|
||||||
{
|
{
|
||||||
name = mix
|
name = normalize
|
||||||
type = builtin
|
type = ladspa
|
||||||
label = mixer
|
plugin = fast_lookahead_limiter_1913
|
||||||
|
label = fastLookaheadLimiter
|
||||||
control = {
|
control = {
|
||||||
"Gain 1" = 10
|
"Input gain (dB)" = 40
|
||||||
"Gain 2" = 10
|
"Limit (dB)" = 0
|
||||||
|
"Release time (s)" = 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = mono
|
||||||
|
type = builtin
|
||||||
|
label = mixer
|
||||||
|
}
|
||||||
]
|
]
|
||||||
inputs = [ "mix:In 1" "mix:In 2" ]
|
links = [
|
||||||
outputs = [ "mix:Out" ]
|
{ output = "normalize:Output 1", input = "mono:In 1" }
|
||||||
|
{ output = "normalize:Output 2", input = "mono:In 2" }
|
||||||
|
]
|
||||||
|
inputs = [ "normalize:Input 1" "normalize:Input 2" ]
|
||||||
|
outputs = [ "mono:Out" ]
|
||||||
}
|
}
|
||||||
capture.props = {
|
capture.props = {
|
||||||
node.name = "mix_input.bitvis"
|
node.name = "mix_input.bitvis"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue