-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsynth.html
More file actions
62 lines (58 loc) · 2.21 KB
/
synth.html
File metadata and controls
62 lines (58 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!-- Synth Concepts Primer Section -->
<h2>🎚️ Synth Concepts Primer</h2>
<p>Modular synthesis is the art of shaping sound through voltage. Each module performs a function — generating, modifying, or routing signals — and together they form a sonic architecture.</p>
<h3>🧱 Core Building Blocks</h3>
<table>
<thead>
<tr>
<th>Concept</th>
<th>Description</th>
<th>Example Use</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>VCO</strong><br>(Voltage-Controlled Oscillator)</td>
<td>Generates waveforms (sine, square, saw, etc.) based on input voltage</td>
<td>Produces pitch or tone</td>
</tr>
<tr>
<td><strong>LFO</strong><br>(Low-Frequency Oscillator)</td>
<td>A slow oscillator used for modulation</td>
<td>Wobbles pitch, filter, or amplitude</td>
</tr>
<tr>
<td><strong>VCF</strong><br>(Voltage-Controlled Filter)</td>
<td>Shapes the timbre by removing frequencies</td>
<td>Sweeps or sculpts sound</td>
</tr>
<tr>
<td><strong>VCA</strong><br>(Voltage-Controlled Amplifier)</td>
<td>Controls signal amplitude</td>
<td>Fades, gates, or modulates volume</td>
</tr>
<tr>
<td><strong>Envelope Generator</strong><br>(EG)</td>
<td>Creates a voltage contour over time (ADSR)</td>
<td>Shapes how a note begins and ends</td>
</tr>
<tr>
<td><strong>Mixer</strong></td>
<td>Combines multiple signals</td>
<td>Blends oscillators or modulations</td>
</tr>
<tr>
<td><strong>Sequencer</strong></td>
<td>Sends timed voltages in steps</td>
<td>Creates rhythm or melodic patterns</td>
</tr>
</tbody>
</table>
<h3>🔌 Signal Types</h3>
<ul>
<li><strong>Audio signals</strong>: Waveforms you hear (e.g. from VCOs)</li>
<li><strong>Control voltages (CV)</strong>: Signals that shape other signals (e.g. pitch, filter cutoff)</li>
<li><strong>Gate/Trigger</strong>: Binary pulses that start events (e.g. envelope, sequencer step)</li>
</ul>
<h3>🧠 Why Modular?</h3>
<p>Modular synthesis is tactile logic. You patch ideas together, test them, reshape them. It’s engineering as improvisation — a system that invites both structure and surprise.</p>