brickworks/examples/fxpp_comb/src/product.json

81 lines
1.5 KiB
JSON

{
"product": {
"name": "Brickworks comb filter example (C++)",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fxpp_comb",
"buses": [
{
"type": "audio",
"direction": "input",
"channels": "mono",
"name": "Input",
"shortName": "Input",
"id": "input"
},
{
"type": "audio",
"direction": "output",
"channels": "mono",
"name": "Output",
"shortName": "Output",
"id": "output"
}
],
"parameters": [
{
"name": "Feedforward delay",
"shortName": "FF delay",
"id": "ff_delay",
"direction": "input",
"defaultValue": 0.0,
"minimum": 0.0,
"maximum": 1000.0,
"unit": "ms",
"map": "linear"
},
{
"name": "Feedback delay",
"shortName": "FB delay",
"id": "fb_delay",
"direction": "input",
"defaultValue": 0.0,
"minimum": 0.0,
"maximum": 1000.0,
"unit": "ms",
"map": "linear"
},
{
"name": "Blend coefficient",
"shortName": "Blend coeff",
"id": "blend",
"direction": "input",
"defaultValue": 1.0,
"minimum": 0.0,
"maximum": 1.0,
"map": "linear"
},
{
"name": "Feedforward coefficient",
"shortName": "FF coeff",
"id": "ff",
"direction": "input",
"defaultValue": 0.0,
"minimum": -1.0,
"maximum": 1.0,
"map": "linear"
},
{
"name": "Feedback coefficient",
"shortName": "FB coeff",
"id": "fb",
"direction": "input",
"defaultValue": 0.0,
"minimum": -0.999,
"maximum": 0.999,
"map": "linear"
}
]
}
}