brickworks/examples/fx_trem/src/product.json

51 lines
901 B
JSON

{
"product": {
"name": "Brickworks tremolo example",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fx_trem",
"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": 0.0,
"minimum": 0.0,
"maximum": 100.0,
"unit": "pc",
"map": "linear"
}
]
}
}