brickworks/examples/fxpp_balance/src/product.json

62 lines
1.1 KiB
JSON

{
"product": {
"name": "Brickworks stereo balance example (C++)",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fxpp_balance",
"buses": [
{
"type": "audio",
"direction": "input",
"channels": "stereo",
"name": "Input",
"shortName": "Input",
"id": "input"
},
{
"type": "audio",
"direction": "output",
"channels": "stereo",
"name": "Output",
"shortName": "Output",
"id": "output"
}
],
"parameters": [
{
"name": "Balance",
"shortName": "Balance",
"id": "balance",
"direction": "input",
"defaultValue": 0.0,
"minimum": -100.0,
"maximum": 100.0,
"unit": "pc",
"map": "linear"
},
{
"name": "Left level",
"shortName": "L level",
"id": "l_level",
"direction": "output",
"defaultValue": -60.0,
"minimum": -60.0,
"maximum": 0.0,
"unit": "db",
"map": "linear"
},
{
"name": "Right level",
"shortName": "R level",
"id": "r_level",
"direction": "output",
"defaultValue": -60.0,
"minimum": -60.0,
"maximum": 0.0,
"unit": "db",
"map": "linear"
}
]
}
}