-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALierMixeurVIDEO.pd
2116 lines (2116 loc) · 59.7 KB
/
ALierMixeurVIDEO.pd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#N canvas 481 61 1311 784 10;
#X obj 1 -6 cnv 15 1900 768 empty empty empty 20 12 0 14 -1 -66577
0;
#X obj 3 -4 cnv 15 1896 764 empty empty A_Lier 20 20 0 21 -182954 -66577
0;
#X obj 44 574 alpha;
#X floatatom 92 679 5 0 0 0 - - -;
#X floatatom 143 682 5 0 0 0 - - -;
#X floatatom 93 614 5 0 0 0 - - -;
#X obj 44 595 color;
#X obj 104 518 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699
-1 -1 4900 1;
#X obj 112 518 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 4900 1;
#X obj 120 518 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1
-1 4900 1;
#X obj 128 518 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -195568
-1 -1 4900 1;
#N canvas 0 50 452 302 color 0;
#X obj 44 212 pack f f f f;
#X msg 44 236 \$1 \$2 \$3 \$4;
#X obj 26 145 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
-1;
#X obj 41 144 t b f;
#X obj 41 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699 -1
-1 4900 1;
#X obj 49 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 4900 1;
#X obj 57 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1 -1
4900 1;
#X obj 65 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -195568 -1
-1 4900 1;
#X obj 63 167 t b f;
#X obj 86 189 t b f;
#X floatatom 77 86 5 0 0 0 - - -;
#X floatatom 67 101 5 0 0 0 - - -;
#X floatatom 53 115 5 0 0 0 - - -;
#X floatatom 35 129 5 0 0 0 - - -;
#X obj 17 7 inlet;
#X obj 52 7 inlet;
#X obj 87 7 inlet;
#X obj 122 8 inlet;
#X obj 44 261 outlet;
#X connect 0 0 1 0;
#X connect 1 0 18 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 3 1 0 1;
#X connect 4 0 0 0;
#X connect 4 0 13 0;
#X connect 5 0 3 0;
#X connect 5 0 12 0;
#X connect 6 0 8 0;
#X connect 6 0 11 0;
#X connect 7 0 9 0;
#X connect 7 0 10 0;
#X connect 8 0 0 0;
#X connect 8 1 0 2;
#X connect 9 0 0 0;
#X connect 9 1 0 3;
#X connect 14 0 4 0;
#X connect 15 0 5 0;
#X connect 16 0 6 0;
#X connect 17 0 7 0;
#X restore 95 578 pd color;
#X obj 44 638 pix_texture;
#X obj 180 576 loadbang;
#X obj 145 480 loadbang;
#X msg 145 499 1;
#X obj 44 701 rectangle 5.334 4;
#X obj 44 122 tgl 19 0 empty empty Gem 0 -6 0 8 -258699 -1 -1 0 1;
#X obj 323 538 cnv 15 390 200 empty empty Affichage 20 12 0 14 -195568
-66577 0;
#N canvas 997 446 706 556 Gestion_Affichage 0;
#N canvas 894 211 558 738 GemWin_Benj 0;
#X msg 75 111 create \, 1;
#X msg 61 54 stereo 2;
#X msg 53 34 border 0;
#X msg -35 95 dimen 800 600;
#X msg -35 112 offset 0 0;
#X msg -35 130 dimen 400 300;
#X msg -35 148 fullscreen 1;
#X msg -35 77 offset 1024 0;
#X msg -35 166 fullscreen 0;
#X msg -35 184 lighting 1;
#X msg -35 201 lighting 0;
#X msg -36 215 dimen 200 150;
#X msg -35 235 cursor 0;
#X msg -35 253 cursor 1;
#X msg 62 77 stereo 0;
#X msg 74 132 destroy \, 0;
#X msg 55 151 dimen 1024 768;
#X msg -35 272 dimen 1024 768;
#X obj 126 11 inlet;
#X obj 150 77 key;
#X obj 150 117 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
-1;
#X msg -31 34 border 1;
#X obj 150 97 select 27;
#X obj 131 450 t a;
#X obj 152 482 route dimen;
#X obj 152 504 s dimengemwin;
#X obj 131 536 gemwin 25;
#X connect 0 0 23 0;
#X connect 1 0 23 0;
#X connect 2 0 23 0;
#X connect 3 0 23 0;
#X connect 4 0 23 0;
#X connect 5 0 23 0;
#X connect 6 0 23 0;
#X connect 7 0 23 0;
#X connect 8 0 23 0;
#X connect 9 0 23 0;
#X connect 10 0 23 0;
#X connect 11 0 23 0;
#X connect 12 0 23 0;
#X connect 13 0 23 0;
#X connect 14 0 23 0;
#X connect 15 0 23 0;
#X connect 16 0 23 0;
#X connect 17 0 23 0;
#X connect 18 0 23 0;
#X connect 19 0 22 0;
#X connect 20 0 15 0;
#X connect 21 0 23 0;
#X connect 22 0 20 0;
#X connect 23 0 24 0;
#X connect 23 0 26 0;
#X connect 24 0 25 0;
#X restore -39 235 pd GemWin_Benj;
#X msg 133 97 create \, 1;
#X msg -39 10 dimen 400 300;
#X msg -39 -23 dimen 1024 768;
#X msg -39 76 offset 1024 0;
#X msg -39 116 cursor 0;
#X msg -39 156 view 4 0 0 0 0 0 0 1 0;
#X msg 134 122 destroy \, 0;
#X msg -39 43 offset 1280 0;
#X msg -39 93 offset 0 0;
#X obj 124 158 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699
-1 -1 0 1;
#X obj 132 158 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 0 1;
#X obj 140 158 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1
-1 0 1;
#N canvas 0 50 466 316 colgem 0;
#X obj 26 145 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
-1;
#X obj 41 144 t b f;
#X obj 41 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699 -1
-1 0 1;
#X obj 49 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 0 1;
#X obj 57 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1 -1
0 1;
#X obj 63 167 t b f;
#X floatatom 67 101 5 0 0 0 - - -;
#X floatatom 53 115 5 0 0 0 - - -;
#X floatatom 35 129 5 0 0 0 - - -;
#X obj 17 7 inlet;
#X obj 52 7 inlet;
#X obj 87 7 inlet;
#X obj 44 261 outlet;
#X obj 44 212 pack f f f;
#X msg 44 236 color \$1 \$2 \$3;
#X connect 0 0 13 0;
#X connect 1 0 13 0;
#X connect 1 1 13 1;
#X connect 2 0 8 0;
#X connect 2 0 13 0;
#X connect 3 0 1 0;
#X connect 3 0 7 0;
#X connect 4 0 5 0;
#X connect 4 0 6 0;
#X connect 5 0 13 0;
#X connect 5 1 13 2;
#X connect 9 0 2 0;
#X connect 10 0 3 0;
#X connect 11 0 4 0;
#X connect 13 0 14 0;
#X connect 14 0 12 0;
#X restore 115 218 pd colgem;
#X msg -39 173 view 0 4 0 0 0 0 0 1 0;
#X msg -39 133 cursor 1;
#X msg -39 59 offset 1680 0;
#X obj 115 -14 inlet;
#X obj 115 64 t b b b b;
#X obj 115 23 select 1;
#X msg -40 -6 dimen 1280 1024;
#X obj 231 99 t b b;
#X msg -40 190 view 0 0 4 0 0 0 0 1 0;
#X text 8 208 default;
#X msg -40 26 dimen 800 600;
#X msg 111 250 border 1;
#X msg 6 267 offset 0 0;
#X msg 4 284 dimen 800 600;
#X msg 5 307 border 1;
#X obj 196 190 t a;
#X obj 196 143 loadbang;
#X obj 382 35 gemkeyboard;
#X floatatom 382 73 5 0 0 1 keyCode - -;
#X obj 382 94 sel 9;
#X obj 545 34 key;
#X floatatom 545 62 5 0 0 1 keyCode - -;
#X obj 545 83 sel 27;
#X msg 274 350 dimen 1280 480 \, border 1 \, offset 0 0 \, cursor 0
\, create \, 1;
#X msg 196 165 0;
#X msg 265 397 dimen 2560 960 \, border 1 \, offset 0 0 \, cursor 0
\, create \, 1;
#X msg 114 495 dimen 2048 768 \, border 0 \, offset 1920 0 \, cursor
0 \, create \, 1;
#X msg 211 457 dimen 2560 1024 \, border 0 \, offset 1920 0 \, cursor
0 \, topmost 1 \, create \, 1;
#X msg 268 303 dimen 800 600 \, border 1 \, cursor 1 \, create \, 1
;
#X obj 264 -19 inlet;
#X msg 264 239 dimen 1280 400 \, border 1 \, offset 0 0 \, cursor 1
\, create \, 1;
#X msg 274 195 dimen 2560 800 \, border 0 \, cursor 0 \, create \,
1;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 7 0 0 0;
#X connect 8 0 0 0;
#X connect 9 0 0 0;
#X connect 10 0 13 0;
#X connect 11 0 13 1;
#X connect 12 0 13 2;
#X connect 13 0 0 0;
#X connect 14 0 0 0;
#X connect 15 0 0 0;
#X connect 16 0 0 0;
#X connect 17 0 19 0;
#X connect 18 3 45 0;
#X connect 19 0 18 0;
#X connect 19 1 21 0;
#X connect 20 0 0 0;
#X connect 21 0 7 0;
#X connect 21 1 7 0;
#X connect 22 0 0 0;
#X connect 24 0 0 0;
#X connect 25 0 0 0;
#X connect 26 0 0 0;
#X connect 27 0 0 0;
#X connect 28 0 0 0;
#X connect 29 0 10 0;
#X connect 29 0 11 0;
#X connect 29 0 12 0;
#X connect 30 0 38 0;
#X connect 31 0 32 0;
#X connect 32 0 33 0;
#X connect 33 0 7 0;
#X connect 34 0 35 0;
#X connect 35 0 36 0;
#X connect 36 0 7 0;
#X connect 37 0 0 0;
#X connect 38 0 29 0;
#X connect 39 0 0 0;
#X connect 40 0 0 0;
#X connect 41 0 0 0;
#X connect 42 0 0 0;
#X connect 43 0 44 0;
#X connect 44 0 0 0;
#X connect 45 0 0 0;
#X restore 435 660 pd Gestion_Affichage;
#X obj 435 625 tgl 29 0 empty empty Affichage-ON_OFF 0 -6 0 8 -24198
-258699 -1 0 1;
#N canvas 3 203 1009 711 playlist_player 0;
#X msg 568 34 seek \$1;
#X floatatom 630 36 5 0 0 0 - - -;
#X msg 529 63 sort \$1;
#X obj 590 64 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1
;
#X obj 424 70 loadbang;
#X msg 574 120 scroll 200;
#X msg 275 463 bang;
#X obj 238 625 msgfile;
#N canvas 76 237 646 300 navigation 0;
#X obj 54 272 outlet;
#X msg 91 140 rewind;
#X text 140 139 go to beginning;
#X msg 92 163 end;
#X text 139 163 go the the end;
#X msg 92 214 skip -1;
#X msg 92 238 where;
#X text 145 237 where are we now ?;
#X text 146 214 go to the <n>th line from here;
#X text 142 188 go to line number <n>;
#X text 44 38 navigating through the lines of a [msgfile];
#X text 42 62 these messages will not output any data;
#X text 41 96 'where' will output the position of the "cursor" at the
2nd outlet of [msgfile];
#X msg 92 189 goto 8;
#X connect 1 0 0 0;
#X connect 3 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 13 0 0 0;
#X restore 275 508 pd navigation;
#N canvas 707 298 458 426 data 0;
#X obj 54 332 outlet;
#X msg 105 143 bang;
#X msg 103 231 next;
#X msg 102 189 prev;
#X msg 103 210 this;
#X text 154 140 output one line as a list and move to the next;
#X text 151 189 output the previous line;
#X text 153 229 output the next line;
#X text 151 209 output the current line;
#X msg 104 264 flush;
#X text 153 263 output all lines;
#X text 39 37 get the contents of the [msgfile] line-by-line;
#X text 37 63 'prev' \, 'this' \, 'next' and 'flush' will not alter
the current "cursor" position.;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 4 0 0 0;
#X connect 9 0 0 0;
#X restore 275 488 pd data retrieval;
#N canvas 489 234 669 573 editing 0;
#X obj 54 512 outlet;
#X msg 137 101 clear;
#X msg 140 481 set 2 4 6 8;
#X text 246 480 clear and then add one message;
#X msg 136 258 add cis boom bah;
#X msg 136 277 add2 bang;
#X text 190 102 empty the object;
#X msg 137 161 delete 2;
#X text 272 303 insert a message before the current line;
#X text 238 255 add a message at the end of the object;
#X msg 137 359 append after the break of dawn;
#X text 331 356 add a message at the current position;
#X msg 138 437 replace the new day;
#X text 330 437 replace the current line;
#X msg 136 306 insert before sunrise;
#X msg 136 325 insert2 inserted;
#X msg 137 378 append2 appendix;
#X msg 137 141 delete;
#X text 191 142 delete the current line;
#X text 194 161 delete the specified line;
#X msg 137 180 delete 4 7;
#X text 205 181 delete the specified region;
#X msg 137 200 delete 7 4;
#X text 208 200 delete all but the specified region;
#X text 56 39 editing (adding \, modifying \, deleting) the content
if the [msgfile];
#X text 237 275 add to the last line (INCOMPATIBLE with [textfile])
;
#X text 275 325 add to the previous line (INCOMPATIBLE with [textfile])
;
#X text 330 379 add to the current line (INCOMPATIBLE with [textfile])
;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 7 0 0 0;
#X connect 10 0 0 0;
#X connect 12 0 0 0;
#X connect 14 0 0 0;
#X connect 15 0 0 0;
#X connect 16 0 0 0;
#X connect 17 0 0 0;
#X connect 20 0 0 0;
#X connect 22 0 0 0;
#X restore 275 528 pd editing;
#N canvas 0 50 676 304 searching 0;
#X obj 54 272 outlet;
#X msg 70 180 find test 6;
#X msg 70 239 find test * 7 *;
#X text 73 61 searching (and finding) lines within the [msgfile];
#X text 177 241 you can use '*' as a wildchard for a single atom. '*'
is the only wildcard supported;
#X text 174 178 find a matching list \, starting at the current position
;
#X msg 72 208 find the new day;
#X text 76 130 if the search fails \, a 'bang' is emitted at the 2nd
outlet;
#X text 77 99 if the searched list is found \, then the linenumber
and the list is output (via the 2nd and 1st outlet).;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 6 0 0 0;
#X restore 275 548 pd searching;
#N canvas 575 306 853 402 file-i/o 0;
#X obj 54 312 outlet;
#X text 265 75 read a file;
#X text 299 96 write one;
#X text 305 164 write a file \, terminating lines only with carriage
return (omitting semicolons.) You can read files this way too \, in
which case carriage returns are mapped to semicolons.;
#X msg 87 76 read msgfile.txt;
#X msg 87 168 write /tmp/msgfile2.txt cr;
#X msg 87 191 read msgfile2.txt cr;
#X msg 87 97 write /tmp/msgfile.txt;
#X text 51 26 reading from and writing the contents of [msgfile] to
files;
#X msg 111 248 write /tmp/msgfile3.txt $$;
#X text 331 238 on writing replace every occurence of $$ with a single
$. This way you can write pd-patches which can handle arguments.;
#X msg 146 291 add #X obj f $\\\$1;
#X msg 92 130 read2 msgfile.txt;
#X text 264 131 read file and append it to the current buffer;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 7 0 0 0;
#X connect 9 0 0 0;
#X connect 11 0 0 0;
#X connect 12 0 0 0;
#X restore 275 568 pd file-i/o;
#N canvas 56 448 450 397 misc 0;
#X obj 84 282 outlet;
#X msg 84 112 print;
#X text 40 72 miscellaneous functionality of [msgfile];
#X text 126 114 debugging printout of the contents to the console;
#X connect 1 0 0 0;
#X restore 275 588 pd misc;
#X text 206 448 clear;
#X obj 199 336 bng 29 250 50 0 empty empty empty 17 7 0 10 -258113
-4034 -1;
#X msg 215 467 clear;
#X msg 349 591 delete;
#X msg 264 123 location /media/Docs/Vid_gnirut-test/bacteria;
#X obj 199 371 openpanel;
#X msg 199 412 read \$1 cr;
#X msg 424 95 location /media/Docs/Vid_gnirut-test/patch/playlist;
#X obj 202 214 inlet;
#X obj 289 218 inlet;
#X obj 673 249 inlet;
#X obj 238 687 outlet;
#X obj 277 661 print playlistdone;
#X msg 428 309 next;
#X msg 427 267 prev;
#X msg 515 246 read VIDEOS.txt cr;
#X msg 550 390 goto \$1;
#X floatatom 663 370 5 0 0 0 - - -;
#X msg 424 478 this;
#X obj 288 337 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X obj 500 444 t b a;
#X obj 515 213 r ib;
#X connect 1 0 0 0;
#X connect 3 0 2 0;
#X connect 4 0 21 0;
#X connect 6 0 7 0;
#X connect 7 0 25 0;
#X connect 7 1 26 0;
#X connect 8 0 7 0;
#X connect 9 0 7 0;
#X connect 10 0 7 0;
#X connect 11 0 7 0;
#X connect 12 0 7 0;
#X connect 13 0 7 0;
#X connect 15 0 19 0;
#X connect 16 0 7 0;
#X connect 17 0 7 0;
#X connect 19 0 20 0;
#X connect 20 0 7 0;
#X connect 22 0 15 0;
#X connect 23 0 33 0;
#X connect 24 0 30 0;
#X connect 27 0 7 0;
#X connect 28 0 7 0;
#X connect 29 0 7 0;
#X connect 30 0 34 0;
#X connect 31 0 30 0;
#X connect 32 0 7 0;
#X connect 33 0 6 0;
#X connect 34 0 32 0;
#X connect 34 1 7 0;
#X connect 35 0 29 0;
#X restore 147 154 pd playlist_player;
#X obj 147 131 bng 15 250 50 0 empty empty Load 17 7 0 10 -258113 -4034
-1;
#X obj 196 131 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X symbolatom 147 178 32 0 0 0 - - -;
#X obj 252 57 bng 29 250 50 0 empty empty empty 17 7 0 10 -258113 -4034
-1;
#X obj 44 154 gemhead 51;
#X obj 44 265 pix_film;
#X obj 66 321 unpack 0 0 0;
#X floatatom 66 343 5 0 0 3 length - -;
#X floatatom 113 343 5 0 0 3 width - -;
#X floatatom 155 343 5 0 0 3 height - -;
#X floatatom 107 248 5 0 0 0 - - -;
#X obj 97 291 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1
-1;
#X floatatom 252 113 5 0 0 0 - - -;
#X obj 572 601 loadbang;
#X obj 44 383 pix_add;
#X text 875 282 INCRUSTATIONS;
#X text 147 46 VIDEOS;
#X obj 385 -2 loadbang;
#X obj 572 623 bng 32 250 50 0 empty empty Petit_Affichage 40 7 0 10
-4034 -1 -1;
#X obj 440 16 delay 500;
#X obj 252 133 f;
#X obj 537 14 bng 45 250 50 0 empty empty All 17 -10 0 10 -258113 -4034
-1;
#X obj 355 78 ggee/shell;
#X msg 355 58 od -An -N2 -i /dev/random;
#X obj 440 -2 t b b b;
#X floatatom 355 99 5 0 0 0 - - -;
#X obj 355 38 delay 100;
#X msg 23 224 auto \$1;
#X obj 23 206 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1
;
#X obj 144 641 * 800;
#X obj 143 661 / 1280;
#X floatatom 79 413 5 0 0 0 - - -;
#X floatatom 114 414 5 0 0 0 - - -;
#X floatatom 149 414 5 0 0 0 - - -;
#X obj 769 598 alpha;
#X floatatom 817 703 5 0 0 0 - - -;
#X floatatom 868 706 5 0 0 0 - - -;
#X floatatom 818 638 5 0 0 0 - - -;
#X obj 769 619 color;
#X obj 829 542 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699
-1 -1 4900 1;
#X obj 837 542 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 4900 1;
#X obj 845 542 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1
-1 4900 1;
#X obj 853 542 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -195568
-1 -1 4900 1;
#N canvas 0 50 452 302 color 0;
#X obj 44 212 pack f f f f;
#X msg 44 236 \$1 \$2 \$3 \$4;
#X obj 26 145 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
-1;
#X obj 41 144 t b f;
#X obj 41 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -258699 -1
-1 4900 1;
#X obj 49 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -24198 -1
-1 4900 1;
#X obj 57 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -355 -1 -1
4900 1;
#X obj 65 35 vsl 8 50 0 1 0 0 empty empty empty 0 -8 0 8 -195568 -1
-1 4900 1;
#X obj 63 167 t b f;
#X obj 86 189 t b f;
#X floatatom 77 86 5 0 0 0 - - -;
#X floatatom 67 101 5 0 0 0 - - -;
#X floatatom 53 115 5 0 0 0 - - -;
#X floatatom 35 129 5 0 0 0 - - -;
#X obj 17 7 inlet;
#X obj 52 7 inlet;
#X obj 87 7 inlet;
#X obj 122 8 inlet;
#X obj 44 261 outlet;
#X connect 0 0 1 0;
#X connect 1 0 18 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 3 1 0 1;
#X connect 4 0 0 0;
#X connect 4 0 13 0;
#X connect 5 0 3 0;
#X connect 5 0 12 0;
#X connect 6 0 8 0;
#X connect 6 0 11 0;
#X connect 7 0 9 0;
#X connect 7 0 10 0;
#X connect 8 0 0 0;
#X connect 8 1 0 2;
#X connect 9 0 0 0;
#X connect 9 1 0 3;
#X connect 14 0 4 0;
#X connect 15 0 5 0;
#X connect 16 0 6 0;
#X connect 17 0 7 0;
#X restore 820 602 pd color;
#X obj 769 662 pix_texture;
#X obj 905 600 loadbang;
#X obj 870 504 loadbang;
#X msg 870 523 1;
#X obj 769 725 rectangle 5.334 4;
#X obj 769 146 tgl 19 0 empty empty Gem 0 -6 0 8 -258699 -1 -1 1 1
;
#N canvas 3 203 1009 711 playlist_player 0;
#X msg 568 34 seek \$1;
#X floatatom 630 36 5 0 0 0 - - -;
#X msg 529 63 sort \$1;
#X obj 590 64 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1
;
#X obj 424 70 loadbang;
#X msg 574 120 scroll 200;
#X msg 275 463 bang;
#X obj 238 625 msgfile;
#N canvas 76 237 646 300 navigation 0;
#X obj 54 272 outlet;
#X msg 91 140 rewind;
#X text 140 139 go to beginning;
#X msg 92 163 end;
#X text 139 163 go the the end;
#X msg 92 214 skip -1;
#X msg 92 238 where;
#X text 145 237 where are we now ?;
#X text 146 214 go to the <n>th line from here;
#X text 142 188 go to line number <n>;
#X text 44 38 navigating through the lines of a [msgfile];
#X text 42 62 these messages will not output any data;
#X text 41 96 'where' will output the position of the "cursor" at the
2nd outlet of [msgfile];
#X msg 92 189 goto 8;
#X connect 1 0 0 0;
#X connect 3 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 13 0 0 0;
#X restore 275 508 pd navigation;
#N canvas 707 298 458 426 data 0;
#X obj 54 332 outlet;
#X msg 105 143 bang;
#X msg 103 231 next;
#X msg 102 189 prev;
#X msg 103 210 this;
#X text 154 140 output one line as a list and move to the next;
#X text 151 189 output the previous line;
#X text 153 229 output the next line;
#X text 151 209 output the current line;
#X msg 104 264 flush;
#X text 153 263 output all lines;
#X text 39 37 get the contents of the [msgfile] line-by-line;
#X text 37 63 'prev' \, 'this' \, 'next' and 'flush' will not alter
the current "cursor" position.;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 4 0 0 0;
#X connect 9 0 0 0;
#X restore 275 488 pd data retrieval;
#N canvas 489 234 669 573 editing 0;
#X obj 54 512 outlet;
#X msg 137 101 clear;
#X msg 140 481 set 2 4 6 8;
#X text 246 480 clear and then add one message;
#X msg 136 258 add cis boom bah;
#X msg 136 277 add2 bang;
#X text 190 102 empty the object;
#X msg 137 161 delete 2;
#X text 272 303 insert a message before the current line;
#X text 238 255 add a message at the end of the object;
#X msg 137 359 append after the break of dawn;
#X text 331 356 add a message at the current position;
#X msg 138 437 replace the new day;
#X text 330 437 replace the current line;
#X msg 136 306 insert before sunrise;
#X msg 136 325 insert2 inserted;
#X msg 137 378 append2 appendix;
#X msg 137 141 delete;
#X text 191 142 delete the current line;
#X text 194 161 delete the specified line;
#X msg 137 180 delete 4 7;
#X text 205 181 delete the specified region;
#X msg 137 200 delete 7 4;
#X text 208 200 delete all but the specified region;
#X text 56 39 editing (adding \, modifying \, deleting) the content
if the [msgfile];
#X text 237 275 add to the last line (INCOMPATIBLE with [textfile])
;
#X text 275 325 add to the previous line (INCOMPATIBLE with [textfile])
;
#X text 330 379 add to the current line (INCOMPATIBLE with [textfile])
;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 7 0 0 0;
#X connect 10 0 0 0;
#X connect 12 0 0 0;
#X connect 14 0 0 0;
#X connect 15 0 0 0;
#X connect 16 0 0 0;
#X connect 17 0 0 0;
#X connect 20 0 0 0;
#X connect 22 0 0 0;
#X restore 275 528 pd editing;
#N canvas 0 50 676 304 searching 0;
#X obj 54 272 outlet;
#X msg 70 180 find test 6;
#X msg 70 239 find test * 7 *;
#X text 73 61 searching (and finding) lines within the [msgfile];
#X text 177 241 you can use '*' as a wildchard for a single atom. '*'
is the only wildcard supported;
#X text 174 178 find a matching list \, starting at the current position
;
#X msg 72 208 find the new day;
#X text 76 130 if the search fails \, a 'bang' is emitted at the 2nd
outlet;
#X text 77 99 if the searched list is found \, then the linenumber
and the list is output (via the 2nd and 1st outlet).;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 6 0 0 0;
#X restore 275 548 pd searching;
#N canvas 575 306 853 402 file-i/o 0;
#X obj 54 312 outlet;
#X text 265 75 read a file;
#X text 299 96 write one;
#X text 305 164 write a file \, terminating lines only with carriage
return (omitting semicolons.) You can read files this way too \, in
which case carriage returns are mapped to semicolons.;
#X msg 87 76 read msgfile.txt;
#X msg 87 168 write /tmp/msgfile2.txt cr;
#X msg 87 191 read msgfile2.txt cr;
#X msg 87 97 write /tmp/msgfile.txt;
#X text 51 26 reading from and writing the contents of [msgfile] to
files;
#X msg 111 248 write /tmp/msgfile3.txt $$;
#X text 331 238 on writing replace every occurence of $$ with a single
$. This way you can write pd-patches which can handle arguments.;
#X msg 146 291 add #X obj f $\\\$1;
#X msg 92 130 read2 msgfile.txt;
#X text 264 131 read file and append it to the current buffer;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 7 0 0 0;
#X connect 9 0 0 0;
#X connect 11 0 0 0;
#X connect 12 0 0 0;
#X restore 275 568 pd file-i/o;
#N canvas 56 448 450 397 misc 0;
#X obj 84 282 outlet;
#X msg 84 112 print;
#X text 40 72 miscellaneous functionality of [msgfile];
#X text 126 114 debugging printout of the contents to the console;
#X connect 1 0 0 0;
#X restore 275 588 pd misc;
#X text 206 448 clear;
#X obj 199 336 bng 29 250 50 0 empty empty empty 17 7 0 10 -258113
-4034 -1;
#X msg 215 467 clear;
#X msg 349 591 delete;
#X msg 264 123 location /media/Docs/Vid_gnirut-test/bacteria;
#X obj 199 371 openpanel;
#X msg 199 412 read \$1 cr;
#X msg 424 95 location /media/Docs/Vid_gnirut-test/patch/playlist;
#X obj 202 214 inlet;
#X obj 289 218 inlet;
#X obj 673 249 inlet;
#X obj 238 687 outlet;
#X obj 277 661 print playlistdone;
#X msg 428 309 next;
#X msg 427 267 prev;
#X msg 515 246 read VIDEOS.txt cr;
#X msg 550 390 goto \$1;
#X floatatom 663 370 5 0 0 0 - - -;
#X msg 424 478 this;
#X obj 288 337 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X obj 500 444 t b a;
#X obj 515 213 r ib;
#X connect 1 0 0 0;
#X connect 3 0 2 0;
#X connect 4 0 21 0;
#X connect 6 0 7 0;
#X connect 7 0 25 0;
#X connect 7 1 26 0;
#X connect 8 0 7 0;
#X connect 9 0 7 0;
#X connect 10 0 7 0;
#X connect 11 0 7 0;
#X connect 12 0 7 0;
#X connect 13 0 7 0;
#X connect 15 0 19 0;
#X connect 16 0 7 0;
#X connect 17 0 7 0;
#X connect 19 0 20 0;
#X connect 20 0 7 0;
#X connect 22 0 15 0;
#X connect 23 0 33 0;
#X connect 24 0 30 0;
#X connect 27 0 7 0;
#X connect 28 0 7 0;
#X connect 29 0 7 0;
#X connect 30 0 34 0;
#X connect 31 0 30 0;
#X connect 32 0 7 0;
#X connect 33 0 6 0;
#X connect 34 0 32 0;
#X connect 34 1 7 0;
#X connect 35 0 29 0;
#X restore 872 178 pd playlist_player;
#X obj 872 155 bng 15 250 50 0 empty empty Load 17 7 0 10 -258113 -4034
-1;
#X obj 921 155 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X symbolatom 872 202 32 0 0 0 - - -;
#X obj 977 81 bng 29 250 50 0 empty empty empty 17 7 0 10 -258113 -4034
-1;
#X obj 769 289 pix_film;
#X obj 791 345 unpack 0 0 0;
#X floatatom 791 367 5 0 0 3 length - -;
#X floatatom 838 367 5 0 0 3 width - -;
#X floatatom 880 367 5 0 0 3 height - -;
#X floatatom 832 272 5 0 0 0 - - -;
#X obj 822 315 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X floatatom 977 137 5 0 0 0 - - -;
#X obj 769 502 pix_add;
#X obj 977 157 f;
#X msg 748 248 auto \$1;
#X obj 748 230 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 1
1;
#X obj 869 665 * 800;
#X obj 868 685 / 1280;
#X floatatom 804 437 5 0 0 0 - - -;
#X floatatom 839 438 5 0 0 0 - - -;
#X floatatom 874 438 5 0 0 0 - - -;
#X msg 293 113 seed \$1;
#X obj 1086 101 ggee/shell;
#X msg 1086 81 od -An -N2 -i /dev/random;
#X floatatom 1086 122 5 0 0 0 - - -;
#X obj 1086 61 delay 201;
#X msg 1014 135 seed \$1;
#X msg 180 596 6.4;
#X msg 905 620 6.4;
#X obj 769 459 translateXYZ 6.4 0 0;
#X obj 44 435 translateXYZ -6.4 0 0;
#X text 71 100 double cube moitié figé;
#X obj 271 248 tgl 19 0 empty empty Gem 0 -6 0 8 -258699 -1 -1 0 1
;
#N canvas 3 203 1009 711 playlist_player 0;
#X msg 568 34 seek \$1;
#X floatatom 630 36 5 0 0 0 - - -;
#X msg 529 63 sort \$1;
#X obj 590 64 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1
;
#X obj 424 70 loadbang;
#X msg 574 120 scroll 200;
#X msg 275 463 bang;
#X obj 238 625 msgfile;
#N canvas 76 237 646 300 navigation 0;
#X obj 54 272 outlet;
#X msg 91 140 rewind;
#X text 140 139 go to beginning;
#X msg 92 163 end;
#X text 139 163 go the the end;
#X msg 92 214 skip -1;
#X msg 92 238 where;
#X text 145 237 where are we now ?;
#X text 146 214 go to the <n>th line from here;
#X text 142 188 go to line number <n>;
#X text 44 38 navigating through the lines of a [msgfile];
#X text 42 62 these messages will not output any data;
#X text 41 96 'where' will output the position of the "cursor" at the
2nd outlet of [msgfile];
#X msg 92 189 goto 8;
#X connect 1 0 0 0;
#X connect 3 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 13 0 0 0;
#X restore 275 508 pd navigation;
#N canvas 707 298 458 426 data 0;
#X obj 54 332 outlet;
#X msg 105 143 bang;
#X msg 103 231 next;
#X msg 102 189 prev;
#X msg 103 210 this;
#X text 154 140 output one line as a list and move to the next;
#X text 151 189 output the previous line;
#X text 153 229 output the next line;
#X text 151 209 output the current line;
#X msg 104 264 flush;
#X text 153 263 output all lines;
#X text 39 37 get the contents of the [msgfile] line-by-line;
#X text 37 63 'prev' \, 'this' \, 'next' and 'flush' will not alter
the current "cursor" position.;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 3 0 0 0;
#X connect 4 0 0 0;
#X connect 9 0 0 0;
#X restore 275 488 pd data retrieval;
#N canvas 489 234 669 573 editing 0;
#X obj 54 512 outlet;
#X msg 137 101 clear;
#X msg 140 481 set 2 4 6 8;
#X text 246 480 clear and then add one message;
#X msg 136 258 add cis boom bah;
#X msg 136 277 add2 bang;
#X text 190 102 empty the object;
#X msg 137 161 delete 2;
#X text 272 303 insert a message before the current line;
#X text 238 255 add a message at the end of the object;
#X msg 137 359 append after the break of dawn;
#X text 331 356 add a message at the current position;
#X msg 138 437 replace the new day;
#X text 330 437 replace the current line;
#X msg 136 306 insert before sunrise;
#X msg 136 325 insert2 inserted;
#X msg 137 378 append2 appendix;
#X msg 137 141 delete;
#X text 191 142 delete the current line;
#X text 194 161 delete the specified line;
#X msg 137 180 delete 4 7;
#X text 205 181 delete the specified region;
#X msg 137 200 delete 7 4;
#X text 208 200 delete all but the specified region;
#X text 56 39 editing (adding \, modifying \, deleting) the content
if the [msgfile];
#X text 237 275 add to the last line (INCOMPATIBLE with [textfile])
;
#X text 275 325 add to the previous line (INCOMPATIBLE with [textfile])
;
#X text 330 379 add to the current line (INCOMPATIBLE with [textfile])
;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 7 0 0 0;
#X connect 10 0 0 0;
#X connect 12 0 0 0;
#X connect 14 0 0 0;
#X connect 15 0 0 0;
#X connect 16 0 0 0;
#X connect 17 0 0 0;
#X connect 20 0 0 0;
#X connect 22 0 0 0;
#X restore 275 528 pd editing;
#N canvas 0 50 676 304 searching 0;
#X obj 54 272 outlet;
#X msg 70 180 find test 6;
#X msg 70 239 find test * 7 *;
#X text 73 61 searching (and finding) lines within the [msgfile];
#X text 177 241 you can use '*' as a wildchard for a single atom. '*'
is the only wildcard supported;
#X text 174 178 find a matching list \, starting at the current position
;
#X msg 72 208 find the new day;
#X text 76 130 if the search fails \, a 'bang' is emitted at the 2nd
outlet;
#X text 77 99 if the searched list is found \, then the linenumber
and the list is output (via the 2nd and 1st outlet).;
#X connect 1 0 0 0;
#X connect 2 0 0 0;
#X connect 6 0 0 0;
#X restore 275 548 pd searching;
#N canvas 575 306 853 402 file-i/o 0;
#X obj 54 312 outlet;
#X text 265 75 read a file;
#X text 299 96 write one;
#X text 305 164 write a file \, terminating lines only with carriage
return (omitting semicolons.) You can read files this way too \, in
which case carriage returns are mapped to semicolons.;
#X msg 87 76 read msgfile.txt;
#X msg 87 168 write /tmp/msgfile2.txt cr;
#X msg 87 191 read msgfile2.txt cr;
#X msg 87 97 write /tmp/msgfile.txt;
#X text 51 26 reading from and writing the contents of [msgfile] to
files;
#X msg 111 248 write /tmp/msgfile3.txt $$;
#X text 331 238 on writing replace every occurence of $$ with a single
$. This way you can write pd-patches which can handle arguments.;
#X msg 146 291 add #X obj f $\\\$1;
#X msg 92 130 read2 msgfile.txt;
#X text 264 131 read file and append it to the current buffer;
#X connect 4 0 0 0;
#X connect 5 0 0 0;
#X connect 6 0 0 0;
#X connect 7 0 0 0;
#X connect 9 0 0 0;
#X connect 11 0 0 0;
#X connect 12 0 0 0;
#X restore 275 568 pd file-i/o;
#N canvas 56 448 450 397 misc 0;
#X obj 84 282 outlet;
#X msg 84 112 print;
#X text 40 72 miscellaneous functionality of [msgfile];
#X text 126 114 debugging printout of the contents to the console;
#X connect 1 0 0 0;
#X restore 275 588 pd misc;
#X text 206 448 clear;
#X obj 199 336 bng 29 250 50 0 empty empty empty 17 7 0 10 -258113
-4034 -1;
#X msg 215 467 clear;
#X msg 349 591 delete;
#X msg 264 123 location /media/Docs/Vid_gnirut-test/bacteria;
#X obj 199 371 openpanel;
#X msg 199 412 read \$1 cr;
#X msg 424 95 location /media/Docs/Vid_gnirut-test/patch/playlist;
#X obj 202 214 inlet;
#X obj 289 218 inlet;
#X obj 673 249 inlet;
#X obj 238 687 outlet;
#X obj 277 661 print playlistdone;
#X msg 428 309 next;