-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
799 lines (767 loc) · 39.7 KB
/
index.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>UhhyouWebSynthsizers</title>
<link rel="icon" type="image/svg+xml" href="style/favicon/favicon.svg">
<link rel="icon" type="image/png" href="style/favicon/favicon.png">
<style>
@import url("style/font.css");
@media (prefers-color-scheme: dark) {
html {
filter: invert(0.8745);
}
}
body {
font-family: var(--font-family);
font-weight: var(--font-weight-base);
max-width: 700px;
margin: auto;
padding: 2em 0.5em 2em 0.5em;
}
header {
border-bottom: solid 1px #c0c0c0;
}
footer {
border-top: solid 1px #c0c0c0;
}
span#lastModified {
float: right;
}
h1,
h2,
h3,
h4,
h5,
h6 {
width: 100%;
box-sizing: border-box;
margin: 1em 0 0.5em 0;
font-weight: var(--font-weight-strong);
}
div.titleContainer {
margin: 2rem 0 2rem 0;
}
div.titleContainer h1#title {
display: inline;
vertical-align: baseline;
}
div.titleContainer img {
display: inline;
margin: 1rem;
height: 8rem;
vertical-align: middle;
}
span.bold {
font-weight: var(--font-weight-strong);
}
div#main {
margin-bottom: 2em;
}
a {
opacity: unset;
}
a:hover {
opacity: 0.5;
}
li {
padding: 0.1em;
}
div.languageBlock {
margin: 0;
}
dl {
width: 100%;
overflow: hidden;
box-sizing: border-box;
}
div.synthList {
display: flex;
width: calc(100% - 1rem);
box-sizing: border-box;
padding: 0.1em 0;
}
div.synthList:nth-child(3n+1) {
background-color: #fafafa;
}
div.synthList:nth-child(3n+2) {
background-color: #f4f4f4;
}
dt {
width: 25%;
}
dd.tag {
display: inline-block;
width: 15%;
color: darkgray;
}
dd.description {
color: unset;
font-size: unset;
width: 60%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
dd.description:focus {
color: #1070dd;
font-size: 125%;
white-space: unset;
overflow: unset;
}
dd.description:hover {
color: #dd7010;
font-size: 125%;
white-space: unset;
overflow: unset;
}
</style>
</head>
<body>
<header>
<p>
<label>Language</label>
<select id="language">
<option value="en">English</option>
<option value="ja">日本語</option>
</select>
<span id="lastModified">Last Modified: 2024-12-28</span>
</p>
</header>
<div class="titleContainer">
<h1 id="title">Uhhyou Web Synthesizers</h1>
<img src="style/favicon/favicon.svg" alt="Logo image. This logo is a stylized all-pass filter block diagram." />
</div>
<div id="main">
<div class="languageBlock" lang="en">
<p><ruby>Uhhyou <rp>(</rp><rt>うっひょう</rt><rp>)</rp></ruby> Web Synthesizers is a collection of musical synthesizers to render WAVE files.</p><h2>Basic Usage</h2><ul><li>Press <span class="bold">Random</span> button to change parameters.</li><li>Press <span class="bold">Play</span> button to audition.</li><li>Press <span class="bold">Save</span> button to download WAVE.</li><li>Select menu on the left of <span class="bold">Random</span> button to change randomization recipe.</li></ul><p>Instruction to use without the internet is available on the <a href="https://github.com/ryukau/UhhyouWebSynthesizers">source code</a> page.</p>
<h2>Synthesizer</h2>
<dl>
<div class="synthList">
<dt><a href="./MaybeCrash/synth.html">MaybeCrash</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Crash cymbal synthesizer using FDN. </dd>
</div>
<div class="synthList">
<dt><a href="./CoupledSnare/synth.html">CoupledSnare</a></dt>
<dd class="tag"><span class="bold">Snare</span></dd>
<dd class="description" tabindex="0">Modified version of RoughlySnare. </dd>
</div>
<div class="synthList">
<dt><a href="./RoughlySnare/synth.html">RoughlySnare</a></dt>
<dd class="tag"><span class="bold">Snare</span></dd>
<dd class="description" tabindex="0">Snare drum synthesizer based on MikeMorenoDSP's <a href="https://github.com/MikeMorenoDSP/pd-mkmr/blob/fcd602f7eecb96e739a3ab0a88ce0fa42badb0d6/instruments/mymembrane~.pd">mymembrane~</a> PureData patch. </dd>
</div>
<div class="synthList">
<dt><a href="./CollidingComb/synth.html">CollidingComb</a></dt>
<dd class="tag"><span class="bold">Drum</span></dd>
<dd class="description" tabindex="0">Lightweight version of GenericDrum. </dd>
</div>
<div class="synthList">
<dt><a href="./SquareMorph/synth.html">SquareMorph</a></dt>
<dd class="tag"><span class="bold">Waveform</span></dd>
<dd class="description" tabindex="0">Morphing waveform using Walsh-Hadamard, or Haar transform. </dd>
</div>
<div class="synthList">
<dt><a href="./IntegerChord/synth.html">IntegerChord</a></dt>
<dd class="tag"><span class="bold">Chord</span></dd>
<dd class="description" tabindex="0">Period of waveforms are aligned to integer samples. </dd>
</div>
<div class="synthList">
<dt><a href="./GenericDrum/synth.html">GenericDrum</a></dt>
<dd class="tag"><span class="bold">Drum</span></dd>
<dd class="description" tabindex="0">Generic drum synthesizer based on ClangSnare. Tuned for ease of use. </dd>
</div>
<div class="synthList">
<dt><a href="./HooverSynth/synth.html">HooverSynth</a></dt>
<dd class="tag"><span class="bold">Hoover</span></dd>
<dd class="description" tabindex="0">Hoover sound syntheiszer. </dd>
</div>
<div class="synthList">
<dt><a href="./ResonantDrop/synth.html">ResonantDrop</a></dt>
<dd class="tag"><span class="bold">Noise</span></dd>
<dd class="description" tabindex="0">Sound of falling small objects. Using resonators. </dd>
</div>
<div class="synthList">
<dt><a href="./AdaptiveNotchComb/synth.html">AdaptiveNotchComb</a></dt>
<dd class="tag"><span class="bold">Metal</span></dd>
<dd class="description" tabindex="0">Feedback comb filter that has adaptive notch filters on feedback path. </dd>
</div>
<div class="synthList">
<dt><a href="./SlipOutComb/synth.html">SlipOutComb</a></dt>
<dd class="tag"><span class="bold">Noise</span></dd>
<dd class="description" tabindex="0">Feedback comb filter that modulates bandpass cutoff to slip out from divergence. </dd>
</div>
<div class="synthList">
<dt><a href="./FMGlassyPad/synth.html">FMGlassyPad</a></dt>
<dd class="tag"><span class="bold">Pad</span></dd>
<dd class="description" tabindex="0">Pad sound of FM synthesizer with unison. </dd>
</div>
<div class="synthList">
<dt><a href="./TechnoSnare/synth.html">TechnoSnare</a></dt>
<dd class="tag"><span class="bold">Snare</span></dd>
<dd class="description" tabindex="0">Snare drum sound similar to old rhythm machines. </dd>
</div>
<div class="synthList">
<dt><a href="./IntegerArpeggio/synth.html">IntegerArpeggio</a></dt>
<dd class="tag"><span class="bold">Arpeggio</span></dd>
<dd class="description" tabindex="0">Period of waveforms are aligned to integer samples. Intended to be used with a slicer. </dd>
</div>
<div class="synthList">
<dt><a href="./GlitchSprinkler/synth.html">GlitchSprinkler</a></dt>
<dd class="tag"><span class="bold">Melody loop</span></dd>
<dd class="description" tabindex="0">Microtonal phrase that consists of simple synthesizer tones. </dd>
</div>
<div class="synthList">
<dt><a href="./MetalSqueak/synth.html">MetalSqueak</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Texture of metals squeaking. FDN that has allpass on feedback path. </dd>
</div>
<div class="synthList">
<dt><a href="./GrowlSynth/synth.html">GrowlSynth</a></dt>
<dd class="tag"><span class="bold">Voice</span></dd>
<dd class="description" tabindex="0">Animal growl. </dd>
</div>
<div class="synthList">
<dt><a href="./SalmonTube/synth.html">SalmonTube</a></dt>
<dd class="tag"><span class="bold">Voice</span></dd>
<dd class="description" tabindex="0">Port of Pink Trombone. This one is made to understand the internals. </dd>
</div>
<div class="synthList">
<dt><a href="./OneCycleWaveform/synth.html">OneCycleWaveform</a></dt>
<dd class="tag"><span class="bold">Waveform</span></dd>
<dd class="description" tabindex="0">Single cycle waveform generator. </dd>
</div>
<div class="synthList">
<dt><a href="./MaybeSnare/synth.html">MaybeSnare</a></dt>
<dd class="tag"><span class="bold">Snare</span></dd>
<dd class="description" tabindex="0">Using self modulating FDN. </dd>
</div>
<div class="synthList">
<dt><a href="./WireWireCollision/synth.html">WireWireCollision</a></dt>
<dd class="tag"><span class="bold">Simulation</span></dd>
<dd class="description" tabindex="0">Collision of 2 wires. (<a href="docs/Wave1DTest/test.html">Visual demo</a>) </dd>
</div>
<div class="synthList">
<dt><a href="./WireWallCollision/synth.html">WireWallCollision</a></dt>
<dd class="tag"><span class="bold">Simulation</span></dd>
<dd class="description" tabindex="0">Single wire colliding into rigid wall. </dd>
</div>
<div class="synthList">
<dt><a href="./ClangSnare/synth.html">ClangSnare</a></dt>
<dd class="tag"><span class="bold">Snare</span></dd>
<dd class="description" tabindex="0">Based on ClangCymbal. </dd>
</div>
<div class="synthList">
<dt><a href="./PadChoir3/synth.html">PadChoir3</a></dt>
<dd class="tag"><span class="bold">Pad</span></dd>
<dd class="description" tabindex="0">PADchoir using formant data. </dd>
</div>
<div class="synthList">
<dt><a href="./ResonantBD/synth.html">ResonantBD</a></dt>
<dd class="tag"><span class="bold">Bass drum</span></dd>
<dd class="description" tabindex="0">Similar to bass drums of old rhythm machines. Using oscillation of SVF. </dd>
</div>
<div class="synthList">
<dt><a href="./SingenBD3/synth.html">SingenBD3</a></dt>
<dd class="tag"><span class="bold">Bass drum</span></dd>
<dd class="description" tabindex="0">FM bass drum synthesizer. </dd>
</div>
<div class="synthList">
<dt><a href="./PadCymbal2/synth.html">PadCymbal2</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Improved PADcymbal with the addition of layer and serial comb filter. </dd>
</div>
<div class="synthList">
<dt><a href="./ClangCymbal/synth.html">ClangCymbal</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Stable feedback is the difference to FDNCymbal. Mostly as same as <a href="https://ryukau.github.io/VSTPlugins/manual/ClangSynth/ClangSynth_en.html">VST 3 version</a>. </dd>
</div>
<div class="synthList">
<dt><a href="./SerialCombCymbal/synth.html">SerialCombCymbal</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Serial comb filter. </dd>
</div>
<div class="synthList">
<dt><a href="./KSCymbal/synth.html">KSCymbal</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Crude collision of 2 Karplus-Strong string. </dd>
</div>
</dl>
<h2>Impulse Response</h2>
<p>These are intended to be used with external IR convolver.</p>
<dl>
<div class="synthList">
<dt><a href="./ParallelComb/synth.html">ParallelComb</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Impulse response to add cymbal texture for pen taps. Based on <a href="https://www.youtube.com/watch?v=QYUbXN5f4yA">a description by henry bracey</a>. </dd>
</div>
<div class="synthList">
<dt><a href="./FV1Reverb/synth.html">FV1Reverb</a></dt>
<dd class="tag"><span class="bold">Reverb</span></dd>
<dd class="description" tabindex="0">Reverb using the loop structure of Spin Semiconductor <a href="http://www.spinsemi.com/knowledge_base/effects.html">FV-1</a>. </dd>
</div>
<div class="synthList">
<dt><a href="./MaybeCabinetIR/synth.html">MaybeCabinetIR</a></dt>
<dd class="tag"><span class="bold">FIR filter</span></dd>
<dd class="description" tabindex="0">Fake guitar cabinet impulse responses. </dd>
</div>
<div class="synthList">
<dt><a href="./L4Reverb/synth.html">L4Reverb</a></dt>
<dd class="tag"><span class="bold">Reverb</span></dd>
<dd class="description" tabindex="0">Reverb using 4 times nested lattice allpass filter. </dd>
</div>
<div class="synthList">
<dt><a href="./FDNReverb/synth.html">FDNReverb</a></dt>
<dd class="tag"><span class="bold">Reverb</span></dd>
<dd class="description" tabindex="0">Reverb using a feedback delay network. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Pulseverb/index.html">Pulseverb</a></dt>
<dd class="tag"><span class="bold">Reverb</span></dd>
<dd class="description" tabindex="0">Reverb using modulated band-limited impulse train (BLIT). </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Freeverb/index.html">Freeverb</a></dt>
<dd class="tag"><span class="bold">Reverb</span></dd>
<dd class="description" tabindex="0">Reverb using Freeverb algorithm. </dd>
</div>
</dl>
<h2>Old Synthesizer</h2>
<p>Synthesizers using old style code. (<a href="https://github.com/ryukau/UhhyouWebSynthesizers/blob/main/docs/code_walkthrough.md#old-synth">Details</a>)</p>
<dl>
<div class="synthList">
<dt><a href="./oldsynth/FMTechnoBass/index.html">FMTechnoBass</a></dt>
<dd class="tag"><span class="bold">Bass</span></dd>
<dd class="description" tabindex="0">FM bass synthesizer. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WobblingMetalBoard/index.html">WobblingMetalBoard</a></dt>
<dd class="tag"><span class="bold">Noise</span></dd>
<dd class="description" tabindex="0">Sound of wobbling thin metal plate. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Bubbles/index.html">Bubbles</a></dt>
<dd class="tag"><span class="bold">Water</span></dd>
<dd class="description" tabindex="0">Sound of bubbles that is formed when droplets fall onto water surface. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.3/index.html">Singen0.3</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM synthesizer. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADchoir2/index.html">PADchoir2</a></dt>
<dd class="tag"><span class="bold">Pad</span></dd>
<dd class="description" tabindex="0">PADchoir with an alternative interface. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/FDNCymbal/index.html">FDNCymbal</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Using feedback delay network. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADchoir/index.html">PADchoir</a></dt>
<dd class="tag"><span class="bold">Pad</span></dd>
<dd class="description" tabindex="0">Using PADsynth algorithm. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveBox/index.html">WaveBox</a></dt>
<dd class="tag"><span class="bold">Simulation</span></dd>
<dd class="description" tabindex="0">3D wave propagation. Simulation nodes are placed like a box. Rendering takes time. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveCymbal2/index.html">WaveCymbal2</a></dt>
<dd class="tag"><span class="bold">Metal</span></dd>
<dd class="description" tabindex="0">WaveCymbal that use implicit method for wave propagation. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveCymbal/index.html">WaveCymbal</a></dt>
<dd class="tag"><span class="bold">Metal</span></dd>
<dd class="description" tabindex="0">Sounds like dragging a bunch of empty cans rather than a cymbal. Using a combination of 1D wave simulation and Karplus-Strong algorithm. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Pluck/index.html">Pluck</a></dt>
<dd class="tag"><span class="bold">Metal</span></dd>
<dd class="description" tabindex="0">Variation of Karplus-Strong algorithm. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADcymbal/index.html">PADcymbal</a></dt>
<dd class="tag"><span class="bold">Cymbal</span></dd>
<dd class="description" tabindex="0">Random frequency components are fed into PADsynth algorithm to generate cymbal-ish sound. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.2/index.html">Singen0.2</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM synthesizer. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/ECAFM/index.html">ECAFM</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">ECAC + FM. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/SingenBD2/index.html">SingenBD2</a></dt>
<dd class="tag"><span class="bold">Bass drum</span></dd>
<dd class="description" tabindex="0">FM bass drum. Recommend to use SingenBD3 which has better functionality. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.1/index.html">Singen0.1</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM synthesizer. </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/SinChord/index.html">SinChord</a></dt>
<dd class="tag"><span class="bold">Pad</span></dd>
<dd class="description" tabindex="0">Random chord using naive aliasing oscillators. </dd>
</div>
</dl>
<h2>WebAudio</h2>
<dl>
<div class="synthList">
<dt><a href="./oldsynth/ECAC/index.html">ECAC</a></dt>
<dd class="tag"><span class="bold"></span></dd>
<dd class="description" tabindex="0">Additive synthesizer using elementary cellular automaton. </dd>
</div>
</dl>
<h2>Tuning Table</h2>
<p>Non stardard tuning tables.</p>
<dl>
<div class="synthList">
<dt><a href="./tuning/IntegerSampleTuning/index.html">IntegerSampleTuning</a></dt>
<dd class="tag"><span class="bold"></span></dd>
<dd class="description" tabindex="0">Only have pitches whose period is exactly an integer number of samples. </dd>
</div>
</dl>
</div>
<div class="languageBlock" lang="ja">
<p><ruby>Uhhyou Web Synthesizers</ruby> はブラウザ上で WAVE ファイルをレンダリングするシンセサイザです。</p><h2>使い方</h2><ul><li><span class="bold">Random</span> ボタンでパラメータ変更。</li><li><span class="bold">Play</span> ボタンで試聴。</li><li><span class="bold">Save</span> ボタンで WAVE ファイルをダウンロード。</li><li><span class="bold">Random</span> ボタンの左のメニューからランダマイズのレシピを選択。</li></ul><p>インターネット接続なしでの利用方法を<a href="https://github.com/ryukau/UhhyouWebSynthesizers">ソースコード</a>のページに掲載中。</p>
<h2>シンセサイザ</h2>
<dl>
<div class="synthList">
<dt><a href="./MaybeCrash/synth.html">MaybeCrash</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">FDN を使ったクラッシュシンバル。 </dd>
</div>
<div class="synthList">
<dt><a href="./CoupledSnare/synth.html">CoupledSnare</a></dt>
<dd class="tag"><span class="bold">スネア</span></dd>
<dd class="description" tabindex="0">RoughlySnare の改変版。 </dd>
</div>
<div class="synthList">
<dt><a href="./RoughlySnare/synth.html">RoughlySnare</a></dt>
<dd class="tag"><span class="bold">スネア</span></dd>
<dd class="description" tabindex="0">MikeMorenoDSP の PureData パッチ <a href="https://github.com/MikeMorenoDSP/pd-mkmr/blob/fcd602f7eecb96e739a3ab0a88ce0fa42badb0d6/instruments/mymembrane~.pd">mymembrane~</a> に基づいたスネアドラムのシンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./CollidingComb/synth.html">CollidingComb</a></dt>
<dd class="tag"><span class="bold">ドラム</span></dd>
<dd class="description" tabindex="0">GenericDrum の軽量版。 </dd>
</div>
<div class="synthList">
<dt><a href="./SquareMorph/synth.html">SquareMorph</a></dt>
<dd class="tag"><span class="bold">波形</span></dd>
<dd class="description" tabindex="0">Walsh-Hadamard あるいは Haar 変換によってモーフィングする波形。 </dd>
</div>
<div class="synthList">
<dt><a href="./IntegerChord/synth.html">IntegerChord</a></dt>
<dd class="tag"><span class="bold">コード</span></dd>
<dd class="description" tabindex="0">波形の周期が整数サンプルとなるスケールを使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./GenericDrum/synth.html">GenericDrum</a></dt>
<dd class="tag"><span class="bold">ドラム</span></dd>
<dd class="description" tabindex="0">ClangSnare を基に使い易く調整した汎用ドラムシンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./HooverSynth/synth.html">HooverSynth</a></dt>
<dd class="tag"><span class="bold">フーバー</span></dd>
<dd class="description" tabindex="0">フーバーサウンドに特化したシンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./ResonantDrop/synth.html">ResonantDrop</a></dt>
<dd class="tag"><span class="bold">ノイズ</span></dd>
<dd class="description" tabindex="0">パラパラと小さな物が落ちるような音。レゾネータを使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./AdaptiveNotchComb/synth.html">AdaptiveNotchComb</a></dt>
<dd class="tag"><span class="bold">金属音</span></dd>
<dd class="description" tabindex="0">適応ノッチフィルタをフィードバック経路に設置した、フィードバックコムフィルタ。 </dd>
</div>
<div class="synthList">
<dt><a href="./SlipOutComb/synth.html">SlipOutComb</a></dt>
<dd class="tag"><span class="bold">ノイズ</span></dd>
<dd class="description" tabindex="0">発散からすり抜けるようにバンドパスのカットオフを変調するフィードバックコムフィルタ。 </dd>
</div>
<div class="synthList">
<dt><a href="./FMGlassyPad/synth.html">FMGlassyPad</a></dt>
<dd class="tag"><span class="bold">パッド</span></dd>
<dd class="description" tabindex="0">ユニゾンした FM シンセによるパッド音。 </dd>
</div>
<div class="synthList">
<dt><a href="./TechnoSnare/synth.html">TechnoSnare</a></dt>
<dd class="tag"><span class="bold">スネア</span></dd>
<dd class="description" tabindex="0">古いリズムマシンのようなスネアドラム。 </dd>
</div>
<div class="synthList">
<dt><a href="./IntegerArpeggio/synth.html">IntegerArpeggio</a></dt>
<dd class="tag"><span class="bold">アルペジオ</span></dd>
<dd class="description" tabindex="0">波形の周期が整数サンプルとなるスケールを使用。スライサに読み込んで使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./GlitchSprinkler/synth.html">GlitchSprinkler</a></dt>
<dd class="tag"><span class="bold">メロディーループ</span></dd>
<dd class="description" tabindex="0">単純なシンセサイザの音によるマイクロトーナルを用いたフレーズ。 </dd>
</div>
<div class="synthList">
<dt><a href="./MetalSqueak/synth.html">MetalSqueak</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">フィードバック経路にオールパスを備えた FDN による金属が擦れるような音。 </dd>
</div>
<div class="synthList">
<dt><a href="./GrowlSynth/synth.html">GrowlSynth</a></dt>
<dd class="tag"><span class="bold">声</span></dd>
<dd class="description" tabindex="0">動物のうなり声。 </dd>
</div>
<div class="synthList">
<dt><a href="./SalmonTube/synth.html">SalmonTube</a></dt>
<dd class="tag"><span class="bold">声</span></dd>
<dd class="description" tabindex="0">Pink Trombone の移植。習作。 </dd>
</div>
<div class="synthList">
<dt><a href="./OneCycleWaveform/synth.html">OneCycleWaveform</a></dt>
<dd class="tag"><span class="bold">波形</span></dd>
<dd class="description" tabindex="0">オシレータの 1 周期分の波形を生成。 </dd>
</div>
<div class="synthList">
<dt><a href="./MaybeSnare/synth.html">MaybeSnare</a></dt>
<dd class="tag"><span class="bold">スネア</span></dd>
<dd class="description" tabindex="0">自己変調する FDN を使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./WireWireCollision/synth.html">WireWireCollision</a></dt>
<dd class="tag"><span class="bold">シミュレーション</span></dd>
<dd class="description" tabindex="0">2 つの弦の衝突。 (<a href="docs/Wave1DTest/test.html">視覚化デモ</a>) </dd>
</div>
<div class="synthList">
<dt><a href="./WireWallCollision/synth.html">WireWallCollision</a></dt>
<dd class="tag"><span class="bold">シミュレーション</span></dd>
<dd class="description" tabindex="0">1 つの弦が固い壁に衝突。 </dd>
</div>
<div class="synthList">
<dt><a href="./ClangSnare/synth.html">ClangSnare</a></dt>
<dd class="tag"><span class="bold">スネア</span></dd>
<dd class="description" tabindex="0">ClangCymbal の改変。 </dd>
</div>
<div class="synthList">
<dt><a href="./PadChoir3/synth.html">PadChoir3</a></dt>
<dd class="tag"><span class="bold">パッド</span></dd>
<dd class="description" tabindex="0">フォルマントデータを使った PADchoir 。 </dd>
</div>
<div class="synthList">
<dt><a href="./ResonantBD/synth.html">ResonantBD</a></dt>
<dd class="tag"><span class="bold">バスドラム</span></dd>
<dd class="description" tabindex="0">古いリズムマシンのようなバスドラム。 SVF の発振を使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./SingenBD3/synth.html">SingenBD3</a></dt>
<dd class="tag"><span class="bold">バスドラム</span></dd>
<dd class="description" tabindex="0">FM を用いたバスドラムシンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./PadCymbal2/synth.html">PadCymbal2</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">レイヤと直列コムフィルタを追加した改良版 PADcymbal 。 </dd>
</div>
<div class="synthList">
<dt><a href="./ClangCymbal/synth.html">ClangCymbal</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">FDN が発散しないように調整されている点が FDNCymbal と異なる。ほぼ <a href="https://ryukau.github.io/VSTPlugins/manual/ClangSynth/ClangSynth_ja.html">VST 3 版</a>と同じ。 </dd>
</div>
<div class="synthList">
<dt><a href="./SerialCombCymbal/synth.html">SerialCombCymbal</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">直列につないだコムフィルタ。 </dd>
</div>
<div class="synthList">
<dt><a href="./KSCymbal/synth.html">KSCymbal</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">2 つの Karplus-Strong を適当にぶつけて音を合成。 </dd>
</div>
</dl>
<h2>インパルス応答</h2>
<p>IRコンボルバに読み込んで使うインパルス応答を合成します。</p>
<dl>
<div class="synthList">
<dt><a href="./ParallelComb/synth.html">ParallelComb</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">ペンで机を叩いた音をシンバルのように変えるインパルス応答。 <a href="https://www.youtube.com/watch?v=QYUbXN5f4yA">henry bracey による説明</a>に基づく。 </dd>
</div>
<div class="synthList">
<dt><a href="./FV1Reverb/synth.html">FV1Reverb</a></dt>
<dd class="tag"><span class="bold">リバーブ</span></dd>
<dd class="description" tabindex="0">Spin Semiconductor の <a href="http://www.spinsemi.com/knowledge_base/effects.html">FV-1</a> に基づくループ構造のリバーブ。 </dd>
</div>
<div class="synthList">
<dt><a href="./MaybeCabinetIR/synth.html">MaybeCabinetIR</a></dt>
<dd class="tag"><span class="bold">FIR フィルタ</span></dd>
<dd class="description" tabindex="0">ギターキャビネットに似せたインパルス応答。 </dd>
</div>
<div class="synthList">
<dt><a href="./L4Reverb/synth.html">L4Reverb</a></dt>
<dd class="tag"><span class="bold">リバーブ</span></dd>
<dd class="description" tabindex="0">格子構造のオールパスフィルタを 4 つ入れ子にしたリバーブ。 </dd>
</div>
<div class="synthList">
<dt><a href="./FDNReverb/synth.html">FDNReverb</a></dt>
<dd class="tag"><span class="bold">リバーブ</span></dd>
<dd class="description" tabindex="0">Feedback delay network (FDN) を1つ使ったリバーブ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Pulseverb/index.html">Pulseverb</a></dt>
<dd class="tag"><span class="bold">リバーブ</span></dd>
<dd class="description" tabindex="0">インパルスを適当にモジュレーションしたリバーブ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Freeverb/index.html">Freeverb</a></dt>
<dd class="tag"><span class="bold">リバーブ</span></dd>
<dd class="description" tabindex="0">Freeverbアルゴリズムによるリバーブ。 </dd>
</div>
</dl>
<h2>古いシンセサイザ</h2>
<p>コードのスタイルが古いシンセサイザ。 (<a href="https://github.com/ryukau/UhhyouWebSynthesizers/blob/main/docs/code_walkthrough.md#old-synth">詳細</a>)</p>
<dl>
<div class="synthList">
<dt><a href="./oldsynth/FMTechnoBass/index.html">FMTechnoBass</a></dt>
<dd class="tag"><span class="bold">ベース</span></dd>
<dd class="description" tabindex="0">FM ベースシンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WobblingMetalBoard/index.html">WobblingMetalBoard</a></dt>
<dd class="tag"><span class="bold">ノイズ</span></dd>
<dd class="description" tabindex="0">薄い金属板を揺らしたときのような音。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Bubbles/index.html">Bubbles</a></dt>
<dd class="tag"><span class="bold">水音</span></dd>
<dd class="description" tabindex="0">水滴が水面に落ちた時に生じる泡の音。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.3/index.html">Singen0.3</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM シンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADchoir2/index.html">PADchoir2</a></dt>
<dd class="tag"><span class="bold">パッド</span></dd>
<dd class="description" tabindex="0">UI を変更した PADchoir 。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/FDNCymbal/index.html">FDNCymbal</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">Feedback Delay Network を使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADchoir/index.html">PADchoir</a></dt>
<dd class="tag"><span class="bold">パッド</span></dd>
<dd class="description" tabindex="0">PADsynth アルゴリズムを使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveBox/index.html">WaveBox</a></dt>
<dd class="tag"><span class="bold">シミュレーション</span></dd>
<dd class="description" tabindex="0">箱のように配置されたノードを伝わる 3 次元の波。レンダリングに時間がかかる。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveCymbal2/index.html">WaveCymbal2</a></dt>
<dd class="tag"><span class="bold">金属音</span></dd>
<dd class="description" tabindex="0">WaveCymbal の波のシミュレーションを implicit な方法に変更。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/WaveCymbal/index.html">WaveCymbal</a></dt>
<dd class="tag"><span class="bold">金属音</span></dd>
<dd class="description" tabindex="0">シンバルというより紐につないだ空き缶を引きずったときのような音。 1 次元の波のシミュレーションと Karplus-Strong アルゴリズムの組み合わせ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Pluck/index.html">Pluck</a></dt>
<dd class="tag"><span class="bold">金属音</span></dd>
<dd class="description" tabindex="0">Karplus-Strong アルゴリズムの一種を使用。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/PADcymbal/index.html">PADcymbal</a></dt>
<dd class="tag"><span class="bold">シンバル</span></dd>
<dd class="description" tabindex="0">ランダムな周波数成分を PADsynth アルゴリズムに入力してシンバルのような音を合成。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.2/index.html">Singen0.2</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM シンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/ECAFM/index.html">ECAFM</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">ECAC + FM 。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/SingenBD2/index.html">SingenBD2</a></dt>
<dd class="tag"><span class="bold">バスドラム</span></dd>
<dd class="description" tabindex="0">FM バスドラム。より多機能な SingenBD3 の利用を推奨。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/Singen0.1/index.html">Singen0.1</a></dt>
<dd class="tag"><span class="bold">FM</span></dd>
<dd class="description" tabindex="0">FM シンセサイザ。 </dd>
</div>
<div class="synthList">
<dt><a href="./oldsynth/SinChord/index.html">SinChord</a></dt>
<dd class="tag"><span class="bold">パッド</span></dd>
<dd class="description" tabindex="0">エイリアスノイズが出る素朴なオシレータで適当なコードを合成。 </dd>
</div>
</dl>
<h2>WebAudio</h2>
<dl>
<div class="synthList">
<dt><a href="./oldsynth/ECAC/index.html">ECAC</a></dt>
<dd class="tag"><span class="bold"></span></dd>
<dd class="description" tabindex="0">Elementary Cellular Automaton に基づいて倍音を加算合成。 </dd>
</div>
</dl>
<h2>調律の表</h2>
<p>標準的でない調律の表。</p>
<dl>
<div class="synthList">
<dt><a href="./tuning/IntegerSampleTuning/index.html">IntegerSampleTuning</a></dt>
<dd class="tag"><span class="bold"></span></dd>
<dd class="description" tabindex="0">1 周期が正確に整数サンプルとなるピッチのみを使用。 </dd>
</div>
</dl>
</div>
</div>
<footer>
<ul>
<li><a href="https://github.com/ryukau/UhhyouWebSynthesizers">Source Code</a> (github.com)</li>
<li><a href="https://ryukau.blogspot.com/">Blog</a> (Blogger)</li>
</ul>
</footer>
<script>
function changeLanguage(lang) {
for (let element of document.getElementsByClassName("languageBlock")) {
element.style.display = element.lang === lang ? "unset" : "none";
}
}
const selector = document.getElementById("language");
selector.addEventListener("change", e => changeLanguage(e.target.value), false);
const availableLanguages
= Array.from(selector.getElementsByTagName("option")).map(v => v.value);
let targetLang;
outerLoop: for (let lang of navigator.languages) {
for (let available of availableLanguages) {
if (!lang.includes(available)) continue;
targetLang = available;
selector.value = targetLang;
break outerLoop;
}
}
changeLanguage(targetLang !== undefined ? targetLang : selector.value);
</script>
</body>
</html>