forked from charlesvestal/schwung
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-catalog.json
More file actions
1050 lines (1050 loc) · 39.7 KB
/
Copy pathmodule-catalog.json
File metadata and controls
1050 lines (1050 loc) · 39.7 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
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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"catalog_version": 2,
"host": {
"name": "Schwung",
"github_repo": "charlesvestal/schwung",
"asset_name": "schwung.tar.gz",
"latest_version": "0.11.4",
"download_url": "https://github.com/charlesvestal/schwung/releases/download/v0.11.4/schwung.tar.gz",
"min_host_version": "0.1.0"
},
"modules": [
{
"id": "dexed",
"name": "Dexed",
"description": "6-operator FM synthesizer (Dexed/MSFA) with .syx patch support",
"author": "Dexed/MSFA by google/asb2m10 (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-dx7",
"default_branch": "main",
"asset_name": "dexed-module.tar.gz",
"min_host_version": "0.3.0",
"requires": "Optional additional .syx patch banks (place in module's banks/ folder)"
},
{
"id": "sf2",
"name": "SF2 Synth",
"description": "SoundFont (.sf2) synthesizer using FluidLite",
"author": "FluidLite by Robin Lobel (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-sf2",
"default_branch": "main",
"asset_name": "sf2-module.tar.gz",
"min_host_version": "0.3.0",
"requires": ".sf2 soundfont files (place in module's soundfonts/ folder)"
},
{
"id": "sfz",
"name": "SFZ Player",
"description": "SFZ and DecentSampler (.dspreset) sample player using sfizz engine",
"author": "sfizz by sfztools (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-sfz",
"default_branch": "main",
"asset_name": "sfz-module.tar.gz",
"min_host_version": "0.7.0",
"requires": "SFZ or DecentSampler instrument folders (place in module's instruments/ folder)"
},
{
"id": "m8",
"name": "M8 LPP Emulator",
"description": "Novation Launchpad Pro emulation for Dirtywave M8",
"author": "bobbydigitales (port: charlesvestal)",
"component_type": "overtake",
"github_repo": "charlesvestal/schwung-m8",
"default_branch": "main",
"asset_name": "m8-module.tar.gz",
"min_host_version": "0.3.6"
},
{
"id": "minijv",
"name": "Mini-JV",
"description": "ROM-based PCM rompler emulator",
"author": "nukeykt/giulioz (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-jv880",
"default_branch": "main",
"asset_name": "minijv-module.tar.gz",
"min_host_version": "0.3.0",
"requires": "ROM files (place in module's roms/ folder)"
},
{
"id": "obxd",
"name": "OB-Xd",
"description": "Virtual analog synthesizer based on Oberheim OB-X",
"author": "reales (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-obxd",
"default_branch": "main",
"asset_name": "obxd-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "cloudseed",
"name": "CloudSeed",
"description": "Algorithmic reverb by Ghost Note Audio",
"author": "Ghost Note Audio (port: charlesvestal)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-cloudseed",
"default_branch": "main",
"asset_name": "cloudseed-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "ottx",
"name": "OTTx",
"description": "3-band multiband upward+downward compressor (vitOTTx port)",
"author": "Matt Tytel (Vital DSP) · Yegor Suslin (vitOTT) · port: legsmechanical",
"component_type": "audio_fx",
"github_repo": "legsmechanical/schwung-ottx",
"default_branch": "main",
"asset_name": "ottx-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "midiverb",
"name": "Midiverb",
"description": "Alesis Midiverb / Midifex / Midiverb II emulator (lo-fi 23.4 kHz reverb)",
"author": "thement (DSP) · Charles Vestal (port)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-midiverb",
"default_branch": "main",
"asset_name": "midiverb-module.tar.gz",
"min_host_version": "0.3.0",
"requires": "Optional: original Midiverb / Midifex / Midiverb II ROM dumps for cycle-accurate emulation"
},
{
"id": "tapescam",
"name": "TAPESCAM",
"description": "Tape saturation and degradation effect",
"author": "Charles Vestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-tapescam",
"default_branch": "main",
"asset_name": "tapescam-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "psxverb",
"name": "PSX Verb",
"description": "PlayStation 1 SPU reverb emulation",
"author": "Charles Vestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-psxverb",
"default_branch": "main",
"asset_name": "psxverb-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "mverb",
"name": "MVerb",
"description": "Algorithmic plate reverb based on Martin Eastwood's MVerb",
"author": "Andre Louis (DSP: Martin Eastwood)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-mverb",
"default_branch": "main",
"asset_name": "mverb-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "tapedelay",
"name": "TapeDelay",
"description": "Tape delay with flutter and tone shaping",
"author": "Charles Vestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-space-delay",
"default_branch": "main",
"asset_name": "tapedelay-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "junologue-chorus",
"name": "Junologue Chorus",
"description": "Junologue Chorus - Juno-60 chorus emulation (I, I+II, II modes)",
"author": "Peter Allwin (port: charlesvestal)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-junologue-chorus",
"default_branch": "main",
"asset_name": "junologue-chorus-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "sidcontrol",
"name": "SID Control",
"description": "MIDI controller for SIDaster III synthesizer",
"author": "charlesvestal",
"component_type": "overtake",
"github_repo": "charlesvestal/schwung-sidcontrol",
"default_branch": "main",
"asset_name": "sidcontrol-module.tar.gz",
"min_host_version": "0.3.6"
},
{
"id": "braids",
"name": "Braids",
"description": "Macro oscillator with 47 synthesis algorithms (Mutable Instruments)",
"author": "Emilie Gillet (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-braids",
"default_branch": "main",
"asset_name": "braids-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "hera",
"name": "Hera",
"description": "Juno-60 emulation synthesizer with BBD chorus",
"author": "jpcima (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-hera",
"default_branch": "main",
"asset_name": "hera-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "surge",
"name": "Surge XT",
"description": "Hybrid synthesizer - wavetable, FM, subtractive, and physical modeling with 600+ presets",
"author": "Surge Synth Team (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-surge",
"default_branch": "main",
"asset_name": "surge-module.tar.gz",
"min_host_version": "0.10.0"
},
{
"id": "moog",
"name": "RaffoSynth",
"description": "Monophonic synthesizer with 4 oscillators and Moog ladder filter",
"author": "Nicolas Roulet, Julian Palladino (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-moog",
"default_branch": "main",
"asset_name": "moog-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "webstream",
"name": "Webstream",
"description": "Web audio search and streaming generator with bundled yt-dlp + ffmpeg runtime",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-webstream",
"default_branch": "main",
"asset_name": "webstream-module.tar.gz",
"min_host_version": "0.3.11"
},
{
"id": "nam",
"name": "NAM",
"description": "Neural Amp Modeler - neural network guitar amp/effect emulation",
"author": "NeuralAudio by Mike Oliphant (port: charlesvestal)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-nam",
"default_branch": "main",
"asset_name": "nam-module.tar.gz",
"min_host_version": "0.3.0",
"requires": ".nam model files (free models at tonehunt.org and tone3000.com)"
},
{
"id": "ducker",
"name": "Ducker",
"description": "MIDI-triggered sidechain ducker - classic pumping without an audio sidechain",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-ducker",
"default_branch": "main",
"asset_name": "ducker-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "pushnpull",
"name": "PushNPull",
"description": "Creative sidechain effects for dummies - a tempo-synced curve shaper that ducks/boosts volume and/or sweeps a multimode filter, locked to the beat",
"author": "legsmechanical",
"component_type": "audio_fx",
"github_repo": "legsmechanical/schwung-pushnpull",
"default_branch": "main",
"asset_name": "pushnpull-module.tar.gz",
"min_host_version": "0.11.0"
},
{
"id": "radiogarden",
"name": "Radio Garden",
"description": "Browse and stream live radio from 200 cities worldwide via Radio Garden",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-radiogarden",
"default_branch": "main",
"asset_name": "radiogarden-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "airplay",
"name": "AirPlay",
"description": "AirPlay audio receiver - stream from iPhone, iPad, or Mac to Move's signal chain",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-airplay",
"default_branch": "main",
"asset_name": "airplay-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "streamrtsp",
"name": "StreamRTSP",
"description": "Local RTSP audio receiver for Android ScreenStream and other RTSP senders",
"author": "dom",
"component_type": "sound_generator",
"github_repo": "handcraftedcc/schwung-StreamRTSP",
"default_branch": "main",
"asset_name": "streamrtsp-module.tar.gz",
"min_host_version": "0.8.4"
},
{
"id": "clap",
"name": "Airwindows",
"description": "Airwindows audio effects (500+ plugins via airwin2rack)",
"author": "charlesvestal, Chris Johnson (Airwindows)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-airwindows",
"default_branch": "main",
"asset_name": "clap-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "gate",
"name": "Gate",
"description": "Noise gate and downward expander",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-gate",
"default_branch": "main",
"asset_name": "gate-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "control",
"name": "Custom MIDI Control",
"description": "Custom MIDI controller with 16 banks of configurable pads/knobs/buttons",
"author": "chaolue",
"component_type": "overtake",
"github_repo": "chaolue/move-anything-control",
"default_branch": "main",
"asset_name": "control-module.tar.gz",
"min_host_version": "0.3.6"
},
{
"id": "chiptune",
"name": "Chiptune",
"description": "NES 2A03 & Game Boy DMG chiptune synthesizer with 32 presets",
"author": "blargg (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-chiptune",
"default_branch": "main",
"asset_name": "chiptune-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "keydetect",
"name": "Key Detect",
"description": "Detects the musical key of audio passing through it",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-keydetect",
"default_branch": "main",
"asset_name": "keydetect-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "vocoder",
"name": "Vocoder",
"description": "Channel vocoder - uses mic/line-in as modulator to shape synth carrier",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-vocoder",
"default_branch": "main",
"asset_name": "vocoder-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "osirus",
"name": "Osirus",
"description": "Access Virus DSP56300 emulator via Gearmulator JIT engine",
"author": "dsp56300/gearmulator (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-virus",
"default_branch": "main",
"asset_name": "osirus-module.tar.gz",
"min_host_version": "0.3.0",
"requires": "Virus ROM file (place in module's roms/ folder)"
},
{
"id": "superarp",
"name": "Super Arp",
"description": "Advanced MIDI arpeggiator with progression patterns, rhythm presets, and seeded modifiers",
"author": "handcraftedcc",
"component_type": "midi_fx",
"github_repo": "handcraftedcc/move-everything-superarp",
"default_branch": "main",
"asset_name": "superarp-module.tar.gz",
"min_host_version": "0.5.8"
},
{
"id": "eucalypso",
"name": "Eucalypso",
"description": "Deterministic 4-lane Euclidean MIDI sequencer with held/scale note registers, retrigger modes, and seeded modulation",
"author": "handcraftedcc",
"component_type": "midi_fx",
"github_repo": "handcraftedcc/move-everything-eucalypso",
"default_branch": "main",
"asset_name": "eucalypso-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "granny",
"name": "Granny",
"description": "Granular sample instrument with scan controls and file browser",
"author": "handcraftedcc",
"component_type": "sound_generator",
"github_repo": "handcraftedcc/move-everything-granny",
"default_branch": "main",
"asset_name": "granny-grain-module.tar.gz",
"min_host_version": "0.6.2"
},
{
"id": "freak",
"name": "MrHyde",
"description": "MicroFreak-inspired macro oscillator based on Mutable Instruments Plaits",
"author": "handcraftedcc",
"component_type": "sound_generator",
"github_repo": "handcraftedcc/move-everything-mrhyde",
"default_branch": "main",
"asset_name": "freak-module.tar.gz",
"min_host_version": "0.7.12"
},
{
"id": "mrdrums",
"name": "MrDrums",
"description": "16-pad sample drum module with per-pad controls and dynamic pad editing",
"author": "handcraftedcc",
"component_type": "sound_generator",
"github_repo": "handcraftedcc/move-everything-mrdrums",
"default_branch": "main",
"asset_name": "mrdrums-module.tar.gz",
"min_host_version": "0.7.4"
},
{
"id": "rex",
"name": "REX Player",
"description": "Propellerhead ReCycle (.rx2/.rex) slice player with DWOP lossless decoder",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-rex",
"default_branch": "main",
"asset_name": "rex-module.tar.gz",
"min_host_version": "0.3.0",
"requires": ".rx2/.rex loop files (created with Propellerhead ReCycle)"
},
{
"id": "hush1",
"name": "HUSH ONE",
"description": "Monophonic subtractive synthesizer emulating the Roland SH-101",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-hush1",
"default_branch": "main",
"asset_name": "hush1-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "nusaw",
"name": "NuSaw",
"description": "Polyphonic detuned multi-saw synthesizer with resonant filter, dual envelopes, chorus, and delay",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-nusaw",
"default_branch": "main",
"asset_name": "nusaw-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "usefulity",
"name": "Usefulity",
"description": "Stereo utility - channel select, width, bass mono, gain, pan, phase, mute, DC filter",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-usefulity",
"default_branch": "main",
"asset_name": "usefulity-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "samplerobot",
"name": "AutoSample",
"description": "Autosample external MIDI gear to create multisampled SFZ instruments",
"author": "charlesvestal",
"component_type": "tool",
"github_repo": "charlesvestal/schwung-autosample",
"default_branch": "main",
"asset_name": "samplerobot-module.tar.gz",
"min_host_version": "0.7.0",
"requires": "External synth connected via USB MIDI and line-in audio"
},
{
"id": "waveform-editor",
"name": "Wave Edit",
"description": "Trim, gain adjust, and edit audio files on the Move",
"author": "charlesvestal",
"component_type": "tool",
"github_repo": "charlesvestal/schwung-waveform-editor",
"default_branch": "main",
"asset_name": "waveform-editor-module.tar.gz",
"min_host_version": "0.7.0"
},
{
"id": "stretch",
"name": "Time Stretch",
"description": "Real-time audio time stretching with Bungee",
"author": "charlesvestal",
"component_type": "tool",
"github_repo": "charlesvestal/schwung-stretch",
"default_branch": "main",
"asset_name": "stretch-module.tar.gz",
"min_host_version": "0.6.0"
},
{
"id": "stems",
"name": "Stems",
"description": "Separate audio into stems: drums, vocals, accompaniment (0.5x realtime)",
"author": "charlesvestal",
"component_type": "tool",
"github_repo": "charlesvestal/schwung-stems",
"default_branch": "main",
"asset_name": "stems-module.tar.gz",
"min_host_version": "0.6.0"
},
{
"id": "plaits",
"name": "Plaits",
"description": "Macro oscillator with 24 synthesis engines (Mutable Instruments Plaits)",
"author": "Emilie Gillet (port: Justin Joe)",
"component_type": "sound_generator",
"github_repo": "j3threejay/move-anything-plaits",
"default_branch": "master",
"asset_name": "plaits-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "granular",
"name": "Boris Granular",
"description": "Real-time granular audio effect with live input capture & MIDI sync",
"author": "Alessandro Gaiba (port: filliformes)",
"component_type": "audio_fx",
"github_repo": "filliformes/boris-move",
"default_branch": "main",
"asset_name": "boris-granular-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "superboom",
"name": "Super Boom",
"description": "OTO Boum-inspired master bus destructor: 10 preamp models, multimode saturation, 8-band filterbank with vocoder mode, creative compressor, EQ & tape output stage",
"author": "filliformes",
"component_type": "audio_fx",
"github_repo": "filliformes/super-boom-move",
"default_branch": "main",
"asset_name": "super-boom-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "performance-fx",
"name": "Performance FX",
"description": "32 punch-in audio FX with pressure control, latch, and tempo sync",
"author": "charlesvestal",
"component_type": "overtake",
"github_repo": "charlesvestal/schwung-performance-fx",
"default_branch": "main",
"asset_name": "performance-fx-module.tar.gz",
"min_host_version": "0.7.0"
},
{
"id": "dj",
"name": "DJ Deck",
"description": "CDJ/turntable-style 4-track stem player with Bungee timestretch/pitchshift",
"author": "DJ Hard Rich",
"component_type": "tool",
"github_repo": "djhardrich/move-anything-dj",
"default_branch": "main",
"asset_name": "dj-module.tar.gz",
"min_host_version": "0.7.0"
},
{
"id": "slicer",
"name": "Sample Slicer",
"description": "Transient-detecting sample slicer with 32-pad polyphonic playback",
"author": "Justin Joe",
"component_type": "sound_generator",
"github_repo": "j3threejay/move-anything-slicer",
"default_branch": "main",
"asset_name": "slicer-module.tar.gz",
"min_host_version": "0.7.0",
"requires": "WAV sample files for slicing"
},
{
"id": "verglas",
"name": "Verglas",
"description": "Mutable Instruments Clouds granular processor: granular, stretch, looper & spectral modes with output filters & limiter",
"author": "Emilie Gillet (port: filliformes)",
"component_type": "audio_fx",
"github_repo": "filliformes/verglas-move",
"default_branch": "main",
"asset_name": "verglas-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "guitar-tuner",
"name": "Guitar Tuner",
"description": "Chromatic tuner for guitar (and any other instrument). Nearest note and cents deviation on the OLED; big letter glyph on the pad grid. Uses the Move's mic or 3.5mm line-in.",
"author": "eightfour",
"component_type": "tool",
"github_repo": "eightfour-dev/schwung-guitar-tuner",
"default_branch": "main",
"asset_name": "guitar-tuner-module.tar.gz",
"min_host_version": "0.9.8"
},
{
"id": "tuner",
"name": "Tuner",
"description": "Chromatic and instrument tuner with step guide feedback",
"author": "Jeremiah Ticket",
"component_type": "tool",
"github_repo": "CatsAreCool710/Move-Everything-Tuner",
"default_branch": "main",
"asset_name": "tuner-module.tar.gz",
"min_host_version": "0.3.11"
},
{
"id": "dragonfly-hall",
"name": "Dragonfly Hall",
"description": "Dragonfly Hall Reverb — lush hall reverb with 25 presets and full parameter control",
"author": "bradcoomber",
"component_type": "audio_fx",
"github_repo": "wolfrenegade1976/move-anything-dragonfly-hall",
"default_branch": "main",
"asset_name": "dragonfly-hall-module.tar.gz",
"min_host_version": "0.1.0"
},
{
"id": "punchfx",
"name": "Punch-In FX",
"description": "PO-33 style punch-in effects: 16 pressure-sensitive FX on the left 4x4 pad grid",
"author": "filliformes",
"component_type": "audio_fx",
"github_repo": "filliformes/punchfx-move",
"default_branch": "main",
"asset_name": "punchfx-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "structor",
"name": "Structor",
"description": "Musique concrete sound deconstructor/reconstructor: 8 algorithmic modes with per-grain DJ filtering, randomization & sequencer",
"author": "filliformes",
"component_type": "audio_fx",
"github_repo": "filliformes/structor-move",
"default_branch": "main",
"asset_name": "structor-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "weird-dreams",
"name": "Weird Dreams",
"description": "8-voice analog drum machine: 64 kits, 41 voice presets, dynamic pad-selected voice editing & master bus FX",
"author": "dfilaretti (port: filliformes)",
"component_type": "sound_generator",
"github_repo": "filliformes/weird-dreams-move",
"default_branch": "master",
"asset_name": "weird-dreams-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "dissolver",
"name": "Dissolver",
"description": "Spectral smearing pad generator: dissolves transients into evolving ambient pads via FFT magnitude analysis & random phase reconstruction",
"author": "filliformes",
"component_type": "audio_fx",
"github_repo": "filliformes/dissolver-move",
"default_branch": "master",
"asset_name": "dissolver-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "spectra",
"name": "Spectra",
"description": "Multiband spectral resonator: pitch-tracking SVF resonator bank with scale quantizer, 12 scales x 12 roots & chord drift",
"author": "filliformes",
"component_type": "audio_fx",
"github_repo": "filliformes/spectra-move",
"default_branch": "master",
"asset_name": "spectra-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "essaim",
"name": "Essaim",
"description": "32-voice rhythmic oscillator swarm: polyphonic self-triggering voices with envelope→FM, SVF filtering, LFO modulation routing, scale quantization, delay & saturation",
"author": "filliformes",
"component_type": "sound_generator",
"github_repo": "filliformes/essaim-move",
"default_branch": "main",
"asset_name": "essaim-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "chowtape",
"name": "CHOWTape",
"description": "Analog tape model with Jiles-Atherton magnetic hysteresis, loss filter, wow & flutter, chew, and degradation",
"author": "Jatin Chowdhury (port: charlesvestal)",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-chowtape",
"default_branch": "main",
"asset_name": "chowtape-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "ambiotica",
"name": "Ambiotica",
"description": "Ambient effect chain: rolling looper -> granular shimmer -> freeze layer -> modulated reverb. Tempo-aware, 4 mode presets, 8-knob performance.",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-ambiotica",
"default_branch": "main",
"asset_name": "ambiotica-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "filter",
"name": "Filter",
"description": "Multi-mode filter: SVF (LP/HP/BP/notch/peak/allpass) + Schwoog (warm 4-pole ladder), envelope follower, tempo-synced LFO, drive, dry/wet",
"author": "charlesvestal",
"component_type": "audio_fx",
"github_repo": "charlesvestal/schwung-filter",
"default_branch": "main",
"asset_name": "filter-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "wurl",
"name": "Wurl",
"description": "Physically-modeled Wurlitzer 200A electric piano (OpenWurli port)",
"author": "hal0zer0 (port: filliformes)",
"component_type": "sound_generator",
"github_repo": "filliformes/wurl-move",
"default_branch": "master",
"asset_name": "wurl-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "denis",
"name": "Denis",
"description": "Monophonic West Coast synthesizer inspired by Serge Modular: bipolar modulation matrix, complex oscillators, stiffness-based geometry & portamento",
"author": "filliformes",
"component_type": "sound_generator",
"github_repo": "filliformes/denis-move",
"default_branch": "main",
"asset_name": "denis-module.tar.gz",
"min_host_version": "0.5.8"
},
{
"id": "genera",
"name": "Genera",
"description": "Generative note and chord sequencer with 7 generation modes, stutter engine with beat-repeat, 20 scales, chord stacking, capture/loop & humanize",
"author": "filliformes",
"component_type": "midi_fx",
"github_repo": "filliformes/genera-move",
"default_branch": "master",
"asset_name": "genera-module.tar.gz",
"min_host_version": "0.5.8"
},
{
"id": "euclidrum",
"name": "Euclidrum",
"description": "8-lane generative Euclidean drum sequencer: 32 presets, polymetric rates, mutation/drift & per-lane freq/decay CC output. Purpose-built companion for Weird Dreams.",
"author": "filliformes",
"component_type": "midi_fx",
"github_repo": "filliformes/euclidrum-move",
"default_branch": "master",
"asset_name": "euclidrum-module.tar.gz",
"min_host_version": "0.5.8"
},
{
"id": "branchage",
"name": "Branchage",
"description": "Grids drum maps with per-lane Branches-style note branching",
"author": "Mutable Instruments ideas / port for Schwung Move",
"component_type": "midi_fx",
"github_repo": "broduoliviercontact-web/Schwung-Midi-Fx-branchages-Multi-Random-generator",
"default_branch": "main",
"asset_name": "branchage-module.tar.gz",
"min_host_version": "0.1.0"
},
{
"id": "twinsampler",
"name": "TwinSampler",
"description": "Dual-grid overtake sampler with 16 banks, auto-slicing, per-pad controls, MIDI loopers and session management",
"author": "jrucho",
"component_type": "overtake",
"github_repo": "jrucho/schwung-twinsampler",
"default_branch": "main",
"asset_name": "twinsampler-module.tar.gz",
"min_host_version": "0.3.6"
},
{
"id": "impressive-chords",
"name": "Impressive Chords",
"description": "Advanced chord generator with strumming and clock-synced retriggering",
"author": "mestela",
"component_type": "midi_fx",
"github_repo": "mestela/schwung-impressive-chords",
"default_branch": "main",
"asset_name": "impressive-chords.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "midi-player",
"name": "MIDI Player",
"description": "Play .mid files into the slot's sound generator, synced to Move's clock",
"author": "Charles Vestal",
"component_type": "midi_fx",
"github_repo": "charlesvestal/schwung-midi-player",
"default_branch": "main",
"asset_name": "midi-player-module.tar.gz",
"min_host_version": "0.9.13",
"requires": "Drop .mid files into modules/midi_fx/midi-player/MIDI/ via SSH or SMB"
},
{
"id": "ai-manual",
"name": "AI Manual",
"description": "Voice-driven manual for Ableton Move and Schwung. Hold a bottom-row pad to ask, release to send. Configure provider + API keys at move.local:7700/modules/ai-manual.",
"author": "eightfour",
"component_type": "tool",
"github_repo": "eightfour-dev/schwung-ai-manual",
"default_branch": "main",
"asset_name": "ai-manual-module.tar.gz",
"min_host_version": "0.9.8",
"requires": "Gemini or OpenAI API key (free Gemini key at aistudio.google.com)"
},
{
"id": "ai-assistant",
"name": "AI Assistant",
"description": "General-purpose voice assistant on Move. Best for songwriting prompts, creative sparks, and brainstorming. Long-form replies, optionally read aloud via TTS. Configure provider + API keys at move.local:7700/modules/ai-assistant.",
"author": "eightfour",
"component_type": "tool",
"github_repo": "eightfour-dev/schwung-ai-assistant",
"default_branch": "main",
"asset_name": "ai-assistant-module.tar.gz",
"min_host_version": "0.9.8",
"requires": "Gemini or OpenAI API key (free Gemini key at aistudio.google.com)"
},
{
"id": "303",
"name": "303",
"description": "TB-303 emulator (Open303 + Devilfish + Soft/RAT drive)",
"author": "Robin Schmidt / midilab / davemollen (port: charlesvestal)",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-303",
"default_branch": "main",
"asset_name": "303-module.tar.gz",
"min_host_version": "0.3.0"
},
{
"id": "tb3po",
"name": "TB-3PO",
"description": "Generative 303-style acid-bassline sequencer with dual slots and 303 CC mode",
"author": "djphazer / Hemisphere Suite (port: charlesvestal)",
"component_type": "tool",
"github_repo": "charlesvestal/schwung-tb3po",
"default_branch": "main",
"asset_name": "tb3po-module.tar.gz",
"min_host_version": "0.9.10"
},
{
"id": "breakbeat",
"name": "BB Gen",
"description": "Breakbeat generator with algorithmic slicing, retriggering, fills, and per-sample chance blending",
"author": "mestela",
"component_type": "sound_generator",
"github_repo": "mestela/schwung-breakbeat",
"default_branch": "main",
"asset_name": "breakbeat-module.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "po32-drum",
"name": "Libpo32",
"description": "16-voice drum synthesizer based on the libpo32/Tonic engine, with GM drum layout, three bundled kits, per-voice noise filter and envelope controls, and role-aware randomizer",
"author": "mestela",
"component_type": "sound_generator",
"github_repo": "mestela/schwung-libpo32",
"default_branch": "main",
"asset_name": "po32-drum-module.tar.gz",
"min_host_version": "0.9.13"
},
{
"id": "signal",
"name": "Signal",
"description": "Polymetric microsound rhythm generator with breakbeat engine & Scene A/B morph",
"author": "filliformes",
"component_type": "sound_generator",
"github_repo": "filliformes/signal-move",
"default_branch": "master",
"asset_name": "signal-module.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "krautdrums",
"name": "KrautDrums",
"description": "16-voice tonal drum machine modeled on the 1969 Elka Drummer One, with V72/A80/Synthi pre-FX, EP-3/Echorec/RE-201 delay, EMT 140/BX20/chamber reverb & EMT 156-style bus comp",
"author": "filliformes",
"component_type": "sound_generator",
"github_repo": "filliformes/krautdrums-move",
"default_branch": "main",
"asset_name": "krautdrums-module.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "forge",
"name": "Forge",
"description": "8-voice FM/subtractive hybrid drum synthesiser with Kit A↔B morph across 16 pads, 5 voice algorithms, per-voice resonator, dual filter with Comb modes, three concurrent FX buses & 64 factory kits",
"author": "filliformes",
"component_type": "sound_generator",
"github_repo": "filliformes/forge-move",
"default_branch": "master",
"asset_name": "forge-module.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "davebox",
"name": "dAVEBOx",
"description": "8-track creative MIDI sequencer with per-clip effects chains, polyrhythmic drum lanes, live recording, and a 24-mod performance mode",
"author": "legsmechanical",
"component_type": "tool",
"github_repo": "legsmechanical/schwung-davebox",
"default_branch": "main",
"asset_name": "davebox-module.tar.gz",
"min_host_version": "0.9.13"
},
{
"id": "chorddex",
"name": "ChordDex",
"description": "Real-time chord & note recognizer for Move's pads. Names the chord on screen and routes MIDI to a Move track so you hear the chord through any loaded instrument.",
"author": "dony01001",
"component_type": "tool",
"github_repo": "dony01001/ChordDex",
"default_branch": "main",
"asset_name": "chorddex-module.tar.gz",
"min_host_version": "0.7.11"
},
{
"id": "mrsample",
"name": "MrSample",
"description": "Chromatic single-sample player with AHDSR, multimode filter, LFO, loop+crossfade. Loads WAV/MP3/FLAC/AIFF.",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-mrsample",
"default_branch": "main",
"asset_name": "mrsample-module.tar.gz",
"min_host_version": "0.7.4",
"requires": "audio files in /data/UserData/UserLibrary/Samples/ (.wav, .mp3, .flac, .aif)"
},
{
"id": "dronage-tool",
"name": "Dronage Move",
"description": "Ambient drone workstation (standalone takeover)",
"author": "boorch",
"component_type": "tool",
"github_repo": "boorch/dronage-move-release",
"default_branch": "master",
"asset_name": "dronage-tool-module.tar.gz",
"min_host_version": "0.9.8"
},
{
"id": "chordism",
"name": "Chordism",
"description": "Chord-based polyphonic synth — one pad in, 4 voices out, with 16 chord types, 25 scales, FM matrix, morphing level/pan, modulation routing, and 30 presets",
"author": "charlesvestal",
"component_type": "sound_generator",
"github_repo": "charlesvestal/schwung-chordism",
"default_branch": "main",
"asset_name": "chordism-module.tar.gz",
"min_host_version": "0.9.0"
},
{
"id": "juno_control",
"name": "Alpha Juno 2 Ctrl",
"description": "SysEx patch editor and controller for Roland Alpha Juno 1/2 and MKS-50",
"author": "madeinspace",
"component_type": "overtake",
"github_repo": "madeinspace/move-juno-controller",
"default_branch": "main",
"asset_name": "juno_control-module.tar.gz",
"min_host_version": "0.3.6"
},
{
"id": "helm",
"name": "Helm",
"description": "Polyphonic synthesizer with effects and powerful modulation system",
"author": "Matt Tytel (port: andree182)",
"component_type": "sound_generator",
"github_repo": "andree182/schwung-helm",