brickworks/examples/fxpp_hs1/src/product.json

49 lines
883 B
JSON

{
"product": {
"name": "Brickworks 1st-order high shelf example (C++)",
"bundleName": "bw_example_fxpp_hs1",
"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": "Cutoff",
"shortName": "Cutoff",
"id": "cutoff",
"direction": "input",
"defaultValue": 1000.0,
"minimum": 20.0,
"maximum": 20000.0,
"unit": "hz",
"map": "logarithmic"
},
{
"name": "Gain",
"shortName": "Gain",
"id": "gain",
"direction": "input",
"defaultValue": 0.0,
"minimum": -20.0,
"maximum": 20.0,
"unit": "db",
"map": "linear"
}
]
}
}