brickworks/examples/fx_bitcrush/src/product.json
2024-02-06 11:19:39 +01:00

47 lines
859 B
JSON

{
"product": {
"name": "Brickworks bitcrusher example",
"version": "1.1.0",
"buildVersion": "1",
"bundleName": "bw_example_fx_bitcrush",
"buses": [
{
"type": "audio",
"direction": "input",
"channels": "mono",
"name": "Input",
"shortName": "Input"
},
{
"type": "audio",
"direction": "output",
"channels": "mono",
"name": "Output",
"shortName": "Output"
}
],
"parameters": [
{
"name": "Sample rate ratio",
"shortName": "SR ratio",
"direction": "input",
"defaultValue": 100.0,
"minimum": 1.0,
"maximum": 100.0,
"unit": "pc",
"map": "logarithmic"
},
{
"name": "Bit depth",
"shortName": "Bit depth",
"direction": "input",
"defaultValue": 16.0,
"minimum": 1.0,
"maximum": 16.0,
"integer": true,
"map": "linear"
}
]
}
}