add an new adaptive example with 6 in patches WORKING

This commit is contained in:
2025-07-02 18:39:24 +02:00
parent c5f605395b
commit 43a11ab86b
10 changed files with 1492 additions and 62 deletions

View File

@@ -7,7 +7,23 @@
<title>channel pass through rnbo patches</title>
</head>
<body>
<div id="app"></div>
<div id="app">
<div id="gains">
<label>Gain Noise: <span id="noiseGain-value">0.5</span></label><br>
<input type="range" id="noiseGain" min="0.001" max="1" step="0.005" value="0.5"><br>
<label>Gain Soundscape: <span id="scapeGain-value">0.5</span></label><br>
<input type="range" id="scapeGain" min="0.001" max="1" step="0.005" value="0.5"><br>
</div>
<div id="param-controls">
<label>LAF: <input type="number" id="param-laf" value="2.5" step="0.1" /></label><br>
<label>Attack (ms): <input type="number" id="param-attack" value="5000" step="100" /></label><br>
<label>Release (ms): <input type="number" id="param-release" value="5000" step="100" /></label><br>
<label>Attenuation Factor: <input type="number" id="param-attenuation" value="0.0562" step="0.01" /></label><br>
<label>Dynamic Range: <input type="number" id="param-range" value="-3" step="1" /></label><br>
<button id="update-rnbo">Update RNBO</button>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>