livepilot 1.10.6 → 1.10.8

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.
Files changed (163) hide show
  1. package/CHANGELOG.md +168 -0
  2. package/README.md +12 -10
  3. package/bin/livepilot.js +168 -30
  4. package/installer/install.js +117 -11
  5. package/m4l_device/LivePilot_Analyzer.amxd +0 -0
  6. package/m4l_device/livepilot_bridge.js +215 -3
  7. package/mcp_server/__init__.py +1 -1
  8. package/mcp_server/atlas/__init__.py +132 -33
  9. package/mcp_server/atlas/tools.py +56 -15
  10. package/mcp_server/composer/layer_planner.py +27 -0
  11. package/mcp_server/composer/prompt_parser.py +15 -6
  12. package/mcp_server/connection.py +11 -3
  13. package/mcp_server/corpus/__init__.py +14 -4
  14. package/mcp_server/creative_constraints/tools.py +206 -33
  15. package/mcp_server/experiment/engine.py +7 -9
  16. package/mcp_server/hook_hunter/analyzer.py +62 -9
  17. package/mcp_server/hook_hunter/tools.py +60 -9
  18. package/mcp_server/m4l_bridge.py +68 -12
  19. package/mcp_server/musical_intelligence/detectors.py +32 -0
  20. package/mcp_server/performance_engine/tools.py +112 -29
  21. package/mcp_server/preview_studio/engine.py +89 -8
  22. package/mcp_server/preview_studio/tools.py +22 -6
  23. package/mcp_server/project_brain/automation_graph.py +71 -19
  24. package/mcp_server/project_brain/builder.py +2 -0
  25. package/mcp_server/project_brain/tools.py +55 -5
  26. package/mcp_server/reference_engine/profile_builder.py +129 -3
  27. package/mcp_server/reference_engine/tools.py +47 -6
  28. package/mcp_server/runtime/execution_router.py +66 -2
  29. package/mcp_server/runtime/mcp_dispatch.py +75 -3
  30. package/mcp_server/runtime/remote_commands.py +10 -2
  31. package/mcp_server/sample_engine/analyzer.py +131 -4
  32. package/mcp_server/sample_engine/critics.py +29 -8
  33. package/mcp_server/sample_engine/models.py +42 -4
  34. package/mcp_server/sample_engine/tools.py +48 -14
  35. package/mcp_server/semantic_moves/__init__.py +1 -0
  36. package/mcp_server/semantic_moves/compiler.py +9 -1
  37. package/mcp_server/semantic_moves/device_creation_compilers.py +47 -0
  38. package/mcp_server/semantic_moves/mix_compilers.py +170 -0
  39. package/mcp_server/semantic_moves/mix_moves.py +1 -1
  40. package/mcp_server/semantic_moves/models.py +5 -0
  41. package/mcp_server/semantic_moves/sound_design_compilers.py +22 -59
  42. package/mcp_server/semantic_moves/tools.py +15 -4
  43. package/mcp_server/semantic_moves/transition_compilers.py +12 -19
  44. package/mcp_server/server.py +75 -5
  45. package/mcp_server/services/singletons.py +68 -0
  46. package/mcp_server/session_continuity/models.py +4 -0
  47. package/mcp_server/session_continuity/tracker.py +14 -1
  48. package/mcp_server/song_brain/builder.py +110 -12
  49. package/mcp_server/song_brain/tools.py +77 -13
  50. package/mcp_server/sound_design/tools.py +112 -1
  51. package/mcp_server/splice_client/client.py +29 -8
  52. package/mcp_server/stuckness_detector/detector.py +90 -0
  53. package/mcp_server/stuckness_detector/tools.py +41 -0
  54. package/mcp_server/tools/_agent_os_engine/critics.py +24 -0
  55. package/mcp_server/tools/_composition_engine/__init__.py +2 -2
  56. package/mcp_server/tools/_composition_engine/harmony.py +90 -0
  57. package/mcp_server/tools/_composition_engine/sections.py +47 -4
  58. package/mcp_server/tools/_harmony_engine.py +52 -8
  59. package/mcp_server/tools/_research_engine.py +98 -19
  60. package/mcp_server/tools/_theory_engine.py +138 -9
  61. package/mcp_server/tools/agent_os.py +20 -3
  62. package/mcp_server/tools/analyzer.py +105 -6
  63. package/mcp_server/tools/clips.py +46 -1
  64. package/mcp_server/tools/composition.py +66 -23
  65. package/mcp_server/tools/devices.py +22 -1
  66. package/mcp_server/tools/harmony.py +115 -14
  67. package/mcp_server/tools/midi_io.py +23 -1
  68. package/mcp_server/tools/mixing.py +35 -1
  69. package/mcp_server/tools/motif.py +49 -3
  70. package/mcp_server/tools/research.py +24 -0
  71. package/mcp_server/tools/theory.py +108 -16
  72. package/mcp_server/tools/tracks.py +1 -1
  73. package/mcp_server/tools/transport.py +1 -1
  74. package/mcp_server/transition_engine/critics.py +18 -11
  75. package/mcp_server/translation_engine/tools.py +8 -4
  76. package/package.json +25 -3
  77. package/remote_script/LivePilot/__init__.py +77 -2
  78. package/remote_script/LivePilot/arrangement.py +12 -2
  79. package/remote_script/LivePilot/browser.py +16 -6
  80. package/remote_script/LivePilot/clips.py +69 -0
  81. package/remote_script/LivePilot/devices.py +10 -5
  82. package/remote_script/LivePilot/mixing.py +117 -0
  83. package/remote_script/LivePilot/notes.py +13 -2
  84. package/remote_script/LivePilot/router.py +13 -1
  85. package/remote_script/LivePilot/server.py +51 -13
  86. package/remote_script/LivePilot/version_detect.py +7 -4
  87. package/server.json +20 -0
  88. package/.claude-plugin/marketplace.json +0 -21
  89. package/.mcpbignore +0 -57
  90. package/AGENTS.md +0 -46
  91. package/CODE_OF_CONDUCT.md +0 -27
  92. package/CONTRIBUTING.md +0 -131
  93. package/SECURITY.md +0 -48
  94. package/livepilot/.Codex-plugin/plugin.json +0 -8
  95. package/livepilot/.claude-plugin/plugin.json +0 -8
  96. package/livepilot/agents/livepilot-producer/AGENT.md +0 -313
  97. package/livepilot/commands/arrange.md +0 -47
  98. package/livepilot/commands/beat.md +0 -77
  99. package/livepilot/commands/evaluate.md +0 -49
  100. package/livepilot/commands/memory.md +0 -22
  101. package/livepilot/commands/mix.md +0 -44
  102. package/livepilot/commands/perform.md +0 -42
  103. package/livepilot/commands/session.md +0 -13
  104. package/livepilot/commands/sounddesign.md +0 -43
  105. package/livepilot/skills/livepilot-arrangement/SKILL.md +0 -155
  106. package/livepilot/skills/livepilot-composition-engine/SKILL.md +0 -107
  107. package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +0 -97
  108. package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +0 -102
  109. package/livepilot/skills/livepilot-core/SKILL.md +0 -184
  110. package/livepilot/skills/livepilot-core/references/ableton-workflow-patterns.md +0 -831
  111. package/livepilot/skills/livepilot-core/references/automation-atlas.md +0 -272
  112. package/livepilot/skills/livepilot-core/references/device-atlas/00-index.md +0 -110
  113. package/livepilot/skills/livepilot-core/references/device-atlas/distortion-and-character.md +0 -687
  114. package/livepilot/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +0 -753
  115. package/livepilot/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +0 -525
  116. package/livepilot/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +0 -402
  117. package/livepilot/skills/livepilot-core/references/device-atlas/midi-tools.md +0 -963
  118. package/livepilot/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +0 -874
  119. package/livepilot/skills/livepilot-core/references/device-atlas/space-and-depth.md +0 -571
  120. package/livepilot/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +0 -714
  121. package/livepilot/skills/livepilot-core/references/device-atlas/synths-native.md +0 -953
  122. package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +0 -34
  123. package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +0 -204
  124. package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +0 -173
  125. package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +0 -211
  126. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +0 -188
  127. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +0 -162
  128. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +0 -229
  129. package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +0 -243
  130. package/livepilot/skills/livepilot-core/references/m4l-devices.md +0 -352
  131. package/livepilot/skills/livepilot-core/references/memory-guide.md +0 -107
  132. package/livepilot/skills/livepilot-core/references/midi-recipes.md +0 -402
  133. package/livepilot/skills/livepilot-core/references/mixing-patterns.md +0 -578
  134. package/livepilot/skills/livepilot-core/references/overview.md +0 -290
  135. package/livepilot/skills/livepilot-core/references/sample-manipulation.md +0 -724
  136. package/livepilot/skills/livepilot-core/references/sound-design-deep.md +0 -140
  137. package/livepilot/skills/livepilot-core/references/sound-design.md +0 -393
  138. package/livepilot/skills/livepilot-devices/SKILL.md +0 -169
  139. package/livepilot/skills/livepilot-evaluation/SKILL.md +0 -156
  140. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +0 -118
  141. package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +0 -121
  142. package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +0 -110
  143. package/livepilot/skills/livepilot-mix-engine/SKILL.md +0 -123
  144. package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +0 -143
  145. package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +0 -105
  146. package/livepilot/skills/livepilot-mixing/SKILL.md +0 -157
  147. package/livepilot/skills/livepilot-notes/SKILL.md +0 -130
  148. package/livepilot/skills/livepilot-performance-engine/SKILL.md +0 -122
  149. package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +0 -98
  150. package/livepilot/skills/livepilot-release/SKILL.md +0 -130
  151. package/livepilot/skills/livepilot-sample-engine/SKILL.md +0 -105
  152. package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +0 -87
  153. package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +0 -51
  154. package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +0 -131
  155. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +0 -168
  156. package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +0 -119
  157. package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +0 -118
  158. package/livepilot/skills/livepilot-wonder/SKILL.md +0 -79
  159. package/m4l_device/LivePilot_Analyzer.maxpat +0 -2705
  160. package/manifest.json +0 -91
  161. package/mcp_server/splice_client/protos/app_pb2.pyi +0 -1153
  162. package/scripts/generate_tool_catalog.py +0 -131
  163. package/scripts/sync_metadata.py +0 -132
@@ -1,2705 +0,0 @@
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
- 1200.0,
16
- 800.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": 350.0,
41
- "description": "LivePilot Analyzer \u2014 real-time spectral analysis for AI mixing",
42
- "digest": "8-band spectrum, RMS, peak, pitch tracking, key detection, LiveAPI bridge",
43
- "tags": "livepilot analyzer spectrum",
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
- 50.0,
56
- 790.0,
57
- 350.0,
58
- 82.0
59
- ],
60
- "presentation": 1,
61
- "presentation_rect": [
62
- 0.0,
63
- 0.0,
64
- 350.0,
65
- 170.0
66
- ],
67
- "bgcolor": [
68
- 0.12,
69
- 0.12,
70
- 0.12,
71
- 1.0
72
- ],
73
- "bordercolor": [
74
- 0.2,
75
- 0.2,
76
- 0.2,
77
- 1.0
78
- ],
79
- "border": 1
80
- }
81
- },
82
- {
83
- "box": {
84
- "id": "obj-1",
85
- "maxclass": "newobj",
86
- "text": "plugin~",
87
- "numinlets": 0,
88
- "numoutlets": 2,
89
- "outlettype": [
90
- "signal",
91
- "signal"
92
- ],
93
- "patching_rect": [
94
- 50.0,
95
- 30.0,
96
- 65.0,
97
- 22.0
98
- ]
99
- }
100
- },
101
- {
102
- "box": {
103
- "id": "obj-2",
104
- "maxclass": "newobj",
105
- "text": "plugout~",
106
- "numinlets": 2,
107
- "numoutlets": 2,
108
- "outlettype": [
109
- "signal",
110
- "signal"
111
- ],
112
- "patching_rect": [
113
- 50.0,
114
- 700.0,
115
- 70.0,
116
- 22.0
117
- ]
118
- }
119
- },
120
- {
121
- "box": {
122
- "id": "obj-3",
123
- "maxclass": "newobj",
124
- "text": "+~",
125
- "numinlets": 2,
126
- "numoutlets": 1,
127
- "outlettype": [
128
- "signal"
129
- ],
130
- "patching_rect": [
131
- 300.0,
132
- 80.0,
133
- 35.0,
134
- 22.0
135
- ]
136
- }
137
- },
138
- {
139
- "box": {
140
- "id": "obj-4",
141
- "maxclass": "newobj",
142
- "text": "*~ 0.5",
143
- "numinlets": 2,
144
- "numoutlets": 1,
145
- "outlettype": [
146
- "signal"
147
- ],
148
- "patching_rect": [
149
- 300.0,
150
- 115.0,
151
- 50.0,
152
- 22.0
153
- ]
154
- }
155
- },
156
- {
157
- "box": {
158
- "id": "obj-5",
159
- "maxclass": "newobj",
160
- "text": "fffb~ 8",
161
- "numinlets": 2,
162
- "numoutlets": 8,
163
- "outlettype": [
164
- "signal",
165
- "signal",
166
- "signal",
167
- "signal",
168
- "signal",
169
- "signal",
170
- "signal",
171
- "signal"
172
- ],
173
- "patching_rect": [
174
- 300.0,
175
- 180.0,
176
- 300.0,
177
- 22.0
178
- ]
179
- }
180
- },
181
- {
182
- "box": {
183
- "id": "obj-6",
184
- "maxclass": "newobj",
185
- "text": "loadmess 40. 130. 350. 1000. 3000. 6000. 10000. 16000.",
186
- "numinlets": 1,
187
- "numoutlets": 1,
188
- "outlettype": [
189
- ""
190
- ],
191
- "patching_rect": [
192
- 620.0,
193
- 150.0,
194
- 320.0,
195
- 22.0
196
- ]
197
- }
198
- },
199
- {
200
- "box": {
201
- "id": "obj-abs1",
202
- "maxclass": "newobj",
203
- "text": "abs~",
204
- "numinlets": 1,
205
- "numoutlets": 1,
206
- "outlettype": [
207
- "signal"
208
- ],
209
- "patching_rect": [
210
- 300.0,
211
- 220.0,
212
- 35.0,
213
- 22.0
214
- ]
215
- }
216
- },
217
- {
218
- "box": {
219
- "id": "obj-abs2",
220
- "maxclass": "newobj",
221
- "text": "abs~",
222
- "numinlets": 1,
223
- "numoutlets": 1,
224
- "outlettype": [
225
- "signal"
226
- ],
227
- "patching_rect": [
228
- 345.0,
229
- 220.0,
230
- 35.0,
231
- 22.0
232
- ]
233
- }
234
- },
235
- {
236
- "box": {
237
- "id": "obj-abs3",
238
- "maxclass": "newobj",
239
- "text": "abs~",
240
- "numinlets": 1,
241
- "numoutlets": 1,
242
- "outlettype": [
243
- "signal"
244
- ],
245
- "patching_rect": [
246
- 390.0,
247
- 220.0,
248
- 35.0,
249
- 22.0
250
- ]
251
- }
252
- },
253
- {
254
- "box": {
255
- "id": "obj-abs4",
256
- "maxclass": "newobj",
257
- "text": "abs~",
258
- "numinlets": 1,
259
- "numoutlets": 1,
260
- "outlettype": [
261
- "signal"
262
- ],
263
- "patching_rect": [
264
- 435.0,
265
- 220.0,
266
- 35.0,
267
- 22.0
268
- ]
269
- }
270
- },
271
- {
272
- "box": {
273
- "id": "obj-abs5",
274
- "maxclass": "newobj",
275
- "text": "abs~",
276
- "numinlets": 1,
277
- "numoutlets": 1,
278
- "outlettype": [
279
- "signal"
280
- ],
281
- "patching_rect": [
282
- 480.0,
283
- 220.0,
284
- 35.0,
285
- 22.0
286
- ]
287
- }
288
- },
289
- {
290
- "box": {
291
- "id": "obj-abs6",
292
- "maxclass": "newobj",
293
- "text": "abs~",
294
- "numinlets": 1,
295
- "numoutlets": 1,
296
- "outlettype": [
297
- "signal"
298
- ],
299
- "patching_rect": [
300
- 525.0,
301
- 220.0,
302
- 35.0,
303
- 22.0
304
- ]
305
- }
306
- },
307
- {
308
- "box": {
309
- "id": "obj-abs7",
310
- "maxclass": "newobj",
311
- "text": "abs~",
312
- "numinlets": 1,
313
- "numoutlets": 1,
314
- "outlettype": [
315
- "signal"
316
- ],
317
- "patching_rect": [
318
- 570.0,
319
- 220.0,
320
- 35.0,
321
- 22.0
322
- ]
323
- }
324
- },
325
- {
326
- "box": {
327
- "id": "obj-abs8",
328
- "maxclass": "newobj",
329
- "text": "abs~",
330
- "numinlets": 1,
331
- "numoutlets": 1,
332
- "outlettype": [
333
- "signal"
334
- ],
335
- "patching_rect": [
336
- 615.0,
337
- 220.0,
338
- 35.0,
339
- 22.0
340
- ]
341
- }
342
- },
343
- {
344
- "box": {
345
- "id": "obj-snap1",
346
- "maxclass": "newobj",
347
- "text": "snapshot~ 200",
348
- "numinlets": 2,
349
- "numoutlets": 1,
350
- "outlettype": [
351
- "float"
352
- ],
353
- "patching_rect": [
354
- 300.0,
355
- 260.0,
356
- 80.0,
357
- 22.0
358
- ]
359
- }
360
- },
361
- {
362
- "box": {
363
- "id": "obj-snap2",
364
- "maxclass": "newobj",
365
- "text": "snapshot~ 200",
366
- "numinlets": 2,
367
- "numoutlets": 1,
368
- "outlettype": [
369
- "float"
370
- ],
371
- "patching_rect": [
372
- 345.0,
373
- 260.0,
374
- 80.0,
375
- 22.0
376
- ]
377
- }
378
- },
379
- {
380
- "box": {
381
- "id": "obj-snap3",
382
- "maxclass": "newobj",
383
- "text": "snapshot~ 200",
384
- "numinlets": 2,
385
- "numoutlets": 1,
386
- "outlettype": [
387
- "float"
388
- ],
389
- "patching_rect": [
390
- 390.0,
391
- 260.0,
392
- 80.0,
393
- 22.0
394
- ]
395
- }
396
- },
397
- {
398
- "box": {
399
- "id": "obj-snap4",
400
- "maxclass": "newobj",
401
- "text": "snapshot~ 200",
402
- "numinlets": 2,
403
- "numoutlets": 1,
404
- "outlettype": [
405
- "float"
406
- ],
407
- "patching_rect": [
408
- 435.0,
409
- 260.0,
410
- 80.0,
411
- 22.0
412
- ]
413
- }
414
- },
415
- {
416
- "box": {
417
- "id": "obj-snap5",
418
- "maxclass": "newobj",
419
- "text": "snapshot~ 200",
420
- "numinlets": 2,
421
- "numoutlets": 1,
422
- "outlettype": [
423
- "float"
424
- ],
425
- "patching_rect": [
426
- 480.0,
427
- 260.0,
428
- 80.0,
429
- 22.0
430
- ]
431
- }
432
- },
433
- {
434
- "box": {
435
- "id": "obj-snap6",
436
- "maxclass": "newobj",
437
- "text": "snapshot~ 200",
438
- "numinlets": 2,
439
- "numoutlets": 1,
440
- "outlettype": [
441
- "float"
442
- ],
443
- "patching_rect": [
444
- 525.0,
445
- 260.0,
446
- 80.0,
447
- 22.0
448
- ]
449
- }
450
- },
451
- {
452
- "box": {
453
- "id": "obj-snap7",
454
- "maxclass": "newobj",
455
- "text": "snapshot~ 200",
456
- "numinlets": 2,
457
- "numoutlets": 1,
458
- "outlettype": [
459
- "float"
460
- ],
461
- "patching_rect": [
462
- 570.0,
463
- 260.0,
464
- 80.0,
465
- 22.0
466
- ]
467
- }
468
- },
469
- {
470
- "box": {
471
- "id": "obj-snap8",
472
- "maxclass": "newobj",
473
- "text": "snapshot~ 200",
474
- "numinlets": 2,
475
- "numoutlets": 1,
476
- "outlettype": [
477
- "float"
478
- ],
479
- "patching_rect": [
480
- 615.0,
481
- 260.0,
482
- 80.0,
483
- 22.0
484
- ]
485
- }
486
- },
487
- {
488
- "box": {
489
- "id": "obj-pack",
490
- "maxclass": "newobj",
491
- "text": "pack f f f f f f f f",
492
- "numinlets": 8,
493
- "numoutlets": 1,
494
- "outlettype": [
495
- ""
496
- ],
497
- "patching_rect": [
498
- 300.0,
499
- 300.0,
500
- 300.0,
501
- 22.0
502
- ]
503
- }
504
- },
505
- {
506
- "box": {
507
- "id": "obj-prepend-spec",
508
- "maxclass": "newobj",
509
- "text": "prepend /spectrum",
510
- "numinlets": 1,
511
- "numoutlets": 1,
512
- "outlettype": [
513
- ""
514
- ],
515
- "patching_rect": [
516
- 300.0,
517
- 340.0,
518
- 105.0,
519
- 22.0
520
- ]
521
- }
522
- },
523
- {
524
- "box": {
525
- "id": "obj-udpsend",
526
- "maxclass": "newobj",
527
- "text": "udpsend 127.0.0.1 9880",
528
- "numinlets": 1,
529
- "numoutlets": 0,
530
- "patching_rect": [
531
- 300.0,
532
- 650.0,
533
- 145.0,
534
- 22.0
535
- ]
536
- }
537
- },
538
- {
539
- "box": {
540
- "id": "obj-peak",
541
- "maxclass": "newobj",
542
- "text": "peakamp~ 200",
543
- "numinlets": 2,
544
- "numoutlets": 1,
545
- "outlettype": [
546
- "float"
547
- ],
548
- "patching_rect": [
549
- 700.0,
550
- 180.0,
551
- 85.0,
552
- 22.0
553
- ]
554
- }
555
- },
556
- {
557
- "box": {
558
- "id": "obj-prepend-peak",
559
- "maxclass": "newobj",
560
- "text": "prepend /peak",
561
- "numinlets": 1,
562
- "numoutlets": 1,
563
- "outlettype": [
564
- ""
565
- ],
566
- "patching_rect": [
567
- 700.0,
568
- 220.0,
569
- 85.0,
570
- 22.0
571
- ]
572
- }
573
- },
574
- {
575
- "box": {
576
- "id": "obj-rms",
577
- "maxclass": "newobj",
578
- "text": "average~ 200 rms",
579
- "numinlets": 1,
580
- "numoutlets": 1,
581
- "outlettype": [
582
- "signal"
583
- ],
584
- "patching_rect": [
585
- 820.0,
586
- 180.0,
587
- 105.0,
588
- 22.0
589
- ]
590
- }
591
- },
592
- {
593
- "box": {
594
- "id": "obj-rms-snap",
595
- "maxclass": "newobj",
596
- "text": "snapshot~ 200",
597
- "numinlets": 2,
598
- "numoutlets": 1,
599
- "outlettype": [
600
- "float"
601
- ],
602
- "patching_rect": [
603
- 820.0,
604
- 220.0,
605
- 80.0,
606
- 22.0
607
- ]
608
- }
609
- },
610
- {
611
- "box": {
612
- "id": "obj-prepend-rms",
613
- "maxclass": "newobj",
614
- "text": "prepend /rms",
615
- "numinlets": 1,
616
- "numoutlets": 1,
617
- "outlettype": [
618
- ""
619
- ],
620
- "patching_rect": [
621
- 820.0,
622
- 260.0,
623
- 78.0,
624
- 22.0
625
- ]
626
- }
627
- },
628
- {
629
- "box": {
630
- "id": "obj-sigmund",
631
- "maxclass": "newobj",
632
- "text": "fzero~ 2048",
633
- "numinlets": 2,
634
- "numoutlets": 3,
635
- "outlettype": [
636
- "float",
637
- "float",
638
- "float"
639
- ],
640
- "patching_rect": [
641
- 300.0,
642
- 420.0,
643
- 185.0,
644
- 22.0
645
- ]
646
- }
647
- },
648
- {
649
- "box": {
650
- "id": "obj-pitch-pack",
651
- "maxclass": "newobj",
652
- "text": "pack f f",
653
- "numinlets": 2,
654
- "numoutlets": 1,
655
- "outlettype": [
656
- ""
657
- ],
658
- "patching_rect": [
659
- 300.0,
660
- 460.0,
661
- 55.0,
662
- 22.0
663
- ]
664
- }
665
- },
666
- {
667
- "box": {
668
- "id": "obj-prepend-pitch",
669
- "maxclass": "newobj",
670
- "text": "prepend /pitch",
671
- "numinlets": 1,
672
- "numoutlets": 1,
673
- "outlettype": [
674
- ""
675
- ],
676
- "patching_rect": [
677
- 300.0,
678
- 500.0,
679
- 87.0,
680
- 22.0
681
- ]
682
- }
683
- },
684
- {
685
- "box": {
686
- "id": "obj-pitch-to-js",
687
- "maxclass": "newobj",
688
- "text": "prepend pitch_in",
689
- "numinlets": 1,
690
- "numoutlets": 1,
691
- "outlettype": [
692
- ""
693
- ],
694
- "patching_rect": [
695
- 500.0,
696
- 460.0,
697
- 100.0,
698
- 22.0
699
- ]
700
- }
701
- },
702
- {
703
- "box": {
704
- "id": "obj-js",
705
- "maxclass": "newobj",
706
- "text": "js livepilot_bridge.js",
707
- "numinlets": 2,
708
- "numoutlets": 2,
709
- "outlettype": [
710
- "",
711
- ""
712
- ],
713
- "patching_rect": [
714
- 500.0,
715
- 550.0,
716
- 130.0,
717
- 22.0
718
- ]
719
- }
720
- },
721
- {
722
- "box": {
723
- "id": "obj-udprecv",
724
- "maxclass": "newobj",
725
- "text": "udpreceive 9881",
726
- "numinlets": 1,
727
- "numoutlets": 1,
728
- "outlettype": [
729
- ""
730
- ],
731
- "patching_rect": [
732
- 500.0,
733
- 500.0,
734
- 100.0,
735
- 22.0
736
- ]
737
- }
738
- },
739
- {
740
- "box": {
741
- "id": "obj-thisdevice",
742
- "maxclass": "newobj",
743
- "text": "live.thisdevice",
744
- "numinlets": 0,
745
- "numoutlets": 1,
746
- "outlettype": [
747
- ""
748
- ],
749
- "patching_rect": [
750
- 700.0,
751
- 500.0,
752
- 95.0,
753
- 22.0
754
- ]
755
- }
756
- },
757
- {
758
- "box": {
759
- "id": "obj-defer-reinit",
760
- "maxclass": "newobj",
761
- "text": "deferlow",
762
- "numinlets": 1,
763
- "numoutlets": 1,
764
- "outlettype": [
765
- ""
766
- ],
767
- "patching_rect": [
768
- 700.0,
769
- 530.0,
770
- 55.0,
771
- 22.0
772
- ]
773
- }
774
- },
775
- {
776
- "box": {
777
- "id": "obj-reinit-udpsend",
778
- "maxclass": "message",
779
- "text": "host 127.0.0.1, port 9880",
780
- "numinlets": 2,
781
- "numoutlets": 1,
782
- "outlettype": [
783
- ""
784
- ],
785
- "patching_rect": [
786
- 700.0,
787
- 560.0,
788
- 160.0,
789
- 22.0
790
- ]
791
- }
792
- },
793
- {
794
- "box": {
795
- "id": "obj-dspstate",
796
- "maxclass": "newobj",
797
- "text": "dspstate~",
798
- "numinlets": 1,
799
- "numoutlets": 2,
800
- "outlettype": [
801
- "signal",
802
- "float"
803
- ],
804
- "patching_rect": [
805
- 900.0,
806
- 500.0,
807
- 65.0,
808
- 22.0
809
- ]
810
- }
811
- },
812
- {
813
- "box": {
814
- "id": "obj-multislider",
815
- "maxclass": "multislider",
816
- "numinlets": 1,
817
- "numoutlets": 2,
818
- "outlettype": [
819
- "list",
820
- ""
821
- ],
822
- "patching_rect": [
823
- 300.0,
824
- 370.0,
825
- 120.0,
826
- 40.0
827
- ],
828
- "presentation": 1,
829
- "presentation_rect": [
830
- 6.0,
831
- 28.0,
832
- 262.0,
833
- 136.0
834
- ],
835
- "size": 8,
836
- "setminmax": [
837
- 0.0,
838
- 0.3
839
- ],
840
- "orientation": 1,
841
- "setstyle": 1,
842
- "settype": 1,
843
- "slidercolor": [
844
- 0.65,
845
- 0.82,
846
- 1.0,
847
- 0.9
848
- ],
849
- "bgcolor": [
850
- 0.08,
851
- 0.08,
852
- 0.08,
853
- 1.0
854
- ],
855
- "candicane2": [
856
- 0.55,
857
- 0.75,
858
- 1.0,
859
- 0.9
860
- ],
861
- "candicane3": [
862
- 0.45,
863
- 0.68,
864
- 1.0,
865
- 0.9
866
- ],
867
- "candicane4": [
868
- 0.4,
869
- 0.62,
870
- 0.95,
871
- 0.9
872
- ],
873
- "candicane5": [
874
- 0.35,
875
- 0.55,
876
- 0.9,
877
- 0.9
878
- ],
879
- "candicane6": [
880
- 0.3,
881
- 0.5,
882
- 0.85,
883
- 0.9
884
- ],
885
- "candicane7": [
886
- 0.25,
887
- 0.45,
888
- 0.8,
889
- 0.9
890
- ],
891
- "candicane8": [
892
- 0.2,
893
- 0.4,
894
- 0.75,
895
- 0.9
896
- ],
897
- "thickness": 4,
898
- "parameter_enable": 0
899
- }
900
- },
901
- {
902
- "box": {
903
- "id": "obj-title",
904
- "maxclass": "comment",
905
- "text": "LIVEPILOT",
906
- "numinlets": 1,
907
- "numoutlets": 0,
908
- "patching_rect": [
909
- 50.0,
910
- 750.0,
911
- 120.0,
912
- 20.0
913
- ],
914
- "presentation": 1,
915
- "presentation_rect": [
916
- 6.0,
917
- 6.0,
918
- 80.0,
919
- 18.0
920
- ],
921
- "fontname": "Arial Bold",
922
- "fontsize": 11.0,
923
- "textcolor": [
924
- 1.0,
925
- 1.0,
926
- 1.0,
927
- 1.0
928
- ]
929
- }
930
- },
931
- {
932
- "box": {
933
- "id": "obj-subtitle",
934
- "maxclass": "comment",
935
- "text": "ANALYZER",
936
- "numinlets": 1,
937
- "numoutlets": 0,
938
- "patching_rect": [
939
- 170.0,
940
- 750.0,
941
- 80.0,
942
- 20.0
943
- ],
944
- "presentation": 1,
945
- "presentation_rect": [
946
- 84.0,
947
- 7.0,
948
- 65.0,
949
- 16.0
950
- ],
951
- "fontname": "Arial",
952
- "fontsize": 9.0,
953
- "textcolor": [
954
- 0.45,
955
- 0.45,
956
- 0.45,
957
- 1.0
958
- ]
959
- }
960
- },
961
- {
962
- "box": {
963
- "id": "obj-key-label",
964
- "maxclass": "comment",
965
- "text": "KEY",
966
- "numinlets": 1,
967
- "numoutlets": 0,
968
- "patching_rect": [
969
- 50.0,
970
- 770.0,
971
- 30.0,
972
- 20.0
973
- ],
974
- "presentation": 1,
975
- "presentation_rect": [
976
- 276.0,
977
- 28.0,
978
- 30.0,
979
- 14.0
980
- ],
981
- "fontname": "Arial",
982
- "fontsize": 8.0,
983
- "textcolor": [
984
- 0.4,
985
- 0.4,
986
- 0.4,
987
- 1.0
988
- ]
989
- }
990
- },
991
- {
992
- "box": {
993
- "id": "obj-key-display",
994
- "maxclass": "comment",
995
- "text": "\u2014",
996
- "numinlets": 1,
997
- "numoutlets": 0,
998
- "patching_rect": [
999
- 80.0,
1000
- 770.0,
1001
- 60.0,
1002
- 20.0
1003
- ],
1004
- "presentation": 1,
1005
- "presentation_rect": [
1006
- 276.0,
1007
- 46.0,
1008
- 72.0,
1009
- 50.0
1010
- ],
1011
- "fontname": "Arial Bold",
1012
- "fontsize": 13.0,
1013
- "textcolor": [
1014
- 0.65,
1015
- 0.82,
1016
- 1.0,
1017
- 1.0
1018
- ]
1019
- }
1020
- },
1021
- {
1022
- "box": {
1023
- "id": "obj-status",
1024
- "maxclass": "comment",
1025
- "text": "...",
1026
- "numinlets": 1,
1027
- "numoutlets": 0,
1028
- "patching_rect": [
1029
- 250.0,
1030
- 750.0,
1031
- 60.0,
1032
- 20.0
1033
- ],
1034
- "presentation": 1,
1035
- "presentation_rect": [
1036
- 276.0,
1037
- 148.0,
1038
- 60.0,
1039
- 14.0
1040
- ],
1041
- "fontname": "Arial",
1042
- "fontsize": 8.0,
1043
- "textcolor": [
1044
- 0.35,
1045
- 0.65,
1046
- 0.35,
1047
- 1.0
1048
- ]
1049
- }
1050
- },
1051
- {
1052
- "box": {
1053
- "id": "obj-route-status",
1054
- "maxclass": "newobj",
1055
- "text": "route status key capture_start capture_stop",
1056
- "numinlets": 1,
1057
- "numoutlets": 5,
1058
- "outlettype": [
1059
- "",
1060
- "",
1061
- "",
1062
- "",
1063
- ""
1064
- ],
1065
- "patching_rect": [
1066
- 700.0,
1067
- 580.0,
1068
- 248.0,
1069
- 22.0
1070
- ]
1071
- }
1072
- },
1073
- {
1074
- "box": {
1075
- "id": "obj-set-status",
1076
- "maxclass": "newobj",
1077
- "text": "prepend set",
1078
- "numinlets": 1,
1079
- "numoutlets": 1,
1080
- "outlettype": [
1081
- ""
1082
- ],
1083
- "patching_rect": [
1084
- 700.0,
1085
- 620.0,
1086
- 72.0,
1087
- 22.0
1088
- ]
1089
- }
1090
- },
1091
- {
1092
- "box": {
1093
- "id": "obj-set-key",
1094
- "maxclass": "newobj",
1095
- "text": "prepend set",
1096
- "numinlets": 1,
1097
- "numoutlets": 1,
1098
- "outlettype": [
1099
- ""
1100
- ],
1101
- "patching_rect": [
1102
- 810.0,
1103
- 620.0,
1104
- 72.0,
1105
- 22.0
1106
- ]
1107
- }
1108
- },
1109
- {
1110
- "box": {
1111
- "id": "obj-capture-unpack",
1112
- "maxclass": "newobj",
1113
- "text": "unpack s i",
1114
- "numinlets": 1,
1115
- "numoutlets": 2,
1116
- "outlettype": [
1117
- "",
1118
- "int"
1119
- ],
1120
- "patching_rect": [
1121
- 700.0,
1122
- 660.0,
1123
- 64.0,
1124
- 22.0
1125
- ]
1126
- }
1127
- },
1128
- {
1129
- "box": {
1130
- "id": "obj-capture-record-off",
1131
- "maxclass": "message",
1132
- "text": "0",
1133
- "numinlets": 2,
1134
- "numoutlets": 1,
1135
- "outlettype": [
1136
- ""
1137
- ],
1138
- "patching_rect": [
1139
- 860.0,
1140
- 660.0,
1141
- 56.0,
1142
- 22.0
1143
- ]
1144
- }
1145
- },
1146
- {
1147
- "box": {
1148
- "id": "obj-capture-trigger",
1149
- "maxclass": "newobj",
1150
- "text": "t b s",
1151
- "numinlets": 1,
1152
- "numoutlets": 2,
1153
- "outlettype": [
1154
- "bang",
1155
- ""
1156
- ],
1157
- "patching_rect": [
1158
- 700.0,
1159
- 700.0,
1160
- 38.0,
1161
- 22.0
1162
- ]
1163
- }
1164
- },
1165
- {
1166
- "box": {
1167
- "id": "obj-capture-record-delay",
1168
- "maxclass": "newobj",
1169
- "text": "delay 20",
1170
- "numinlets": 2,
1171
- "numoutlets": 1,
1172
- "outlettype": [
1173
- "bang"
1174
- ],
1175
- "patching_rect": [
1176
- 700.0,
1177
- 740.0,
1178
- 55.0,
1179
- 22.0
1180
- ]
1181
- }
1182
- },
1183
- {
1184
- "box": {
1185
- "id": "obj-capture-record-on",
1186
- "maxclass": "message",
1187
- "text": "1",
1188
- "numinlets": 2,
1189
- "numoutlets": 1,
1190
- "outlettype": [
1191
- ""
1192
- ],
1193
- "patching_rect": [
1194
- 700.0,
1195
- 740.0,
1196
- 56.0,
1197
- 22.0
1198
- ]
1199
- }
1200
- },
1201
- {
1202
- "box": {
1203
- "id": "obj-capture-open",
1204
- "maxclass": "newobj",
1205
- "text": "prepend open",
1206
- "numinlets": 1,
1207
- "numoutlets": 1,
1208
- "outlettype": [
1209
- ""
1210
- ],
1211
- "patching_rect": [
1212
- 770.0,
1213
- 740.0,
1214
- 84.0,
1215
- 22.0
1216
- ]
1217
- }
1218
- },
1219
- {
1220
- "box": {
1221
- "id": "obj-capture-rec",
1222
- "maxclass": "newobj",
1223
- "text": "sfrecord~ 2",
1224
- "numinlets": 2,
1225
- "numoutlets": 0,
1226
- "patching_rect": [
1227
- 700.0,
1228
- 780.0,
1229
- 78.0,
1230
- 22.0
1231
- ]
1232
- }
1233
- },
1234
- {
1235
- "box": {
1236
- "id": "obj-fc-spectralshape",
1237
- "maxclass": "newobj",
1238
- "text": "fluid.spectralshape~ @fftsettings 2048 512",
1239
- "numinlets": 1,
1240
- "numoutlets": 2,
1241
- "outlettype": [
1242
- "",
1243
- ""
1244
- ],
1245
- "patching_rect": [
1246
- 50.0,
1247
- 880.0,
1248
- 260.0,
1249
- 22.0
1250
- ]
1251
- }
1252
- },
1253
- {
1254
- "box": {
1255
- "id": "obj-fc-prepend-spectralshape",
1256
- "maxclass": "newobj",
1257
- "text": "prepend /spectral_shape",
1258
- "numinlets": 1,
1259
- "numoutlets": 1,
1260
- "outlettype": [
1261
- ""
1262
- ],
1263
- "patching_rect": [
1264
- 50.0,
1265
- 920.0,
1266
- 140.0,
1267
- 22.0
1268
- ]
1269
- }
1270
- },
1271
- {
1272
- "box": {
1273
- "id": "obj-fc-melbands",
1274
- "maxclass": "newobj",
1275
- "text": "fluid.melbands~ 40 @fftsettings 2048 512",
1276
- "numinlets": 1,
1277
- "numoutlets": 2,
1278
- "outlettype": [
1279
- "",
1280
- ""
1281
- ],
1282
- "patching_rect": [
1283
- 320.0,
1284
- 880.0,
1285
- 250.0,
1286
- 22.0
1287
- ]
1288
- }
1289
- },
1290
- {
1291
- "box": {
1292
- "id": "obj-fc-prepend-melbands",
1293
- "maxclass": "newobj",
1294
- "text": "prepend /mel_bands",
1295
- "numinlets": 1,
1296
- "numoutlets": 1,
1297
- "outlettype": [
1298
- ""
1299
- ],
1300
- "patching_rect": [
1301
- 320.0,
1302
- 920.0,
1303
- 115.0,
1304
- 22.0
1305
- ]
1306
- }
1307
- },
1308
- {
1309
- "box": {
1310
- "id": "obj-fc-chroma",
1311
- "maxclass": "newobj",
1312
- "text": "fluid.chroma~ @fftsettings 4096 1024",
1313
- "numinlets": 1,
1314
- "numoutlets": 2,
1315
- "outlettype": [
1316
- "",
1317
- ""
1318
- ],
1319
- "patching_rect": [
1320
- 580.0,
1321
- 880.0,
1322
- 230.0,
1323
- 22.0
1324
- ]
1325
- }
1326
- },
1327
- {
1328
- "box": {
1329
- "id": "obj-fc-prepend-chroma",
1330
- "maxclass": "newobj",
1331
- "text": "prepend /chroma",
1332
- "numinlets": 1,
1333
- "numoutlets": 1,
1334
- "outlettype": [
1335
- ""
1336
- ],
1337
- "patching_rect": [
1338
- 580.0,
1339
- 920.0,
1340
- 100.0,
1341
- 22.0
1342
- ]
1343
- }
1344
- },
1345
- {
1346
- "box": {
1347
- "id": "obj-fc-loudness",
1348
- "maxclass": "newobj",
1349
- "text": "fluid.loudness~ @kweighting 1 @truepeak 1",
1350
- "numinlets": 1,
1351
- "numoutlets": 2,
1352
- "outlettype": [
1353
- "",
1354
- ""
1355
- ],
1356
- "patching_rect": [
1357
- 820.0,
1358
- 880.0,
1359
- 260.0,
1360
- 22.0
1361
- ]
1362
- }
1363
- },
1364
- {
1365
- "box": {
1366
- "id": "obj-fc-prepend-loudness",
1367
- "maxclass": "newobj",
1368
- "text": "prepend /loudness",
1369
- "numinlets": 1,
1370
- "numoutlets": 1,
1371
- "outlettype": [
1372
- ""
1373
- ],
1374
- "patching_rect": [
1375
- 820.0,
1376
- 920.0,
1377
- 108.0,
1378
- 22.0
1379
- ]
1380
- }
1381
- },
1382
- {
1383
- "box": {
1384
- "id": "obj-fc-onsetfeature",
1385
- "maxclass": "newobj",
1386
- "text": "fluid.onsetfeature~",
1387
- "numinlets": 1,
1388
- "numoutlets": 2,
1389
- "outlettype": [
1390
- "",
1391
- ""
1392
- ],
1393
- "patching_rect": [
1394
- 50.0,
1395
- 960.0,
1396
- 120.0,
1397
- 22.0
1398
- ]
1399
- }
1400
- },
1401
- {
1402
- "box": {
1403
- "id": "obj-fc-prepend-onset",
1404
- "maxclass": "newobj",
1405
- "text": "prepend /onset",
1406
- "numinlets": 1,
1407
- "numoutlets": 1,
1408
- "outlettype": [
1409
- ""
1410
- ],
1411
- "patching_rect": [
1412
- 50.0,
1413
- 1000.0,
1414
- 90.0,
1415
- 22.0
1416
- ]
1417
- }
1418
- },
1419
- {
1420
- "box": {
1421
- "id": "obj-fc-noveltyfeature",
1422
- "maxclass": "newobj",
1423
- "text": "fluid.noveltyfeature~ @kernelsize 21",
1424
- "numinlets": 1,
1425
- "numoutlets": 2,
1426
- "outlettype": [
1427
- "",
1428
- ""
1429
- ],
1430
- "patching_rect": [
1431
- 320.0,
1432
- 960.0,
1433
- 220.0,
1434
- 22.0
1435
- ]
1436
- }
1437
- },
1438
- {
1439
- "box": {
1440
- "id": "obj-fc-prepend-novelty",
1441
- "maxclass": "newobj",
1442
- "text": "prepend /novelty",
1443
- "numinlets": 1,
1444
- "numoutlets": 1,
1445
- "outlettype": [
1446
- ""
1447
- ],
1448
- "patching_rect": [
1449
- 320.0,
1450
- 1000.0,
1451
- 100.0,
1452
- 22.0
1453
- ]
1454
- }
1455
- },
1456
- {
1457
- "box": {
1458
- "id": "obj-snap-init",
1459
- "maxclass": "newobj",
1460
- "text": "loadbang",
1461
- "numinlets": 1,
1462
- "numoutlets": 1,
1463
- "outlettype": [
1464
- "bang"
1465
- ],
1466
- "patching_rect": [
1467
- 20,
1468
- 20,
1469
- 61,
1470
- 22
1471
- ]
1472
- }
1473
- },
1474
- {
1475
- "box": {
1476
- "id": "obj-snap-start",
1477
- "maxclass": "message",
1478
- "text": "1",
1479
- "numinlets": 2,
1480
- "numoutlets": 1,
1481
- "outlettype": [
1482
- ""
1483
- ],
1484
- "patching_rect": [
1485
- 20,
1486
- 50,
1487
- 29,
1488
- 22
1489
- ]
1490
- }
1491
- }
1492
- ],
1493
- "lines": [
1494
- {
1495
- "patchline": {
1496
- "source": [
1497
- "obj-1",
1498
- 0
1499
- ],
1500
- "destination": [
1501
- "obj-2",
1502
- 0
1503
- ]
1504
- }
1505
- },
1506
- {
1507
- "patchline": {
1508
- "source": [
1509
- "obj-1",
1510
- 1
1511
- ],
1512
- "destination": [
1513
- "obj-2",
1514
- 1
1515
- ]
1516
- }
1517
- },
1518
- {
1519
- "patchline": {
1520
- "source": [
1521
- "obj-1",
1522
- 0
1523
- ],
1524
- "destination": [
1525
- "obj-3",
1526
- 0
1527
- ]
1528
- }
1529
- },
1530
- {
1531
- "patchline": {
1532
- "source": [
1533
- "obj-1",
1534
- 1
1535
- ],
1536
- "destination": [
1537
- "obj-capture-rec",
1538
- 1
1539
- ]
1540
- }
1541
- },
1542
- {
1543
- "patchline": {
1544
- "source": [
1545
- "obj-1",
1546
- 0
1547
- ],
1548
- "destination": [
1549
- "obj-capture-rec",
1550
- 0
1551
- ]
1552
- }
1553
- },
1554
- {
1555
- "patchline": {
1556
- "source": [
1557
- "obj-1",
1558
- 1
1559
- ],
1560
- "destination": [
1561
- "obj-3",
1562
- 1
1563
- ]
1564
- }
1565
- },
1566
- {
1567
- "patchline": {
1568
- "source": [
1569
- "obj-3",
1570
- 0
1571
- ],
1572
- "destination": [
1573
- "obj-4",
1574
- 0
1575
- ]
1576
- }
1577
- },
1578
- {
1579
- "patchline": {
1580
- "source": [
1581
- "obj-4",
1582
- 0
1583
- ],
1584
- "destination": [
1585
- "obj-5",
1586
- 0
1587
- ]
1588
- }
1589
- },
1590
- {
1591
- "patchline": {
1592
- "source": [
1593
- "obj-6",
1594
- 0
1595
- ],
1596
- "destination": [
1597
- "obj-5",
1598
- 0
1599
- ]
1600
- }
1601
- },
1602
- {
1603
- "patchline": {
1604
- "source": [
1605
- "obj-5",
1606
- 0
1607
- ],
1608
- "destination": [
1609
- "obj-abs1",
1610
- 0
1611
- ]
1612
- }
1613
- },
1614
- {
1615
- "patchline": {
1616
- "source": [
1617
- "obj-5",
1618
- 1
1619
- ],
1620
- "destination": [
1621
- "obj-abs2",
1622
- 0
1623
- ]
1624
- }
1625
- },
1626
- {
1627
- "patchline": {
1628
- "source": [
1629
- "obj-5",
1630
- 2
1631
- ],
1632
- "destination": [
1633
- "obj-abs3",
1634
- 0
1635
- ]
1636
- }
1637
- },
1638
- {
1639
- "patchline": {
1640
- "source": [
1641
- "obj-5",
1642
- 3
1643
- ],
1644
- "destination": [
1645
- "obj-abs4",
1646
- 0
1647
- ]
1648
- }
1649
- },
1650
- {
1651
- "patchline": {
1652
- "source": [
1653
- "obj-5",
1654
- 4
1655
- ],
1656
- "destination": [
1657
- "obj-abs5",
1658
- 0
1659
- ]
1660
- }
1661
- },
1662
- {
1663
- "patchline": {
1664
- "source": [
1665
- "obj-5",
1666
- 5
1667
- ],
1668
- "destination": [
1669
- "obj-abs6",
1670
- 0
1671
- ]
1672
- }
1673
- },
1674
- {
1675
- "patchline": {
1676
- "source": [
1677
- "obj-5",
1678
- 6
1679
- ],
1680
- "destination": [
1681
- "obj-abs7",
1682
- 0
1683
- ]
1684
- }
1685
- },
1686
- {
1687
- "patchline": {
1688
- "source": [
1689
- "obj-5",
1690
- 7
1691
- ],
1692
- "destination": [
1693
- "obj-abs8",
1694
- 0
1695
- ]
1696
- }
1697
- },
1698
- {
1699
- "patchline": {
1700
- "source": [
1701
- "obj-abs1",
1702
- 0
1703
- ],
1704
- "destination": [
1705
- "obj-snap1",
1706
- 0
1707
- ]
1708
- }
1709
- },
1710
- {
1711
- "patchline": {
1712
- "source": [
1713
- "obj-abs2",
1714
- 0
1715
- ],
1716
- "destination": [
1717
- "obj-snap2",
1718
- 0
1719
- ]
1720
- }
1721
- },
1722
- {
1723
- "patchline": {
1724
- "source": [
1725
- "obj-abs3",
1726
- 0
1727
- ],
1728
- "destination": [
1729
- "obj-snap3",
1730
- 0
1731
- ]
1732
- }
1733
- },
1734
- {
1735
- "patchline": {
1736
- "source": [
1737
- "obj-abs4",
1738
- 0
1739
- ],
1740
- "destination": [
1741
- "obj-snap4",
1742
- 0
1743
- ]
1744
- }
1745
- },
1746
- {
1747
- "patchline": {
1748
- "source": [
1749
- "obj-abs5",
1750
- 0
1751
- ],
1752
- "destination": [
1753
- "obj-snap5",
1754
- 0
1755
- ]
1756
- }
1757
- },
1758
- {
1759
- "patchline": {
1760
- "source": [
1761
- "obj-abs6",
1762
- 0
1763
- ],
1764
- "destination": [
1765
- "obj-snap6",
1766
- 0
1767
- ]
1768
- }
1769
- },
1770
- {
1771
- "patchline": {
1772
- "source": [
1773
- "obj-abs7",
1774
- 0
1775
- ],
1776
- "destination": [
1777
- "obj-snap7",
1778
- 0
1779
- ]
1780
- }
1781
- },
1782
- {
1783
- "patchline": {
1784
- "source": [
1785
- "obj-abs8",
1786
- 0
1787
- ],
1788
- "destination": [
1789
- "obj-snap8",
1790
- 0
1791
- ]
1792
- }
1793
- },
1794
- {
1795
- "patchline": {
1796
- "source": [
1797
- "obj-snap1",
1798
- 0
1799
- ],
1800
- "destination": [
1801
- "obj-pack",
1802
- 0
1803
- ]
1804
- }
1805
- },
1806
- {
1807
- "patchline": {
1808
- "source": [
1809
- "obj-snap2",
1810
- 0
1811
- ],
1812
- "destination": [
1813
- "obj-pack",
1814
- 1
1815
- ]
1816
- }
1817
- },
1818
- {
1819
- "patchline": {
1820
- "source": [
1821
- "obj-snap3",
1822
- 0
1823
- ],
1824
- "destination": [
1825
- "obj-pack",
1826
- 2
1827
- ]
1828
- }
1829
- },
1830
- {
1831
- "patchline": {
1832
- "source": [
1833
- "obj-snap4",
1834
- 0
1835
- ],
1836
- "destination": [
1837
- "obj-pack",
1838
- 3
1839
- ]
1840
- }
1841
- },
1842
- {
1843
- "patchline": {
1844
- "source": [
1845
- "obj-snap5",
1846
- 0
1847
- ],
1848
- "destination": [
1849
- "obj-pack",
1850
- 4
1851
- ]
1852
- }
1853
- },
1854
- {
1855
- "patchline": {
1856
- "source": [
1857
- "obj-snap6",
1858
- 0
1859
- ],
1860
- "destination": [
1861
- "obj-pack",
1862
- 5
1863
- ]
1864
- }
1865
- },
1866
- {
1867
- "patchline": {
1868
- "source": [
1869
- "obj-snap7",
1870
- 0
1871
- ],
1872
- "destination": [
1873
- "obj-pack",
1874
- 6
1875
- ]
1876
- }
1877
- },
1878
- {
1879
- "patchline": {
1880
- "source": [
1881
- "obj-snap8",
1882
- 0
1883
- ],
1884
- "destination": [
1885
- "obj-pack",
1886
- 7
1887
- ]
1888
- }
1889
- },
1890
- {
1891
- "patchline": {
1892
- "source": [
1893
- "obj-pack",
1894
- 0
1895
- ],
1896
- "destination": [
1897
- "obj-prepend-spec",
1898
- 0
1899
- ]
1900
- }
1901
- },
1902
- {
1903
- "patchline": {
1904
- "source": [
1905
- "obj-prepend-spec",
1906
- 0
1907
- ],
1908
- "destination": [
1909
- "obj-udpsend",
1910
- 0
1911
- ]
1912
- }
1913
- },
1914
- {
1915
- "patchline": {
1916
- "source": [
1917
- "obj-pack",
1918
- 0
1919
- ],
1920
- "destination": [
1921
- "obj-multislider",
1922
- 0
1923
- ]
1924
- }
1925
- },
1926
- {
1927
- "patchline": {
1928
- "source": [
1929
- "obj-4",
1930
- 0
1931
- ],
1932
- "destination": [
1933
- "obj-peak",
1934
- 0
1935
- ]
1936
- }
1937
- },
1938
- {
1939
- "patchline": {
1940
- "source": [
1941
- "obj-peak",
1942
- 0
1943
- ],
1944
- "destination": [
1945
- "obj-prepend-peak",
1946
- 0
1947
- ]
1948
- }
1949
- },
1950
- {
1951
- "patchline": {
1952
- "source": [
1953
- "obj-prepend-peak",
1954
- 0
1955
- ],
1956
- "destination": [
1957
- "obj-udpsend",
1958
- 0
1959
- ]
1960
- }
1961
- },
1962
- {
1963
- "patchline": {
1964
- "source": [
1965
- "obj-4",
1966
- 0
1967
- ],
1968
- "destination": [
1969
- "obj-rms",
1970
- 0
1971
- ]
1972
- }
1973
- },
1974
- {
1975
- "patchline": {
1976
- "source": [
1977
- "obj-rms",
1978
- 0
1979
- ],
1980
- "destination": [
1981
- "obj-rms-snap",
1982
- 0
1983
- ]
1984
- }
1985
- },
1986
- {
1987
- "patchline": {
1988
- "source": [
1989
- "obj-rms-snap",
1990
- 0
1991
- ],
1992
- "destination": [
1993
- "obj-prepend-rms",
1994
- 0
1995
- ]
1996
- }
1997
- },
1998
- {
1999
- "patchline": {
2000
- "source": [
2001
- "obj-prepend-rms",
2002
- 0
2003
- ],
2004
- "destination": [
2005
- "obj-udpsend",
2006
- 0
2007
- ]
2008
- }
2009
- },
2010
- {
2011
- "patchline": {
2012
- "source": [
2013
- "obj-4",
2014
- 0
2015
- ],
2016
- "destination": [
2017
- "obj-sigmund",
2018
- 0
2019
- ]
2020
- }
2021
- },
2022
- {
2023
- "patchline": {
2024
- "source": [
2025
- "obj-sigmund",
2026
- 0
2027
- ],
2028
- "destination": [
2029
- "obj-pitch-pack",
2030
- 0
2031
- ]
2032
- }
2033
- },
2034
- {
2035
- "patchline": {
2036
- "source": [
2037
- "obj-sigmund",
2038
- 1
2039
- ],
2040
- "destination": [
2041
- "obj-pitch-pack",
2042
- 1
2043
- ]
2044
- }
2045
- },
2046
- {
2047
- "patchline": {
2048
- "source": [
2049
- "obj-pitch-pack",
2050
- 0
2051
- ],
2052
- "destination": [
2053
- "obj-prepend-pitch",
2054
- 0
2055
- ]
2056
- }
2057
- },
2058
- {
2059
- "patchline": {
2060
- "source": [
2061
- "obj-prepend-pitch",
2062
- 0
2063
- ],
2064
- "destination": [
2065
- "obj-udpsend",
2066
- 0
2067
- ]
2068
- }
2069
- },
2070
- {
2071
- "patchline": {
2072
- "source": [
2073
- "obj-pitch-pack",
2074
- 0
2075
- ],
2076
- "destination": [
2077
- "obj-pitch-to-js",
2078
- 0
2079
- ]
2080
- }
2081
- },
2082
- {
2083
- "patchline": {
2084
- "source": [
2085
- "obj-pitch-to-js",
2086
- 0
2087
- ],
2088
- "destination": [
2089
- "obj-js",
2090
- 0
2091
- ]
2092
- }
2093
- },
2094
- {
2095
- "patchline": {
2096
- "source": [
2097
- "obj-udprecv",
2098
- 0
2099
- ],
2100
- "destination": [
2101
- "obj-js",
2102
- 0
2103
- ]
2104
- }
2105
- },
2106
- {
2107
- "patchline": {
2108
- "source": [
2109
- "obj-thisdevice",
2110
- 0
2111
- ],
2112
- "destination": [
2113
- "obj-js",
2114
- 0
2115
- ]
2116
- }
2117
- },
2118
- {
2119
- "patchline": {
2120
- "source": [
2121
- "obj-thisdevice",
2122
- 0
2123
- ],
2124
- "destination": [
2125
- "obj-defer-reinit",
2126
- 0
2127
- ]
2128
- }
2129
- },
2130
- {
2131
- "patchline": {
2132
- "source": [
2133
- "obj-defer-reinit",
2134
- 0
2135
- ],
2136
- "destination": [
2137
- "obj-reinit-udpsend",
2138
- 0
2139
- ]
2140
- }
2141
- },
2142
- {
2143
- "patchline": {
2144
- "source": [
2145
- "obj-defer-reinit",
2146
- 0
2147
- ],
2148
- "destination": [
2149
- "obj-snap-start",
2150
- 0
2151
- ]
2152
- }
2153
- },
2154
- {
2155
- "patchline": {
2156
- "source": [
2157
- "obj-reinit-udpsend",
2158
- 0
2159
- ],
2160
- "destination": [
2161
- "obj-udpsend",
2162
- 0
2163
- ]
2164
- }
2165
- },
2166
- {
2167
- "patchline": {
2168
- "source": [
2169
- "obj-dspstate",
2170
- 1
2171
- ],
2172
- "destination": [
2173
- "obj-js",
2174
- 1
2175
- ]
2176
- }
2177
- },
2178
- {
2179
- "patchline": {
2180
- "source": [
2181
- "obj-js",
2182
- 0
2183
- ],
2184
- "destination": [
2185
- "obj-udpsend",
2186
- 0
2187
- ]
2188
- }
2189
- },
2190
- {
2191
- "patchline": {
2192
- "source": [
2193
- "obj-js",
2194
- 1
2195
- ],
2196
- "destination": [
2197
- "obj-route-status",
2198
- 0
2199
- ]
2200
- }
2201
- },
2202
- {
2203
- "patchline": {
2204
- "source": [
2205
- "obj-route-status",
2206
- 0
2207
- ],
2208
- "destination": [
2209
- "obj-set-status",
2210
- 0
2211
- ]
2212
- }
2213
- },
2214
- {
2215
- "patchline": {
2216
- "source": [
2217
- "obj-set-status",
2218
- 0
2219
- ],
2220
- "destination": [
2221
- "obj-status",
2222
- 0
2223
- ]
2224
- }
2225
- },
2226
- {
2227
- "patchline": {
2228
- "source": [
2229
- "obj-route-status",
2230
- 1
2231
- ],
2232
- "destination": [
2233
- "obj-set-key",
2234
- 0
2235
- ]
2236
- }
2237
- },
2238
- {
2239
- "patchline": {
2240
- "source": [
2241
- "obj-set-key",
2242
- 0
2243
- ],
2244
- "destination": [
2245
- "obj-key-display",
2246
- 0
2247
- ]
2248
- }
2249
- },
2250
- {
2251
- "patchline": {
2252
- "source": [
2253
- "obj-route-status",
2254
- 2
2255
- ],
2256
- "destination": [
2257
- "obj-capture-unpack",
2258
- 0
2259
- ]
2260
- }
2261
- },
2262
- {
2263
- "patchline": {
2264
- "source": [
2265
- "obj-capture-unpack",
2266
- 0
2267
- ],
2268
- "destination": [
2269
- "obj-capture-trigger",
2270
- 0
2271
- ]
2272
- }
2273
- },
2274
- {
2275
- "patchline": {
2276
- "source": [
2277
- "obj-capture-trigger",
2278
- 0
2279
- ],
2280
- "destination": [
2281
- "obj-capture-record-delay",
2282
- 0
2283
- ]
2284
- }
2285
- },
2286
- {
2287
- "patchline": {
2288
- "source": [
2289
- "obj-capture-record-delay",
2290
- 0
2291
- ],
2292
- "destination": [
2293
- "obj-capture-record-on",
2294
- 0
2295
- ]
2296
- }
2297
- },
2298
- {
2299
- "patchline": {
2300
- "source": [
2301
- "obj-capture-trigger",
2302
- 1
2303
- ],
2304
- "destination": [
2305
- "obj-capture-open",
2306
- 0
2307
- ]
2308
- }
2309
- },
2310
- {
2311
- "patchline": {
2312
- "source": [
2313
- "obj-capture-open",
2314
- 0
2315
- ],
2316
- "destination": [
2317
- "obj-capture-rec",
2318
- 0
2319
- ]
2320
- }
2321
- },
2322
- {
2323
- "patchline": {
2324
- "source": [
2325
- "obj-capture-record-on",
2326
- 0
2327
- ],
2328
- "destination": [
2329
- "obj-capture-rec",
2330
- 0
2331
- ]
2332
- }
2333
- },
2334
- {
2335
- "patchline": {
2336
- "source": [
2337
- "obj-route-status",
2338
- 3
2339
- ],
2340
- "destination": [
2341
- "obj-capture-record-off",
2342
- 0
2343
- ]
2344
- }
2345
- },
2346
- {
2347
- "patchline": {
2348
- "source": [
2349
- "obj-capture-record-off",
2350
- 0
2351
- ],
2352
- "destination": [
2353
- "obj-capture-rec",
2354
- 0
2355
- ]
2356
- }
2357
- },
2358
- {
2359
- "patchline": {
2360
- "source": [
2361
- "obj-4",
2362
- 0
2363
- ],
2364
- "destination": [
2365
- "obj-fc-spectralshape",
2366
- 0
2367
- ]
2368
- }
2369
- },
2370
- {
2371
- "patchline": {
2372
- "source": [
2373
- "obj-fc-spectralshape",
2374
- 0
2375
- ],
2376
- "destination": [
2377
- "obj-fc-prepend-spectralshape",
2378
- 0
2379
- ]
2380
- }
2381
- },
2382
- {
2383
- "patchline": {
2384
- "source": [
2385
- "obj-fc-prepend-spectralshape",
2386
- 0
2387
- ],
2388
- "destination": [
2389
- "obj-udpsend",
2390
- 0
2391
- ]
2392
- }
2393
- },
2394
- {
2395
- "patchline": {
2396
- "source": [
2397
- "obj-4",
2398
- 0
2399
- ],
2400
- "destination": [
2401
- "obj-fc-melbands",
2402
- 0
2403
- ]
2404
- }
2405
- },
2406
- {
2407
- "patchline": {
2408
- "source": [
2409
- "obj-fc-melbands",
2410
- 0
2411
- ],
2412
- "destination": [
2413
- "obj-fc-prepend-melbands",
2414
- 0
2415
- ]
2416
- }
2417
- },
2418
- {
2419
- "patchline": {
2420
- "source": [
2421
- "obj-fc-prepend-melbands",
2422
- 0
2423
- ],
2424
- "destination": [
2425
- "obj-udpsend",
2426
- 0
2427
- ]
2428
- }
2429
- },
2430
- {
2431
- "patchline": {
2432
- "source": [
2433
- "obj-4",
2434
- 0
2435
- ],
2436
- "destination": [
2437
- "obj-fc-chroma",
2438
- 0
2439
- ]
2440
- }
2441
- },
2442
- {
2443
- "patchline": {
2444
- "source": [
2445
- "obj-fc-chroma",
2446
- 0
2447
- ],
2448
- "destination": [
2449
- "obj-fc-prepend-chroma",
2450
- 0
2451
- ]
2452
- }
2453
- },
2454
- {
2455
- "patchline": {
2456
- "source": [
2457
- "obj-fc-prepend-chroma",
2458
- 0
2459
- ],
2460
- "destination": [
2461
- "obj-udpsend",
2462
- 0
2463
- ]
2464
- }
2465
- },
2466
- {
2467
- "patchline": {
2468
- "source": [
2469
- "obj-4",
2470
- 0
2471
- ],
2472
- "destination": [
2473
- "obj-fc-loudness",
2474
- 0
2475
- ]
2476
- }
2477
- },
2478
- {
2479
- "patchline": {
2480
- "source": [
2481
- "obj-fc-loudness",
2482
- 0
2483
- ],
2484
- "destination": [
2485
- "obj-fc-prepend-loudness",
2486
- 0
2487
- ]
2488
- }
2489
- },
2490
- {
2491
- "patchline": {
2492
- "source": [
2493
- "obj-fc-prepend-loudness",
2494
- 0
2495
- ],
2496
- "destination": [
2497
- "obj-udpsend",
2498
- 0
2499
- ]
2500
- }
2501
- },
2502
- {
2503
- "patchline": {
2504
- "source": [
2505
- "obj-4",
2506
- 0
2507
- ],
2508
- "destination": [
2509
- "obj-fc-onsetfeature",
2510
- 0
2511
- ]
2512
- }
2513
- },
2514
- {
2515
- "patchline": {
2516
- "source": [
2517
- "obj-fc-onsetfeature",
2518
- 0
2519
- ],
2520
- "destination": [
2521
- "obj-fc-prepend-onset",
2522
- 0
2523
- ]
2524
- }
2525
- },
2526
- {
2527
- "patchline": {
2528
- "source": [
2529
- "obj-fc-prepend-onset",
2530
- 0
2531
- ],
2532
- "destination": [
2533
- "obj-udpsend",
2534
- 0
2535
- ]
2536
- }
2537
- },
2538
- {
2539
- "patchline": {
2540
- "source": [
2541
- "obj-4",
2542
- 0
2543
- ],
2544
- "destination": [
2545
- "obj-fc-noveltyfeature",
2546
- 0
2547
- ]
2548
- }
2549
- },
2550
- {
2551
- "patchline": {
2552
- "source": [
2553
- "obj-fc-noveltyfeature",
2554
- 0
2555
- ],
2556
- "destination": [
2557
- "obj-fc-prepend-novelty",
2558
- 0
2559
- ]
2560
- }
2561
- },
2562
- {
2563
- "patchline": {
2564
- "source": [
2565
- "obj-fc-prepend-novelty",
2566
- 0
2567
- ],
2568
- "destination": [
2569
- "obj-udpsend",
2570
- 0
2571
- ]
2572
- }
2573
- },
2574
- {
2575
- "patchline": {
2576
- "source": [
2577
- "obj-snap-init",
2578
- 0
2579
- ],
2580
- "destination": [
2581
- "obj-snap-start",
2582
- 0
2583
- ]
2584
- }
2585
- },
2586
- {
2587
- "patchline": {
2588
- "source": [
2589
- "obj-snap-start",
2590
- 0
2591
- ],
2592
- "destination": [
2593
- "obj-snap1",
2594
- 1
2595
- ]
2596
- }
2597
- },
2598
- {
2599
- "patchline": {
2600
- "source": [
2601
- "obj-snap-start",
2602
- 0
2603
- ],
2604
- "destination": [
2605
- "obj-snap2",
2606
- 1
2607
- ]
2608
- }
2609
- },
2610
- {
2611
- "patchline": {
2612
- "source": [
2613
- "obj-snap-start",
2614
- 0
2615
- ],
2616
- "destination": [
2617
- "obj-snap3",
2618
- 1
2619
- ]
2620
- }
2621
- },
2622
- {
2623
- "patchline": {
2624
- "source": [
2625
- "obj-snap-start",
2626
- 0
2627
- ],
2628
- "destination": [
2629
- "obj-snap4",
2630
- 1
2631
- ]
2632
- }
2633
- },
2634
- {
2635
- "patchline": {
2636
- "source": [
2637
- "obj-snap-start",
2638
- 0
2639
- ],
2640
- "destination": [
2641
- "obj-snap5",
2642
- 1
2643
- ]
2644
- }
2645
- },
2646
- {
2647
- "patchline": {
2648
- "source": [
2649
- "obj-snap-start",
2650
- 0
2651
- ],
2652
- "destination": [
2653
- "obj-snap6",
2654
- 1
2655
- ]
2656
- }
2657
- },
2658
- {
2659
- "patchline": {
2660
- "source": [
2661
- "obj-snap-start",
2662
- 0
2663
- ],
2664
- "destination": [
2665
- "obj-snap7",
2666
- 1
2667
- ]
2668
- }
2669
- },
2670
- {
2671
- "patchline": {
2672
- "source": [
2673
- "obj-snap-start",
2674
- 0
2675
- ],
2676
- "destination": [
2677
- "obj-snap8",
2678
- 1
2679
- ]
2680
- }
2681
- },
2682
- {
2683
- "patchline": {
2684
- "source": [
2685
- "obj-snap-start",
2686
- 0
2687
- ],
2688
- "destination": [
2689
- "obj-rms-snap",
2690
- 1
2691
- ]
2692
- }
2693
- }
2694
- ],
2695
- "dependency_cache": [
2696
- {
2697
- "name": "livepilot_bridge.js",
2698
- "bootpath": ".",
2699
- "type": "TEXT",
2700
- "implicit": 1
2701
- }
2702
- ],
2703
- "autosave": 0
2704
- }
2705
- }