mindboost-rnbo-test-project/index.html

30 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>channel pass through rnbo patches</title>
</head>
<body>
<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>