-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathz-SampleReader.scd
130 lines (125 loc) · 4.18 KB
/
z-SampleReader.scd
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
(
var folder;
//Supernova Node ID
~novaAcid = ParGroup.new;
//MASIBO
~abcBD = Bus.audio(s,1);
~abcCYM = Bus.audio(s,1);
~abcHH = Bus.audio(s,1);
~abcPRC = Bus.audio(s,1);
~abcSD = Bus.audio(s,1);
~abcCLP = Bus.audio(s,1);
~abcTOM = Bus.audio(s,1);
~abcEFX = Bus.audio(s,1);
~effektbusBD = Bus.audio(s,1);
~effektbusCYM = Bus.audio(s,1);
~effektbusHH = Bus.audio(s,1);
~effektbusPRC = Bus.audio(s,1);
~effektbusSD = Bus.audio(s,1);
~effektbusCLP = Bus.audio(s,1);
~effektbusTOM = Bus.audio(s,1);
~effektbusEFX = Bus.audio(s,1);
//ETNA
~abc1etna = Bus.audio(s,1);
~abc2etna = Bus.audio(s,1);
~abc3etna = Bus.audio(s,1);
~abc4etna = Bus.audio(s,1);
~abc5etna = Bus.audio(s,1);
~abc6etna = Bus.audio(s,1);
~effektbus1etna = Bus.audio(s,1);
~effektbus2etna = Bus.audio(s,1);
~effektbus3etna = Bus.audio(s,1);
~effektbus4etna = Bus.audio(s,1);
~effektbus5etna = Bus.audio(s,1);
~effektbus6etna = Bus.audio(s,1);
//MASIBO
folder = PathName.new(("z-SampleStorage/DRUMBACK/1BD/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumBD = ~drumBD.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/2CYM/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumCYM = ~drumCYM.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/3HH/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumHH = ~drumHH.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/4PRC/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumPRC = ~drumPRC.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/5SD/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumSD = ~drumSD.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/6CLP/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumCLP = ~drumCLP.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/7TOM/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumTOM = ~drumTOM.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/DRUMBACK/8EFX/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drumEFX = ~drumEFX.add(Buffer.read(s, path.fullPath));
});
/////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////
//CH1
folder = PathName.new(("z-SampleStorage/SamplesfFinalConcertNy/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~blls = ~blls.add(Buffer.read(s, path.fullPath));
});
//MAKE NOISE
folder = PathName.new(("z-SampleStorage/samplesformakenoise/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~makeNoise = ~makeNoise.add(Buffer.read(s, path.fullPath));
});
//ETNA
/*
Routine { 3.wait;
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_BD/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum1 = ~drum1.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_CYM/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum2 = ~drum2.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_HH/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum3 = ~drum3.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_Perc/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum4 = ~drum4.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_SD/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum5 = ~drum5.add(Buffer.read(s, path.fullPath));
});
folder = PathName.new(("z-SampleStorage/SA909_Samples/SA909_Tom/".resolveRelative).asAbsolutePath);
folder.entries.do({
arg path;
~drum6 = ~drum6.add(Buffer.read(s, path.fullPath));
});
}.play;*/
)