brickworks/examples/fx_notch/src/product.json

46 lines
811 B
JSON
Raw Normal View History

2024-02-14 04:44:11 +00:00
{
"product": {
"name": "Brickworks notch filter example",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fx_notch",
"buses": [
{
"type": "audio",
"direction": "input",
"channels": "mono",
"name": "Input",
"shortName": "Input"
},
{
"type": "audio",
"direction": "output",
"channels": "mono",
"name": "Output",
"shortName": "Output"
}
],
"parameters": [
{
"name": "Cutoff",
"shortName": "Cutoff",
"direction": "input",
"defaultValue": 1000.0,
"minimum": 20.0,
"maximum": 20000.0,
"unit": "hz",
"map": "logarithmic"
},
{
"name": "Q",
"shortName": "Q",
"direction": "input",
"defaultValue": 0.5,
"minimum": 0.5,
"maximum": 10.0,
"map": "linear"
}
]
}
}