brickworks/examples/fx_flanger/src/product.json

62 lines
1.1 KiB
JSON

{
"product": {
"name": "Brickworks flanger example",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fx_flanger",
"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": "Rate",
"shortName": "Rate",
"id": "rate",
"direction": "input",
"defaultValue": 1.0,
"minimum": 0.01,
"maximum": 20.0,
"unit": "hz",
"map": "logarithmic"
},
{
"name": "Amount",
"shortName": "Amount",
"id": "amount",
"direction": "input",
"defaultValue": 50.0,
"minimum": 0.0,
"maximum": 100.0,
"unit": "pc",
"map": "linear"
},
{
"name": "Feedback",
"shortName": "Feedback",
"id": "feedback",
"direction": "input",
"defaultValue": 0.0,
"minimum": -99.9,
"maximum": 99.9,
"unit": "pc",
"map": "linear"
}
]
}
}