-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiz_test_branch.sctxar
732 lines (690 loc) · 23 KB
/
iz_test_branch.sctxar
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
var o, p;
o = [
ScriptLib.prNew, MultiLevelIdentityDictionary.prNew, IdentityDictionary.prNew, Array.prNew(32),
IdentityDictionary.prNew, Array.prNew(32), IdentityDictionary.prNew, Array.prNew(32),
"//:-000TestBlobs_EMPTY
~simpleBlob = BlobWatcher(
{ | blob |
[\"started:\", blob].postln;
blob.x_pos.postln;
},
{ | blob | [\"moved:\", blob].postln },
{ | blob | [\"ended:\", blob].postln },
port: 3001
).enable;
", "//:-005EnvDifferentStartingPoint
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
{ | gate = 1 |
var rate = 1, env, envgen;
env = Env.linen(0.3, 0.1, 1, 3.5);
envgen = EnvGen.kr(env, gate: gate, doneAction: 2);
envgen * PlayBuf.ar(b0.numChannels, b0, rate * BufRateScale.kr(b0),
startPos: blob.x_pos * BufFrames.kr(b0)
loop: 1)
}.play;
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob | blob.state.release },
port: 3001
).enable;
", "//:-001SimpleBlobSound1
~simpleBlob = BlobWatcher(
{ | blob |
{ | freq = 400 | SinOsc.ar(freq, 0, 0.1) }.play(args: [\\freq, 400 rrand: 4000]);
},
{ | blob | [\"moved:\", blob].postln },
{ | blob | blob.free },
port: 3001
).enable;
", "//:-004BufferPlaybackEnv
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
{ | gate = 1 |
var rate = 1, env, envgen;
env = Env.linen(0.3, 0.1, 1, 3.5);
envgen = EnvGen.kr(env, gate: gate, doneAction: 2);
envgen * PlayBuf.ar(b0.numChannels, b0, rate * BufRateScale.kr(b0), loop: 1)
}.play;
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob | blob.state.release },
port: 3001
).enable;
",
"//:-003SimpleBufferPlayback
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
var rate = 1;
{ PlayBuf.ar(b0.numChannels, b0, rate * BufRateScale.kr(b0), loop: 1) }.play;
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob | blob.free },
port: 3001
).enable;
", "//:-006OneSoundProcessAtATimeOnly
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
if (blob.blobs.size == 1) {
{ WhiteNoise.ar(0.1) }.play.addNotifierOneShot(blob.watcher, \\blobsEnded, { | notification |
notification.listener.free;
});
}
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob |
if (blob.blobs.size == 0) { blob.watcher.changed(\\blobsEnded) }
},
port: 3001
).enable;
", "//:-002MappingParameters
~simpleBlob = BlobWatcher(
{ | blob |
blob.watcher.mapper.postln;
{ | freq = 400 | SinOsc.ar(freq, 0, 0.01) }.play(args: [\\freq, blob.x_pos]);
},
{ | blob |
// [\"moved:\", blob].postln
},
{ | blob |
blob.free
},
mapper: BlobMapper(x_pos_map: \\freq.asSpec),
port: 3001,
).enable;
", "//:-007OneBlobOnlyDifferentStartingPoint
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
if (blob.blobs.size == 1) {
{ WhiteNoise.ar(0.1) }.play.addNotifierOneShot(blob.watcher, \\blobsEnded, { | notification |
notification.listener.free;
});
}
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob |
if (blob.blobs.size == 0) { blob.watcher.changed(\\blobsEnded) }
},
port: 3001
).enable;
",
"//:-006OneBlobOnlyDifferentStartingPoint
var b0 = 'swallows10minL'.b;
~simpleBlob = BlobWatcher(
{ | blob |
if (blob.blobs.size == 1) {
{ WhiteNoise.ar(0.1) }.play.addNotifierOneShot(blob.watcher, \\blobsEnded, { | notification |
notification.listener.free;
});
}
},
{ | blob | /* blob.set(\\freq, freqSpec.map(blob.y_pos)) */ },
{ | blob |
if (blob.blobs.size == 0) { blob.watcher.changed(\\blobsEnded) }
},
port: 3001
).enable;
", IdentityDictionary.prNew, Array.prNew(32), IdentityDictionary.prNew,
Array.prNew(32), "//:-PlayBufWithSynthDef
var b0 = 'a11wlk01-44_1'.b;
Synth('playbuf', [buf: b0]);", "//:-PlayBuffer
var b0 = 'a11wlk01-44_1'.b;
{ | rate = 1 | PlayBuf.ar(b0.numChannels, b0, rate * BufRateScale.kr(b0), loop: 1) };", "//:Pings
{ { 100 do: { Synth(\\ping, [out: 2.rand, freq: 400.rrand(4000), dur: 0.01.exprand(1)]); 0.01.exprand(1).wait } }.fork; } ! 5;",
"//:-01SineWithFreq
{ | freq = 400 | SinOsc.ar(freq, 0, 0.1) }", "//:-02PwhiteDiatonic
Pbind(\\degree, Pbrown(), \\dur, 0.1);", "//:-00WhiteNoise
Synth('ping');", "//:-01SineWithoutFreqControl
{ SinOsc.ar(400, 0, 0.1) }
",
IdentityDictionary.prNew, Array.prNew(32), "//:endlessRogerCormanmovie
var b6 = 'ChippingSparrow'.b, b7 = 'BarredOwl'.b;
fork{
loop{
play{
Splay.ar(
{Klank.ar(`[99.rand*(1..9)],Crackle.ar(2,0.01))*LFGauss.ar(9,1/4,0,0,2)}!2
)
};
1.wait;
}
}; // #endlessRogerCormanmovie", IdentityDictionary.prNew,
Array.prNew(32), IdentityDictionary.prNew, Array.prNew(32), "//:-000NewProxyList
AppModel().window({ | w, a |
w.layout = VLayout(
a.listView('proxies').proxyWatcher(
startedAction: { | me |
me.view.colors = me.items collect: { | i | if (i.isMonitoring) { Color.red } { Color.white } }
},
stoppedAction: { | me |
me.view.colors = me.items collect: { | i | if (i.isMonitoring) { Color.red } { Color.white } }
},
)
.do({ | widget |
{
widget.updateAction(\\index, { \"index!\".postln; });
widget.updateAction(\\list, { \"list!\".postln; });
widget.value.items.postln do: { | item |
widget.addNotifier(item.item, \\play, {
widget.view.colors = widget.items collect: { | i |
if (i.isMonitoring) { Color.red } { Color.white }
};
});
widget.addNotifier(item.item, \\stop, {
widget.view.colors = widget.items collect: { | i |
if (i.isMonitoring) { Color.red } { Color.white }
};
});
};
widget.view.action_({ | me |
widget.value.index_(nil, me.value);
});
}.defer(0.5)
})
.view,
a.listView('proxies').proxyList(ProxyCentral.default.proxySpace)
.view
)
});
",
"//:-001ProxyControls (+ Tabbed View)
AppModel().window({ | w, a |
var font, stripWidth = 80, numStrips = 8, winWidth;
winWidth = stripWidth * numStrips;
font = Font.default.size_(10);
w.name_(\"Proxy Script Mixer\")
.bounds_(Rect(Window.screenBounds.width - winWidth, 0, winWidth, 250))
.layout = HLayout(
*({ | i | VLayout(
a.popUpMenu(format(\"proxy%\", i).asSymbol).proxyList(ProxyCentral.default.proxySpace, i)
.view.fixedWidth_(80).font_(font).background_(Color(0.9, 1, 0.9)),
a.popUpMenu(format(\"knob%\", i).asSymbol).proxyControlList(format(\"proxy%\", i).asSymbol, 3)
.view.fixedWidth_(80).font_(font),
a.knob(format(\"knob%\", i).asSymbol).proxyControl.view,
HLayout(
a.slider(format(\"slider%\", i).asSymbol).proxyControl.view.orientation_(\\vertical),
VLayout(
a.numberBox(format(\"knob%\", i).asSymbol).proxyControl.view.font_(font).fixedWidth_(50),
a.numberBox(format(\"slider%\", i).asSymbol).proxyControl.view.font_(font).fixedWidth_(50),
a.button(format(\"proxy%\", i).asSymbol)
.action_({ \"TOODO\".postln; })
.view.states_([[\"ed\"]]).font_(font).fixedWidth_(50),
a.button(format(\"proxy%\", i).asSymbol).proxyWatcher
.view.states_([[\">\"], [\"||\", nil, Color.red]]).font_(font).fixedWidth_(50),
),
),
a.popUpMenu(format(\"slider%\", i).asSymbol).proxyControlList(format(\"proxy%\", i).asSymbol, 1)
.view.fixedWidth_(80).font_(font),
) } ! 8)
)
})
", "//:-001ProxyControls (+ Tabbed View)
AppModel().window({ | w, a |
var font, stripWidth = 82, numStrips = 8, winWidth, mWidth = 75, nWidth = 50;
var tabbedView;
winWidth = stripWidth * numStrips;
font = Font.default.size_(10);
w.name_(\"Proxy Script Mixer\")
.bounds_(Rect(Window.screenBounds.width - winWidth, 0, winWidth, 250));
tabbedView = TabbedView(w, labels: [\"1-8\", \"q-i\", \"a-k\", \"z-,\"]);
tabbedView.views do: { | view, viewNum |
viewNum = viewNum * 8;
view.layout = HLayout(
*({ | i | VLayout(
i = i + viewNum;
a.popUpMenu(format(\"proxy%\", i).asSymbol).proxyList(ProxyCentral.default.proxySpace, i)
.view.fixedWidth_(mWidth).font_(font).background_(Color(0.9, 1, 0.9)),
a.popUpMenu(format(\"knob%\", i).asSymbol).proxyControlList(format(\"proxy%\", i).asSymbol, 3)
.view.fixedWidth_(mWidth).font_(font),
a.knob(format(\"knob%\", i).asSymbol).proxyControl.view,
HLayout(
a.slider(format(\"slider%\", i).asSymbol).proxyControl.view.orientation_(\\vertical),
VLayout(
a.numberBox(format(\"knob%\", i).asSymbol).proxyControl.view.font_(font).fixedWidth_(nWidth),
a.numberBox(format(\"slider%\", i).asSymbol).proxyControl.view.font_(font).fixedWidth_(nWidth),
a.button(format(\"proxy%\", i).asSymbol)
.action_({ \"TOODO\".postln; })
.view.states_([[\"ed\"]]).font_(font).fixedWidth_(nWidth),
a.button(format(\"proxy%\", i).asSymbol).proxyWatcher
.view.states_([[\">\"], [\"||\", nil, Color.red]]).font_(font).fixedWidth_(nWidth),
),
),
a.popUpMenu(format(\"slider%\", i).asSymbol).proxyControlList(format(\"proxy%\", i).asSymbol, 1)
.view.fixedWidth_(mWidth).font_(font),
) } ! 8)
)
}
})
", "//:-000TestSound2freq
{ | freq = 400 | SinOsc.ar(freq, 0, 0.1) }", "//:-000TestSound
var b0 = 'a11wlk01'.b;
{ PlayBuf.ar(1, b0, loop: 1) };",
"//:-003Scopes
Server.default.scope;
Server.default.freqscope;", IdentityDictionary.prNew, Array.prNew(32), "//:00BufferConfig
AppModel().stickyWindow(\\test, \\buffers, { | w, app |
})",
IdentityDictionary.prNew, Array.prNew(32), "//:EvalSnippet
ScriptLib.current.snippetValue(['---Config---', 'Buffers', 'EasternAmericanFrog']);", "//:ScriptTest
~loop = { loop { 1.wait; \"asdf\".postln; } }.fork;
~stop = { loop.postln };",
IdentityDictionary.prNew, Array.prNew(32), IdentityDictionary.prNew, Array.prNew(32),
"//:-01Analyse1File
/* Should not use this as tmp is just fine. Analysis file is removed by SCMIR upon end.
SCMIR.setTempDir(\"/Users/iani2/Desktop/000SCMIRTMP/\");
*/
e = SCMIRAudioFile(Platform.resourceDir +/+ \"sounds/a11wlk01.wav\", [[MFCC, 13], [Chromagram, 12]]);
\\test.addNotifier(e, \\extractionDone, { | smaf |
smaf.featureinfo.postln;
smaf.featuredata.postln;
Library.put('SCMIR_LatestAnalysis', smaf);
});
//:
{e.extractFeatures()}.fork(AppClock);
", "//:-02DoThisAfter01ToSeeData
~smaf = Library.at('SCMIR_LatestAnalysis');
// ~smaf.inspect;
~smaf.featuredata.postln;
~smaf.featuredata.size.postln;
", "//:-OnsetTries
e = SCMIRAudioFile(Platform.resourceDir +/+ \"sounds/a11wlk01.wav\", [[MFCC, 13], [Chromagram, 12]]);
\\test.addNotifier(e, \\extractionDone, { | smaf |
smaf.featureinfo.postln;
smaf.featuredata.postln; });
//:
{e.extractFeatures()}.fork(AppClock);
//:
{ e.extractOnsets(); }.fork(AppClock);
//:
e.onsetdata;
//:
e.numonsets;
//:
//:----------------------- NEED DEBUGGING: ------------------------
//:NOT!!!
e = SCMIRAudioFile(Platform.resourceDir +/+ \"sounds/a11wlk01.wav\", [[\\Loudness],[\\Transient,0.7,0.2],[\\Transient,0.1,0.05],[\\Transient,0.1,0.0],[\\Transient,0.9,0.0],[\\Transient,0.2,0.01],[\\Onsets,\\rcomplex]]);
\\test.addNotifier(e, \\extractionDone, { | smaf |
smaf.featureinfo.postln;
smaf.featuredata.postln; });
//:
{e.extractFeatures()}.fork(AppClock);
", IdentityDictionary.prNew,
Array.prNew(32), "//:-00BasicIdea-UsingScriptLibForData
// Getting all buffers in this ScriptLib's config:
~scriptLib.buffers.keys.asArray.collect(BufferItem.named(_)).postln;
/*
- Write gui to configure analysis. Functionality:
- Select analysis file
- Configure list of analysis algorithms to be applied
- For each algorithm, configure parameters, if applicable
- Select file to save the analysis data.
- Where to save recorded data? Data to save are (writing here various combinations possible):
- default analysis configuration
- paths of already analysed files
- paths + algorithms of already analysed files
- paths + algorithms + saved data of already analysed files
==== Older notes - no longer valid:
1. Analysis sessions to be collected in folder \"Analysis\". (More details for structuring this later. )
2. Analysis results to be collected in a folder \"Features\", like this:
Folder: Features
File: <Buffer/Filename>
Script name: Feature1name
Script code:
The data collected from the feature (in the case of not so big arrays)
Or: Path to filename (in the case of large data saved as audio file)
3. Synthesis experiments to be collected in folder \"Synthesis\"
*/
", IdentityDictionary.prNew, Array.prNew(32),
IdentityDictionary.prNew, Array.prNew(32), "//:a11wlk01
BufferItem(
\"/Applications/SuperCollider3.6ide/SuperCollider3.6ide.app/Contents/Resources/sounds/a11wlk01.wav\"
)", "//:a11wlk01-44_1
BufferItem(
\"/Applications/SuperCollider3.6ide/SuperCollider3.6ide.app/Contents/Resources/sounds/a11wlk01-44_1.aiff\"
).loadIfNeeded",
"//:EasternGreyTreefrog
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/frogs/EasternGreyTreefrog.wav\"
)", "//:NorthernSpringPeeper
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/frogs/NorthernSpringPeeper.wav\"
)", "//:NorthernPygmyOwl
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/birds/NorthernPygmyOwl.wav\"
)", "//:swallows10minL
BufferItem(
\"/Users/iani2/Music/sounds/111202rhythmanalysis/swallows10minL.aiff\"
)",
"//:NorthernRoughWingedSwallow
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/birds/NorthernRoughWingedSwallow.wav\"
)", "//:SinedPink
BufferItem(
\"/Applications/SuperCollider3.6ide/SuperCollider3.6ide.app/Contents/Resources/sounds/SinedPink.aiff\"
).loadIfNeeded", "//:EasternAmericanFrog
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/frogs/EasternAmericanFrog.wav\"
)", IdentityDictionary.prNew,
Array.prNew(128), "//:swallows10minL
BufferItem(
\"/Users/iani2/Music/sounds/111202rhythmanalysis/swallows10minL.aiff\"
).loadIfNeeded", "//:swallows
BufferItem(
\"/Users/iani2/Music/sounds/SoundSamplesJPH/swallows/swallows.wav\"
).loadIfNeeded", "//:a11wlk01
BufferItem(
\"/Applications/SuperCollider3.6ide/SuperCollider3.6ide.app/Contents/Resources/sounds/a11wlk01.wav\"
).loadIfNeeded",
"//:a11wlk01-44_1
BufferItem(
\"/Applications/SuperCollider3.6ide/SuperCollider3.6ide.app/Contents/Resources/sounds/a11wlk01-44_1.aiff\"
).loadIfNeeded", IdentityDictionary.prNew, Array.prNew(32), "//:playbuf
SynthDef(\"playbuf\", { | out = 0, buf = 0, rate = 1, startAt = 0, loop = 1, fadein = 0.01, fadeout = 1, gate = 1, amp = 1 |
var env, envgen;
env = Env.asr(fadein, 1, fadeout);
envgen = EnvGen.kr(env, gate, amp, doneAction: 2);
Out.ar(out, envgen * PlayBuf.ar(buf.numChannels, buf, rate * BufRateScale.kr(buf), 1, loop, doneAction: 2)
)
}).add;",
"//:playbuf-test
SynthDef(\"playbuf\", { | out = 0, buf = 0, rate = 1, startAt = 0, loop = 1, fadein = 0.01, fadeout = 1, gate = 1, amp = 1 |
var env, envgen;
env = Env.asr(fadein, 1, fadeout);
envgen = EnvGen.kr(env, gate, amp, doneAction: 2);
Out.ar(out, envgen * PlayBuf.ar(buf.numChannels, buf, rate * BufRateScale.kr(buf), 1, loop, doneAction: 2)
)
}).add;", IdentityDictionary.prNew, Array.prNew(32), "//:BootDefaultServer
Server.default.boot;
",
IdentityDictionary.prNew, Array.prNew(32), "//:ping
SynthDef(\"ping\", { | out = 0, freq = 400, dur = 0.5, amp = 0.1 |
Out.ar(out,
SinOsc.ar(freq, 0,
EnvGen.kr(Env.perc(releaseTime: dur - 0.01 max: 0.01, level: amp), doneAction: 2)
)
)
}).add;"
];
p = [
// ScriptLib
0, [ lib: o[1] ],
// MultiLevelIdentityDictionary
1, [ dictionary: o[2] ],
// IdentityDictionary
2, [ array: o[3], size: 5,
proto: nil, parent: nil,
know: false ],
// Array
3, [ nil, nil, '----Narcissus----', o[4],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
'-Sounds', o[17], '-0Dev', o[31],
nil, nil, nil, nil,
'SCMIR', o[48], nil, nil,
nil, nil, '---Config---', o[58] ],
// IdentityDictionary
4, [ array: o[5], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
5, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, '-0BlobTests', o[6],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
6, [ array: o[7], size: 9,
proto: nil, parent: nil,
know: false ],
// Array
7, [ nil, nil, nil, nil,
nil, nil, nil, nil,
'-000TestBlobs_EMPTY', o[8], nil, nil,
nil, nil, nil, nil,
'-005EnvDifferentStartingPoint', o[9], '-001SimpleBlobSound1', o[10],
'-004BufferPlaybackEnv', o[11], '-003SimpleBufferPlayback', o[12],
'-006OneSoundProcessAtATimeOnly', o[13], '-002MappingParameters', o[14],
'-007OneBlobOnlyDifferentStartingPoint', o[15], '-006OneBlobOnlyDifferentStartingPoint', o[16] ],
// IdentityDictionary
17, [ array: o[18], size: 2,
proto: nil, parent: nil,
know: false ],
// Array
18, [ nil, nil, nil, nil,
nil, nil, '-000BasicSoundLib', o[19],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, '-FromScCode.org', o[28],
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
19, [ array: o[20], size: 7,
proto: nil, parent: nil,
know: false ],
// Array
20, [ '-PlayBufWithSynthDef', o[21], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, '-PlayBuffer', o[22],
nil, nil, 'Pings', o[23],
'-01SineWithFreq', o[24], nil, nil,
'-02PwhiteDiatonic', o[25], 'Ping', o[26],
nil, nil, '-01SineWithoutFreqControl', o[27] ],
// IdentityDictionary
28, [ array: o[29], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
29, [ nil, nil, nil, nil,
'endlessRogerCormanmovie', o[30], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
31, [ array: o[32], size: 3,
proto: nil, parent: nil,
know: false ],
// Array
32, [ '-000ScriptMixerRedo', o[33], nil, nil,
nil, nil, '-01BufferConfigWindow', o[41],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, '-ScriptLibExtensions', o[44],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
33, [ array: o[34], size: 6,
proto: nil, parent: nil,
know: false ],
// Array
34, [ nil, nil, '-000NewProxyList', o[35],
'-001ProxyControls', o[36], nil, nil,
nil, nil, nil, nil,
'-002ProxyControls (+ Tabbed View)', o[37], nil, nil,
'-000TestSound2freq', o[38], nil, nil,
nil, nil, '-000TestSound', o[39],
nil, nil, '-003Scopes', o[40],
nil, nil, nil, nil ],
// IdentityDictionary
41, [ array: o[42], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
42, [ '00BufferConfig', o[43], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
44, [ array: o[45], size: 2,
proto: nil, parent: nil,
know: false ],
// Array
45, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, 'EvalSnippets', o[46],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, 'ScriptTest', o[47],
nil, nil, nil, nil ],
// IdentityDictionary
48, [ array: o[49], size: 2,
proto: nil, parent: nil,
know: false ],
// Array
49, [ nil, nil, '-00EarlyTests', o[50],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, '-01GUIDesign', o[55],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
50, [ array: o[51], size: 3,
proto: nil, parent: nil,
know: false ],
// Array
51, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
'-01Analyse1File', o[52], '-02DoThisAfter01ToSeeData', o[53],
'-OnsetTries0', o[54], nil, nil ],
// IdentityDictionary
55, [ array: o[56], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
56, [ nil, nil, nil, nil,
nil, nil, '-00BasicIdea-UsingScriptLibForData', o[57],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
58, [ array: o[59], size: 5,
proto: nil, parent: nil,
know: false ],
// Array
59, [ 'SoundFiles', o[60], 'Buffers-Autoload', o[71],
nil, nil, nil, nil,
nil, nil, nil, nil,
'SynthDefs02-buffers', o[77], nil, nil,
nil, nil, nil, nil,
nil, nil, 'ServerStuff', o[81],
nil, nil, nil, nil,
'SynthDefs01-simple', o[84], nil, nil ],
// IdentityDictionary
60, [ array: o[61], size: 9,
proto: nil, parent: nil,
know: false ],
// Array
61, [ nil, nil, nil, nil,
'a11wlk01', o[62], 'a11wlk01-44_1', o[63],
'EasternGreyTreefrog', o[64], nil, nil,
nil, nil, 'NorthernSpringPeeper', o[65],
'NorthernPygmyOwl', o[66], nil, nil,
'swallows10minL', o[67], 'NorthernRoughWingedSwallow', o[68],
'SinedPink', o[69], 'EasternAmericanFrog', o[70],
nil, nil, nil, nil ],
// IdentityDictionary
71, [ array: o[72], size: 4,
proto: nil, parent: nil,
know: false ],
// Array
72, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
'swallows10minL', o[73], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
'swallows', o[74], nil, nil,
'a11wlk01', o[75], 'a11wlk01-44_1', o[76],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
77, [ array: o[78], size: 2,
proto: nil, parent: nil,
know: false ],
// Array
78, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, 'playbuf', o[79],
'playbuf-test', o[80], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
81, [ array: o[82], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
82, [ nil, nil, nil, nil,
nil, nil, 'BootDefaultServer', o[83],
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ],
// IdentityDictionary
84, [ array: o[85], size: 1,
proto: nil, parent: nil,
know: false ],
// Array
85, [ nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
'ping', o[86], nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil ]
];
prUnarchive(o,p);