-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOasis - Wonderwall.rb
More file actions
49 lines (44 loc) · 1.72 KB
/
Copy pathOasis - Wonderwall.rb
File metadata and controls
49 lines (44 loc) · 1.72 KB
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
# Wonderwall - Oasis
# uses play_helper, guitar and lyric helpers
use_debug false
use_bpm 68
with_fx :reverb, room: 0.9 do
at 16 do
use_synth :fm
use_synth_defaults attack: 0.05, slide: 0.025, depth: 1.5
with_fx :distortion, amp: 0.5 do
lyrics "Today is gonna be the day that they're"
pl [:r, 0.5, :B4, 0.5, :A4, 0.75, :G4, 0.25, [:A4, :G4], [0.25, 0.25], :A4, 0.25, :G4, 0.25, :A4, 0.5, :A4, 0.25, :G4, 0.25]
lyrics "gonna throw it back to you."
pl [[:A4, :G4], [0.25, 0.25], :A4, 0.25, :G4, 0.25, :A4, 0.5, :B4, 0.25, :G4, 1.25, :r, 1]
lyrics "By now you should've some how"
pl [:r, 0.5, :B4, 0.5, :A4, 0.75, :G4, 0.25, :A4, 0.25, :G4, 0.25, :A4, 0.5, :A4, 0.5]
lyrics "realised what you gotta do."
pl [[:A4, :G4], [0.25, 0.25], :A4, 0.5, :A4, 0.25, :G4, 0.25, [:A4, :B4], [0.5, 0.25], :G4, 1.5, :r, 1]
lyrics "I don't believe that anybody"
pl [:B4, 0.25, :D5, 0.25, [:B4, :D5], [0.25, 0.75], :D5, 0.25, :E5, 0.75, :D5, 0.25, :A4, 0.5, :G4, 0.75]
lyrics "feels the way I do"
pl [:A4, 0.75, :A4, 0.25, [:A4, :B4], [0.25, 0.5], :G4, 1]
lyrics "about you now"
pl [:E4, 0.25, :E4, 0.5, :E4, 0.25, [:G4, :E4], [0.5, 1.75], :r, 5.5]
end
end
use_synth :pluck
use_synth_defaults coef: 0.35
with_fx :lpf, cutoff: 110 do
em7 = [40, 47, 52, 55, 62, 67]
g = [43, 47, 50, 55, 62, 67]
dsus4 = [:r, :r, 50, 57, 62, 67]
a7sus4= [:r, 45, 52, 55, 62, 67]
5.times do
strum em7, 'D.d.D.dU'
strum g, 'dUD.D.du'
strum dsus4, 'DUD.D.d'
strum a7sus4, 'U.U.uduDu'
end
strum em7, 'D.d.D.dU'
strum g, 'dUD.D.du'
strum dsus4, 'DUD.D.d'
strum a7sus4, 'U.U.uduD.'
end
end