File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ recordings of the code:
26
26
8 . "Zero-sum Fame"
27
27
https://audius.co/streamerd_/zero-sum-fame
28
28
29
+ 9 . "Knight Wider"
30
+ https://audius.co/streamerd_/knight-wider
29
31
so far, all made with sonic-pi synthesizer:
30
32
31
33
https://sonic-pi.net
Original file line number Diff line number Diff line change
1
+ techno = "/Users/streamerd/devel/musicode/techno"
2
+
3
+ live_loop :tr do
4
+ sample :bass_trance_c , amp : 2.4
5
+ sleep 2
6
+ end
7
+
8
+ live_loop :kick do
9
+ sleep 0.2
10
+ sync :tr
11
+
12
+ 3 . times do
13
+ sample :drum_heavy_kick , rate : 2
14
+ end
15
+
16
+
17
+
18
+ 3 . times do
19
+ sleep 1
20
+ sample techno , "hard-techno-kick" , amp : 4
21
+ end
22
+
23
+ end
24
+
25
+
26
+ live_loop :b do
27
+ sync :tr
28
+ use_synth :mod_fm
29
+
30
+ play 66 , amp : 1
31
+ sleep 2
32
+ play 72 , amp : 0.8
33
+ sleep 2
34
+ play 80 , amp : 0.2
35
+ end
36
+
37
+ live_loop :c do
38
+ use_synth :mod_fm
39
+ sync :b
40
+ sleep 0.5
41
+ play 50 , amp : 1
42
+ sleep 1
43
+ play 54 , amp : 2
44
+ sleep 0.5
45
+ play 56 , amp : 0.6
46
+
47
+ end
48
+
49
+ live_loop :d do
50
+ sleep 4
51
+ use_synth :kalimba
52
+ sync :c
53
+
54
+ sample :drum_bass_hard , amp : 4
55
+ sleep 0.4
56
+ sample :drum_bass_hard , amp : 4
57
+ sleep 0.6
58
+ sample :drum_bass_hard , amp : 3.6
59
+
60
+ sample :drum_bass_hard , amp : 4
61
+ sleep 1
62
+ sample :drum_bass_hard , amp : 4
63
+
64
+ end
65
+
66
+
You can’t perform that action at this time.
0 commit comments