livepilot 1.26.0 → 1.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/README.md +1 -1
- package/installer/codex.js +87 -9
- package/livepilot/.Codex-plugin/plugin.json +8 -0
- package/livepilot/.claude-plugin/plugin.json +8 -0
- package/livepilot/.mcp.json +8 -0
- package/livepilot/agents/livepilot-producer/AGENT.md +314 -0
- package/livepilot/commands/arrange.md +47 -0
- package/livepilot/commands/beat.md +81 -0
- package/livepilot/commands/evaluate.md +49 -0
- package/livepilot/commands/memory.md +22 -0
- package/livepilot/commands/mix.md +47 -0
- package/livepilot/commands/perform.md +42 -0
- package/livepilot/commands/session.md +13 -0
- package/livepilot/commands/sounddesign.md +58 -0
- package/livepilot/rubrics/default_preset_check.md +82 -0
- package/livepilot/rubrics/layer_accumulation.md +79 -0
- package/livepilot/rubrics/layer_precision.md +79 -0
- package/livepilot/rubrics/modulation_presence.md +63 -0
- package/livepilot/rubrics/sound_design_depth.md +40 -0
- package/livepilot/skills/livepilot-arrangement/SKILL.md +164 -0
- package/livepilot/skills/livepilot-composition-engine/SKILL.md +151 -0
- package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +97 -0
- package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +102 -0
- package/livepilot/skills/livepilot-core/SKILL.md +261 -0
- package/livepilot/skills/livepilot-core/references/ableton-workflow-patterns.md +831 -0
- package/livepilot/skills/livepilot-core/references/affordances/_schema.md +160 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/auto-filter.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/chorus-ensemble.yaml +91 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/compressor.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/convolution-reverb.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/corpus.yaml +84 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/drift.yaml +105 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/echo.yaml +108 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/eq-eight.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/glue-compressor.yaml +88 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/granulator-iii.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/hybrid-reverb.yaml +83 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/operator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/ping-pong-delay.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/poli.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/saturator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/shifter.yaml +77 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/simpler.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/utility.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/vinyl-distortion.yaml +92 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/wavetable.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/artist-vocabularies.md +389 -0
- package/livepilot/skills/livepilot-core/references/automation-atlas.md +272 -0
- package/livepilot/skills/livepilot-core/references/concepts/_schema.md +158 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/akufen.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/aphex-twin.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/arca-sophie.yaml +131 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/autechre.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basic-channel.yaml +140 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basinski.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/boards-of-canada.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/burial.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/com-truise-tycho.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/daft-punk.yaml +117 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/dj-premier-rza.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/gas.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/hawtin.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/isolee-luomo.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/j-dilla.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/jeff-mills.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/johannsson-richter.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/madlib.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/moodymann-theo-parrish.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/oneohtrix-point-never.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/photek-source-direct.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/rashad-spinn-traxman.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/robert-henke.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/shackleton.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/skream-mala.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/stars-of-the-lid.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/tim-hecker.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/villalobos.yaml +135 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/ambient.yaml +137 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/boom_bap.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep-minimal.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep_house.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/detroit_techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/disco.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/downtempo.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drone.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drum-and-bass.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub-techno.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dubstep.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/experimental.yaml +136 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/footwork.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hip-hop.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/house.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hyperpop.yaml +128 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/idm.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/lo_fi.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/microhouse.yaml +138 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/minimal-techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/modern-classical.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/soul.yaml +125 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/synthwave.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/techno.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/trap.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/uk-garage.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/00-index.md +110 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/distortion-and-character.md +687 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +753 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +525 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +402 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/midi-tools.md +963 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +874 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/space-and-depth.md +571 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +714 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/synths-native.md +953 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
- package/livepilot/skills/livepilot-core/references/genre-vocabularies.md +382 -0
- package/livepilot/skills/livepilot-core/references/m4l-devices.md +352 -0
- package/livepilot/skills/livepilot-core/references/memory-guide.md +178 -0
- package/livepilot/skills/livepilot-core/references/midi-recipes.md +402 -0
- package/livepilot/skills/livepilot-core/references/mixing-patterns.md +578 -0
- package/livepilot/skills/livepilot-core/references/overview.md +300 -0
- package/livepilot/skills/livepilot-core/references/pack-knowledge.md +319 -0
- package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
- package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
- package/livepilot/skills/livepilot-core/references/sound-design.md +393 -0
- package/livepilot/skills/livepilot-corpus-builder/SKILL.md +379 -0
- package/livepilot/skills/livepilot-creative-director/SKILL.md +455 -0
- package/livepilot/skills/livepilot-creative-director/references/anti-repetition-rules.md +214 -0
- package/livepilot/skills/livepilot-creative-director/references/creative-brief-template.md +222 -0
- package/livepilot/skills/livepilot-creative-director/references/hybrid-compilation.md +185 -0
- package/livepilot/skills/livepilot-creative-director/references/move-family-diversity-rule.md +258 -0
- package/livepilot/skills/livepilot-creative-director/references/phase-6-execution.md +409 -0
- package/livepilot/skills/livepilot-creative-director/references/the-four-move-rule.md +192 -0
- package/livepilot/skills/livepilot-devices/SKILL.md +213 -0
- package/livepilot/skills/livepilot-devices/references/load_browser_item-uri-grammar.md +82 -0
- package/livepilot/skills/livepilot-evaluation/SKILL.md +195 -0
- package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +176 -0
- package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +121 -0
- package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +110 -0
- package/livepilot/skills/livepilot-mix-engine/SKILL.md +136 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +143 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +105 -0
- package/livepilot/skills/livepilot-mixing/SKILL.md +157 -0
- package/livepilot/skills/livepilot-notes/SKILL.md +130 -0
- package/livepilot/skills/livepilot-performance-engine/SKILL.md +122 -0
- package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +98 -0
- package/livepilot/skills/livepilot-release/SKILL.md +151 -0
- package/livepilot/skills/livepilot-sample-engine/SKILL.md +117 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
- package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +225 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +119 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +118 -0
- package/livepilot/skills/livepilot-wonder/SKILL.md +143 -0
- package/m4l_device/LivePilot_Analyzer.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.maxpat +758 -0
- package/m4l_device/livepilot_bridge.js +1 -1
- package/m4l_device/livepilot_elektron_bridge.js +82 -0
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/composer/develop/apply.py +1 -1
- package/mcp_server/composer/full/apply.py +32 -6
- package/mcp_server/m4l_bridge.py +5 -0
- package/mcp_server/runtime/execution_router.py +6 -0
- package/mcp_server/runtime/mcp_dispatch.py +18 -0
- package/mcp_server/runtime/remote_commands.py +2 -0
- package/mcp_server/server.py +11 -7
- package/package.json +20 -5
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/server.py +63 -2
- package/requirements.txt +3 -3
- package/server.json +3 -3
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+
{
|
|
2
|
+
"patcher": {
|
|
3
|
+
"fileversion": 1,
|
|
4
|
+
"appversion": {
|
|
5
|
+
"major": 8,
|
|
6
|
+
"minor": 6,
|
|
7
|
+
"revision": 0,
|
|
8
|
+
"architecture": "x64",
|
|
9
|
+
"modernui": 1
|
|
10
|
+
},
|
|
11
|
+
"classnamespace": "box",
|
|
12
|
+
"rect": [
|
|
13
|
+
100.0,
|
|
14
|
+
100.0,
|
|
15
|
+
720.0,
|
|
16
|
+
560.0
|
|
17
|
+
],
|
|
18
|
+
"openinpresentation": 1,
|
|
19
|
+
"default_fontsize": 12.0,
|
|
20
|
+
"default_fontface": 0,
|
|
21
|
+
"default_fontname": "Arial",
|
|
22
|
+
"gridonopen": 1,
|
|
23
|
+
"gridsize": [
|
|
24
|
+
15.0,
|
|
25
|
+
15.0
|
|
26
|
+
],
|
|
27
|
+
"gridsnaponopen": 1,
|
|
28
|
+
"objectsnaponopen": 1,
|
|
29
|
+
"statusbarvisible": 2,
|
|
30
|
+
"toolbarvisible": 1,
|
|
31
|
+
"lefttoolbarpinned": 0,
|
|
32
|
+
"toptoolbarpinned": 0,
|
|
33
|
+
"righttoolbarpinned": 0,
|
|
34
|
+
"bottomtoolbarpinned": 0,
|
|
35
|
+
"toolbars_unpinned_last_save": 0,
|
|
36
|
+
"tallnewobj": 0,
|
|
37
|
+
"boxanimatetime": 200,
|
|
38
|
+
"enablehscroll": 1,
|
|
39
|
+
"enablevscroll": 1,
|
|
40
|
+
"devicewidth": 360.0,
|
|
41
|
+
"description": "LivePilot Elektron Bridge — paced chunked SysEx out + SysEx capture in. UDP 9882 (M4L→server) / UDP 9883 (server→M4L).",
|
|
42
|
+
"digest": "Live 12 MIDI bridge for Elektron hardware (MnM + MD UW MKII)",
|
|
43
|
+
"tags": "livepilot elektron bridge sysex midi monomachine machinedrum",
|
|
44
|
+
"style": "",
|
|
45
|
+
"subpatcher_template": "",
|
|
46
|
+
"assistshowspatchername": 0,
|
|
47
|
+
"boxes": [
|
|
48
|
+
{
|
|
49
|
+
"box": {
|
|
50
|
+
"id": "obj-panel",
|
|
51
|
+
"maxclass": "panel",
|
|
52
|
+
"numinlets": 1,
|
|
53
|
+
"numoutlets": 0,
|
|
54
|
+
"patching_rect": [
|
|
55
|
+
20.0,
|
|
56
|
+
20.0,
|
|
57
|
+
680.0,
|
|
58
|
+
520.0
|
|
59
|
+
],
|
|
60
|
+
"presentation": 1,
|
|
61
|
+
"presentation_rect": [
|
|
62
|
+
0.0,
|
|
63
|
+
0.0,
|
|
64
|
+
360.0,
|
|
65
|
+
160.0
|
|
66
|
+
],
|
|
67
|
+
"bgcolor": [
|
|
68
|
+
0.12,
|
|
69
|
+
0.12,
|
|
70
|
+
0.14,
|
|
71
|
+
1.0
|
|
72
|
+
],
|
|
73
|
+
"bordercolor": [
|
|
74
|
+
0.22,
|
|
75
|
+
0.22,
|
|
76
|
+
0.25,
|
|
77
|
+
1.0
|
|
78
|
+
],
|
|
79
|
+
"border": 1,
|
|
80
|
+
"rounded": 4
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"box": {
|
|
85
|
+
"id": "obj-title",
|
|
86
|
+
"maxclass": "comment",
|
|
87
|
+
"text": "LivePilot Elektron Bridge",
|
|
88
|
+
"numinlets": 1,
|
|
89
|
+
"numoutlets": 0,
|
|
90
|
+
"fontsize": 16.0,
|
|
91
|
+
"fontface": 1,
|
|
92
|
+
"textcolor": [
|
|
93
|
+
0.85,
|
|
94
|
+
0.87,
|
|
95
|
+
0.9,
|
|
96
|
+
1.0
|
|
97
|
+
],
|
|
98
|
+
"patching_rect": [
|
|
99
|
+
40.0,
|
|
100
|
+
40.0,
|
|
101
|
+
300.0,
|
|
102
|
+
24.0
|
|
103
|
+
],
|
|
104
|
+
"presentation": 1,
|
|
105
|
+
"presentation_rect": [
|
|
106
|
+
12.0,
|
|
107
|
+
10.0,
|
|
108
|
+
300.0,
|
|
109
|
+
24.0
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"box": {
|
|
115
|
+
"id": "obj-subtitle",
|
|
116
|
+
"maxclass": "comment",
|
|
117
|
+
"text": "Paced SysEx out + SysEx capture in. Phase 1 MIDI I/O foundation.",
|
|
118
|
+
"numinlets": 1,
|
|
119
|
+
"numoutlets": 0,
|
|
120
|
+
"fontsize": 11.0,
|
|
121
|
+
"textcolor": [
|
|
122
|
+
0.6,
|
|
123
|
+
0.62,
|
|
124
|
+
0.66,
|
|
125
|
+
1.0
|
|
126
|
+
],
|
|
127
|
+
"patching_rect": [
|
|
128
|
+
40.0,
|
|
129
|
+
66.0,
|
|
130
|
+
340.0,
|
|
131
|
+
20.0
|
|
132
|
+
],
|
|
133
|
+
"presentation": 1,
|
|
134
|
+
"presentation_rect": [
|
|
135
|
+
12.0,
|
|
136
|
+
34.0,
|
|
137
|
+
340.0,
|
|
138
|
+
20.0
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"box": {
|
|
144
|
+
"id": "obj-status-label",
|
|
145
|
+
"maxclass": "comment",
|
|
146
|
+
"text": "Status:",
|
|
147
|
+
"numinlets": 1,
|
|
148
|
+
"numoutlets": 0,
|
|
149
|
+
"fontsize": 11.0,
|
|
150
|
+
"textcolor": [
|
|
151
|
+
0.6,
|
|
152
|
+
0.62,
|
|
153
|
+
0.66,
|
|
154
|
+
1.0
|
|
155
|
+
],
|
|
156
|
+
"patching_rect": [
|
|
157
|
+
40.0,
|
|
158
|
+
92.0,
|
|
159
|
+
60.0,
|
|
160
|
+
20.0
|
|
161
|
+
],
|
|
162
|
+
"presentation": 1,
|
|
163
|
+
"presentation_rect": [
|
|
164
|
+
12.0,
|
|
165
|
+
66.0,
|
|
166
|
+
60.0,
|
|
167
|
+
20.0
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"box": {
|
|
173
|
+
"id": "obj-status",
|
|
174
|
+
"maxclass": "comment",
|
|
175
|
+
"text": "Initialising…",
|
|
176
|
+
"numinlets": 1,
|
|
177
|
+
"numoutlets": 0,
|
|
178
|
+
"fontsize": 11.0,
|
|
179
|
+
"textcolor": [
|
|
180
|
+
0.55,
|
|
181
|
+
0.78,
|
|
182
|
+
0.55,
|
|
183
|
+
1.0
|
|
184
|
+
],
|
|
185
|
+
"patching_rect": [
|
|
186
|
+
100.0,
|
|
187
|
+
92.0,
|
|
188
|
+
260.0,
|
|
189
|
+
20.0
|
|
190
|
+
],
|
|
191
|
+
"presentation": 1,
|
|
192
|
+
"presentation_rect": [
|
|
193
|
+
78.0,
|
|
194
|
+
66.0,
|
|
195
|
+
260.0,
|
|
196
|
+
20.0
|
|
197
|
+
],
|
|
198
|
+
"varname": "status_display"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"box": {
|
|
203
|
+
"id": "obj-rx-label",
|
|
204
|
+
"maxclass": "comment",
|
|
205
|
+
"text": "RX from MnM/MD:",
|
|
206
|
+
"numinlets": 1,
|
|
207
|
+
"numoutlets": 0,
|
|
208
|
+
"fontsize": 11.0,
|
|
209
|
+
"textcolor": [
|
|
210
|
+
0.6,
|
|
211
|
+
0.62,
|
|
212
|
+
0.66,
|
|
213
|
+
1.0
|
|
214
|
+
],
|
|
215
|
+
"patching_rect": [
|
|
216
|
+
40.0,
|
|
217
|
+
112.0,
|
|
218
|
+
120.0,
|
|
219
|
+
20.0
|
|
220
|
+
],
|
|
221
|
+
"presentation": 1,
|
|
222
|
+
"presentation_rect": [
|
|
223
|
+
12.0,
|
|
224
|
+
88.0,
|
|
225
|
+
120.0,
|
|
226
|
+
20.0
|
|
227
|
+
]
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"box": {
|
|
232
|
+
"id": "obj-rx-count",
|
|
233
|
+
"maxclass": "live.numbox",
|
|
234
|
+
"numinlets": 1,
|
|
235
|
+
"numoutlets": 2,
|
|
236
|
+
"outlettype": [
|
|
237
|
+
"",
|
|
238
|
+
"float"
|
|
239
|
+
],
|
|
240
|
+
"parameter_enable": 0,
|
|
241
|
+
"patching_rect": [
|
|
242
|
+
140.0,
|
|
243
|
+
112.0,
|
|
244
|
+
60.0,
|
|
245
|
+
20.0
|
|
246
|
+
],
|
|
247
|
+
"presentation": 1,
|
|
248
|
+
"presentation_rect": [
|
|
249
|
+
140.0,
|
|
250
|
+
88.0,
|
|
251
|
+
60.0,
|
|
252
|
+
20.0
|
|
253
|
+
],
|
|
254
|
+
"varname": "rx_count"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"box": {
|
|
259
|
+
"id": "obj-hint",
|
|
260
|
+
"maxclass": "comment",
|
|
261
|
+
"text": "Track MIDI Out → physical Elektron port. UDP 9882↑ / UDP 9883↓.",
|
|
262
|
+
"numinlets": 1,
|
|
263
|
+
"numoutlets": 0,
|
|
264
|
+
"fontsize": 10.0,
|
|
265
|
+
"textcolor": [
|
|
266
|
+
0.5,
|
|
267
|
+
0.52,
|
|
268
|
+
0.56,
|
|
269
|
+
1.0
|
|
270
|
+
],
|
|
271
|
+
"patching_rect": [
|
|
272
|
+
40.0,
|
|
273
|
+
132.0,
|
|
274
|
+
340.0,
|
|
275
|
+
20.0
|
|
276
|
+
],
|
|
277
|
+
"presentation": 1,
|
|
278
|
+
"presentation_rect": [
|
|
279
|
+
12.0,
|
|
280
|
+
120.0,
|
|
281
|
+
340.0,
|
|
282
|
+
32.0
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"box": {
|
|
288
|
+
"id": "obj-thisdevice",
|
|
289
|
+
"maxclass": "newobj",
|
|
290
|
+
"text": "live.thisdevice",
|
|
291
|
+
"numinlets": 1,
|
|
292
|
+
"numoutlets": 3,
|
|
293
|
+
"outlettype": [
|
|
294
|
+
"bang",
|
|
295
|
+
"bang",
|
|
296
|
+
""
|
|
297
|
+
],
|
|
298
|
+
"patching_rect": [
|
|
299
|
+
520.0,
|
|
300
|
+
180.0,
|
|
301
|
+
110.0,
|
|
302
|
+
22.0
|
|
303
|
+
]
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"box": {
|
|
308
|
+
"id": "obj-init-msg",
|
|
309
|
+
"maxclass": "message",
|
|
310
|
+
"text": "set initialising",
|
|
311
|
+
"numinlets": 2,
|
|
312
|
+
"numoutlets": 1,
|
|
313
|
+
"outlettype": [
|
|
314
|
+
""
|
|
315
|
+
],
|
|
316
|
+
"patching_rect": [
|
|
317
|
+
520.0,
|
|
318
|
+
220.0,
|
|
319
|
+
110.0,
|
|
320
|
+
22.0
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"box": {
|
|
326
|
+
"id": "obj-sysexin",
|
|
327
|
+
"maxclass": "newobj",
|
|
328
|
+
"text": "sysexin",
|
|
329
|
+
"numinlets": 0,
|
|
330
|
+
"numoutlets": 1,
|
|
331
|
+
"outlettype": [
|
|
332
|
+
"int"
|
|
333
|
+
],
|
|
334
|
+
"patching_rect": [
|
|
335
|
+
40.0,
|
|
336
|
+
180.0,
|
|
337
|
+
60.0,
|
|
338
|
+
22.0
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"box": {
|
|
344
|
+
"id": "obj-sxformat",
|
|
345
|
+
"maxclass": "newobj",
|
|
346
|
+
"text": "sxformat",
|
|
347
|
+
"numinlets": 1,
|
|
348
|
+
"numoutlets": 1,
|
|
349
|
+
"outlettype": [
|
|
350
|
+
""
|
|
351
|
+
],
|
|
352
|
+
"patching_rect": [
|
|
353
|
+
40.0,
|
|
354
|
+
220.0,
|
|
355
|
+
60.0,
|
|
356
|
+
22.0
|
|
357
|
+
]
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"box": {
|
|
362
|
+
"id": "obj-prepend-sysex",
|
|
363
|
+
"maxclass": "newobj",
|
|
364
|
+
"text": "prepend sysex",
|
|
365
|
+
"numinlets": 2,
|
|
366
|
+
"numoutlets": 1,
|
|
367
|
+
"outlettype": [
|
|
368
|
+
""
|
|
369
|
+
],
|
|
370
|
+
"patching_rect": [
|
|
371
|
+
40.0,
|
|
372
|
+
260.0,
|
|
373
|
+
100.0,
|
|
374
|
+
22.0
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"box": {
|
|
380
|
+
"id": "obj-udpreceive",
|
|
381
|
+
"maxclass": "newobj",
|
|
382
|
+
"text": "udpreceive 9883",
|
|
383
|
+
"numinlets": 0,
|
|
384
|
+
"numoutlets": 1,
|
|
385
|
+
"outlettype": [
|
|
386
|
+
""
|
|
387
|
+
],
|
|
388
|
+
"patching_rect": [
|
|
389
|
+
200.0,
|
|
390
|
+
180.0,
|
|
391
|
+
120.0,
|
|
392
|
+
22.0
|
|
393
|
+
]
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"box": {
|
|
398
|
+
"id": "obj-metro-pump",
|
|
399
|
+
"maxclass": "newobj",
|
|
400
|
+
"text": "metro 50 @active 1",
|
|
401
|
+
"numinlets": 2,
|
|
402
|
+
"numoutlets": 1,
|
|
403
|
+
"outlettype": [
|
|
404
|
+
"bang"
|
|
405
|
+
],
|
|
406
|
+
"patching_rect": [
|
|
407
|
+
340.0,
|
|
408
|
+
180.0,
|
|
409
|
+
140.0,
|
|
410
|
+
22.0
|
|
411
|
+
]
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"box": {
|
|
416
|
+
"id": "obj-js",
|
|
417
|
+
"maxclass": "newobj",
|
|
418
|
+
"text": "js livepilot_elektron_bridge.js",
|
|
419
|
+
"numinlets": 1,
|
|
420
|
+
"numoutlets": 4,
|
|
421
|
+
"outlettype": [
|
|
422
|
+
"",
|
|
423
|
+
"",
|
|
424
|
+
"",
|
|
425
|
+
""
|
|
426
|
+
],
|
|
427
|
+
"patching_rect": [
|
|
428
|
+
140.0,
|
|
429
|
+
320.0,
|
|
430
|
+
220.0,
|
|
431
|
+
22.0
|
|
432
|
+
],
|
|
433
|
+
"fontsize": 11.0,
|
|
434
|
+
"bgcolor": [
|
|
435
|
+
0.18,
|
|
436
|
+
0.22,
|
|
437
|
+
0.28,
|
|
438
|
+
1.0
|
|
439
|
+
],
|
|
440
|
+
"textcolor": [
|
|
441
|
+
0.85,
|
|
442
|
+
0.87,
|
|
443
|
+
0.9,
|
|
444
|
+
1.0
|
|
445
|
+
]
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"box": {
|
|
450
|
+
"id": "obj-midiout",
|
|
451
|
+
"maxclass": "newobj",
|
|
452
|
+
"text": "midiout",
|
|
453
|
+
"numinlets": 1,
|
|
454
|
+
"numoutlets": 0,
|
|
455
|
+
"patching_rect": [
|
|
456
|
+
140.0,
|
|
457
|
+
440.0,
|
|
458
|
+
60.0,
|
|
459
|
+
22.0
|
|
460
|
+
]
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"box": {
|
|
465
|
+
"id": "obj-udpsend",
|
|
466
|
+
"maxclass": "newobj",
|
|
467
|
+
"text": "udpsend 127.0.0.1 9882",
|
|
468
|
+
"numinlets": 1,
|
|
469
|
+
"numoutlets": 0,
|
|
470
|
+
"patching_rect": [
|
|
471
|
+
240.0,
|
|
472
|
+
440.0,
|
|
473
|
+
180.0,
|
|
474
|
+
22.0
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"box": {
|
|
480
|
+
"id": "obj-status-prepend",
|
|
481
|
+
"maxclass": "newobj",
|
|
482
|
+
"text": "prepend set",
|
|
483
|
+
"numinlets": 2,
|
|
484
|
+
"numoutlets": 1,
|
|
485
|
+
"outlettype": [
|
|
486
|
+
""
|
|
487
|
+
],
|
|
488
|
+
"patching_rect": [
|
|
489
|
+
440.0,
|
|
490
|
+
440.0,
|
|
491
|
+
90.0,
|
|
492
|
+
22.0
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"box": {
|
|
498
|
+
"id": "obj-online-msg",
|
|
499
|
+
"maxclass": "message",
|
|
500
|
+
"text": "set online",
|
|
501
|
+
"numinlets": 2,
|
|
502
|
+
"numoutlets": 1,
|
|
503
|
+
"outlettype": [
|
|
504
|
+
""
|
|
505
|
+
],
|
|
506
|
+
"patching_rect": [
|
|
507
|
+
440.0,
|
|
508
|
+
400.0,
|
|
509
|
+
80.0,
|
|
510
|
+
22.0
|
|
511
|
+
]
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"box": {
|
|
516
|
+
"id": "obj-rx-counter",
|
|
517
|
+
"maxclass": "newobj",
|
|
518
|
+
"text": "+ 1",
|
|
519
|
+
"numinlets": 2,
|
|
520
|
+
"numoutlets": 1,
|
|
521
|
+
"outlettype": [
|
|
522
|
+
"int"
|
|
523
|
+
],
|
|
524
|
+
"patching_rect": [
|
|
525
|
+
380.0,
|
|
526
|
+
390.0,
|
|
527
|
+
40.0,
|
|
528
|
+
22.0
|
|
529
|
+
]
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"box": {
|
|
534
|
+
"id": "obj-label-sysexin",
|
|
535
|
+
"maxclass": "comment",
|
|
536
|
+
"text": "← SysEx from physical MIDI in (Elektron OUT → TM-1 IN → here)",
|
|
537
|
+
"numinlets": 1,
|
|
538
|
+
"numoutlets": 0,
|
|
539
|
+
"fontsize": 10.0,
|
|
540
|
+
"textcolor": [
|
|
541
|
+
0.5,
|
|
542
|
+
0.52,
|
|
543
|
+
0.56,
|
|
544
|
+
1.0
|
|
545
|
+
],
|
|
546
|
+
"patching_rect": [
|
|
547
|
+
110.0,
|
|
548
|
+
184.0,
|
|
549
|
+
400.0,
|
|
550
|
+
18.0
|
|
551
|
+
]
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"box": {
|
|
556
|
+
"id": "obj-label-udprx",
|
|
557
|
+
"maxclass": "comment",
|
|
558
|
+
"text": "← UDP from Python server (chunked outbound MIDI)",
|
|
559
|
+
"numinlets": 1,
|
|
560
|
+
"numoutlets": 0,
|
|
561
|
+
"fontsize": 10.0,
|
|
562
|
+
"textcolor": [
|
|
563
|
+
0.5,
|
|
564
|
+
0.52,
|
|
565
|
+
0.56,
|
|
566
|
+
1.0
|
|
567
|
+
],
|
|
568
|
+
"patching_rect": [
|
|
569
|
+
330.0,
|
|
570
|
+
204.0,
|
|
571
|
+
300.0,
|
|
572
|
+
18.0
|
|
573
|
+
]
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"box": {
|
|
578
|
+
"id": "obj-label-js",
|
|
579
|
+
"maxclass": "comment",
|
|
580
|
+
"text": "outlet 0 → midiout outlet 1 → udpsend(9882) outlet 2 → status outlet 3 → rx_count",
|
|
581
|
+
"numinlets": 1,
|
|
582
|
+
"numoutlets": 0,
|
|
583
|
+
"fontsize": 10.0,
|
|
584
|
+
"textcolor": [
|
|
585
|
+
0.5,
|
|
586
|
+
0.52,
|
|
587
|
+
0.56,
|
|
588
|
+
1.0
|
|
589
|
+
],
|
|
590
|
+
"patching_rect": [
|
|
591
|
+
140.0,
|
|
592
|
+
348.0,
|
|
593
|
+
500.0,
|
|
594
|
+
18.0
|
|
595
|
+
]
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
],
|
|
599
|
+
"lines": [
|
|
600
|
+
{
|
|
601
|
+
"patchline": {
|
|
602
|
+
"source": [
|
|
603
|
+
"obj-thisdevice",
|
|
604
|
+
2
|
|
605
|
+
],
|
|
606
|
+
"destination": [
|
|
607
|
+
"obj-init-msg",
|
|
608
|
+
0
|
|
609
|
+
]
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"patchline": {
|
|
614
|
+
"source": [
|
|
615
|
+
"obj-init-msg",
|
|
616
|
+
0
|
|
617
|
+
],
|
|
618
|
+
"destination": [
|
|
619
|
+
"obj-status",
|
|
620
|
+
0
|
|
621
|
+
]
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"patchline": {
|
|
626
|
+
"source": [
|
|
627
|
+
"obj-sysexin",
|
|
628
|
+
0
|
|
629
|
+
],
|
|
630
|
+
"destination": [
|
|
631
|
+
"obj-sxformat",
|
|
632
|
+
0
|
|
633
|
+
]
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"patchline": {
|
|
638
|
+
"source": [
|
|
639
|
+
"obj-sxformat",
|
|
640
|
+
0
|
|
641
|
+
],
|
|
642
|
+
"destination": [
|
|
643
|
+
"obj-prepend-sysex",
|
|
644
|
+
0
|
|
645
|
+
]
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"patchline": {
|
|
650
|
+
"source": [
|
|
651
|
+
"obj-prepend-sysex",
|
|
652
|
+
0
|
|
653
|
+
],
|
|
654
|
+
"destination": [
|
|
655
|
+
"obj-js",
|
|
656
|
+
0
|
|
657
|
+
]
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"patchline": {
|
|
662
|
+
"source": [
|
|
663
|
+
"obj-udpreceive",
|
|
664
|
+
0
|
|
665
|
+
],
|
|
666
|
+
"destination": [
|
|
667
|
+
"obj-js",
|
|
668
|
+
0
|
|
669
|
+
]
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"patchline": {
|
|
674
|
+
"source": [
|
|
675
|
+
"obj-metro-pump",
|
|
676
|
+
0
|
|
677
|
+
],
|
|
678
|
+
"destination": [
|
|
679
|
+
"obj-js",
|
|
680
|
+
0
|
|
681
|
+
]
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"patchline": {
|
|
686
|
+
"source": [
|
|
687
|
+
"obj-js",
|
|
688
|
+
0
|
|
689
|
+
],
|
|
690
|
+
"destination": [
|
|
691
|
+
"obj-midiout",
|
|
692
|
+
0
|
|
693
|
+
]
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"patchline": {
|
|
698
|
+
"source": [
|
|
699
|
+
"obj-js",
|
|
700
|
+
1
|
|
701
|
+
],
|
|
702
|
+
"destination": [
|
|
703
|
+
"obj-udpsend",
|
|
704
|
+
0
|
|
705
|
+
]
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"patchline": {
|
|
710
|
+
"source": [
|
|
711
|
+
"obj-js",
|
|
712
|
+
1
|
|
713
|
+
],
|
|
714
|
+
"destination": [
|
|
715
|
+
"obj-online-msg",
|
|
716
|
+
0
|
|
717
|
+
]
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"patchline": {
|
|
722
|
+
"source": [
|
|
723
|
+
"obj-online-msg",
|
|
724
|
+
0
|
|
725
|
+
],
|
|
726
|
+
"destination": [
|
|
727
|
+
"obj-status",
|
|
728
|
+
0
|
|
729
|
+
]
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"patchline": {
|
|
734
|
+
"source": [
|
|
735
|
+
"obj-js",
|
|
736
|
+
1
|
|
737
|
+
],
|
|
738
|
+
"destination": [
|
|
739
|
+
"obj-rx-counter",
|
|
740
|
+
0
|
|
741
|
+
]
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"patchline": {
|
|
746
|
+
"source": [
|
|
747
|
+
"obj-rx-counter",
|
|
748
|
+
0
|
|
749
|
+
],
|
|
750
|
+
"destination": [
|
|
751
|
+
"obj-rx-count",
|
|
752
|
+
0
|
|
753
|
+
]
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
]
|
|
757
|
+
}
|
|
758
|
+
}
|