-
Notifications
You must be signed in to change notification settings - Fork 5
/
d-major-scale.rb
50 lines (39 loc) · 1.09 KB
/
d-major-scale.rb
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
require 'bundler'
Bundler.require
twelth_root_of_two = (2 ** (1.0/12))
current = 220.0
note_frequencies = [current]
12.times do
current *= twelth_root_of_two
note_frequencies.push current
end
T = 2
S = 1
scale_pattern = [T, T, S, T, T, T, S]
scale_note_frequencies = [note_frequencies.first]
current = 0
scale_pattern.each do |interval|
current += interval
scale_note_frequencies.push note_frequencies[current]
end
sample_rate = 22050 # frames per second
note_duration = 0.5 # seconds
frames_per_note = (sample_rate * note_duration).to_i
samples = []
scale_note_frequencies.each do |frequency|
cycles_per_frame = frequency / sample_rate
increment = 2 * Math::PI * cycles_per_frame
phase = 0
frames_per_note.times.map do
samples << Math.sin(phase)
phase += increment
end
end
filename = 'd.wav'
format = WaveFile::Format.new :mono, :pcm_16, sample_rate
buffer_format = WaveFile::Format.new :mono, :float, sample_rate
WaveFile::Writer.new filename, format do |writer|
buffer = WaveFile::Buffer.new samples, buffer_format
writer.write buffer
end
`afplay d.wav`