Skip to content

Commit d7b381b

Browse files
committed
knight wider
1 parent d18eba4 commit d7b381b

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ recordings of the code:
2626
8. "Zero-sum Fame"
2727
https://audius.co/streamerd_/zero-sum-fame
2828

29+
9. "Knight Wider"
30+
https://audius.co/streamerd_/knight-wider
2931
so far, all made with sonic-pi synthesizer:
3032

3133
https://sonic-pi.net

knight_wider.rb

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+

0 commit comments

Comments
 (0)