music-transcription 0.6.3 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/hip.yml +516 -0
- data/examples/make_hip.rb +63 -0
- data/examples/make_missed_connection.rb +65 -0
- data/examples/make_song1.rb +71 -0
- data/examples/make_song2.rb +58 -0
- data/examples/missed_connection.yml +305 -0
- data/examples/song1.yml +367 -0
- data/examples/song2.yml +236 -0
- data/lib/music-transcription/accent.rb +4 -15
- data/lib/music-transcription/accents.rb +12 -0
- data/lib/music-transcription/dynamic.rb +6 -15
- data/lib/music-transcription/meter.rb +15 -0
- data/lib/music-transcription/note.rb +28 -91
- data/lib/music-transcription/part.rb +9 -65
- data/lib/music-transcription/score.rb +14 -43
- data/lib/music-transcription/version.rb +1 -1
- data/lib/music-transcription.rb +2 -0
- data/spec/meter_spec.rb +25 -0
- data/spec/note_spec.rb +20 -33
- data/spec/part_spec.rb +13 -82
- data/spec/score_spec.rb +28 -16
- data/spec/spec_helper.rb +7 -2
- metadata +14 -20
- data/samples/arrangements/glissando_test.yml +0 -71
- data/samples/arrangements/hip.yml +0 -952
- data/samples/arrangements/instrument_test.yml +0 -119
- data/samples/arrangements/legato_test.yml +0 -237
- data/samples/arrangements/make_glissando_test.rb +0 -27
- data/samples/arrangements/make_hip.rb +0 -75
- data/samples/arrangements/make_instrument_test.rb +0 -34
- data/samples/arrangements/make_legato_test.rb +0 -37
- data/samples/arrangements/make_missed_connection.rb +0 -72
- data/samples/arrangements/make_portamento_test.rb +0 -27
- data/samples/arrangements/make_slur_test.rb +0 -37
- data/samples/arrangements/make_song1.rb +0 -84
- data/samples/arrangements/make_song2.rb +0 -69
- data/samples/arrangements/missed_connection.yml +0 -481
- data/samples/arrangements/portamento_test.yml +0 -71
- data/samples/arrangements/slur_test.yml +0 -237
- data/samples/arrangements/song1.yml +0 -640
- data/samples/arrangements/song2.yml +0 -429
@@ -1,84 +0,0 @@
|
|
1
|
-
require 'music-transcription'
|
2
|
-
require 'yaml'
|
3
|
-
|
4
|
-
include Music::Transcription
|
5
|
-
|
6
|
-
arrangement = Arrangement.new(
|
7
|
-
:score => TempoScore.new(
|
8
|
-
:program => Program.new(
|
9
|
-
:segments => [
|
10
|
-
0...4.0,
|
11
|
-
0...4.0
|
12
|
-
]
|
13
|
-
),
|
14
|
-
:tempo_profile => profile(tempo(120)),
|
15
|
-
:parts => {
|
16
|
-
1 => Part.new(
|
17
|
-
:notes => [
|
18
|
-
note(0.375, [interval(C2) ]),
|
19
|
-
note(0.25, [interval(Eb2) ]),
|
20
|
-
note(0.3125, [interval(F2) ]),
|
21
|
-
note(0.0625, [interval(Eb2) ]),
|
22
|
-
# 1.0
|
23
|
-
note(0.125),
|
24
|
-
note(0.25, [interval(C2) ]),
|
25
|
-
note(0.25, [interval(Eb2) ]),
|
26
|
-
note(0.375),
|
27
|
-
# 2.0
|
28
|
-
note(0.375, [interval(C2) ]),
|
29
|
-
note(0.25, [interval(Eb2) ]),
|
30
|
-
note(0.3125, [interval(F2) ]),
|
31
|
-
note(0.0625, [interval(Eb2) ]),
|
32
|
-
# 3.0
|
33
|
-
note(0.125),
|
34
|
-
note(0.25, [interval(C2) ]),
|
35
|
-
note(0.25, [interval(Eb2) ]),
|
36
|
-
]
|
37
|
-
),
|
38
|
-
2 => Part.new(
|
39
|
-
:notes => [
|
40
|
-
# 0.0
|
41
|
-
note(0.125),
|
42
|
-
note(0.125, [interval(Bb3) ]),
|
43
|
-
note(0.125, [interval(Bb3) ]),
|
44
|
-
note(0.125, [interval(Bb3) ]),
|
45
|
-
note(0.125, [interval(Bb3) ]),
|
46
|
-
note(0.25, [interval(C4) ]),
|
47
|
-
note(0.25, [interval(A3) ]),
|
48
|
-
note(0.125, [interval(G3) ]),
|
49
|
-
note(0.125, [interval(F3) ]),
|
50
|
-
note(0.3125, [interval(G3, slur(F3)) ]),
|
51
|
-
note(0.0625, [interval(F3, slur(E3)) ]),
|
52
|
-
note(0.125, [interval(E3) ]),
|
53
|
-
note(0.125),
|
54
|
-
# 2.0
|
55
|
-
note(0.125),
|
56
|
-
note(0.125, [interval(Bb3) ]),
|
57
|
-
note(0.125, [interval(Bb3) ]),
|
58
|
-
note(0.125, [interval(Bb3) ]),
|
59
|
-
note(0.125, [interval(Bb3) ]),
|
60
|
-
note(0.25, [interval(C4) ]),
|
61
|
-
note(0.125, [interval(A3) ]),
|
62
|
-
note(0.125, [interval(E4) ]),
|
63
|
-
note(0.125, [interval(E4, slur(D4)) ]),
|
64
|
-
note(0.125, [interval(D4, slur(C4)) ]),
|
65
|
-
note(0.125, [interval(C4) ]),
|
66
|
-
]
|
67
|
-
)
|
68
|
-
}
|
69
|
-
),
|
70
|
-
:instrument_configs => {
|
71
|
-
1 => InstrumentConfig.new(
|
72
|
-
:plugin_name => 'synth_instr_3',
|
73
|
-
:initial_settings => "blend"
|
74
|
-
),
|
75
|
-
2 => InstrumentConfig.new(
|
76
|
-
:plugin_name => 'synth_instr_3',
|
77
|
-
:initial_settings => "blend"
|
78
|
-
),
|
79
|
-
}
|
80
|
-
)
|
81
|
-
|
82
|
-
File.open("song1.yml", "w") do |file|
|
83
|
-
file.write arrangement.to_yaml
|
84
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
require 'music-transcription'
|
2
|
-
require 'yaml'
|
3
|
-
|
4
|
-
include Music::Transcription
|
5
|
-
|
6
|
-
arrangement = Arrangement.new(
|
7
|
-
:score => TempoScore.new(
|
8
|
-
:program => Program.new(
|
9
|
-
:segments => [0...4.0, 0...4.0 ]
|
10
|
-
),
|
11
|
-
:tempo_profile => profile(tempo(120)),
|
12
|
-
:parts => {
|
13
|
-
1 => Part.new(
|
14
|
-
:notes => [
|
15
|
-
note(1.0, [ interval(C4) ]),
|
16
|
-
note(1.0, [ interval(Bb3) ]),
|
17
|
-
note(1.0, [ interval(Ab3) ]),
|
18
|
-
note(0.5, [ interval(G3) ]),
|
19
|
-
note(0.5, [ interval(Bb3) ]),
|
20
|
-
]
|
21
|
-
),
|
22
|
-
2 => Part.new(
|
23
|
-
:notes => [
|
24
|
-
note(0.375, [ interval(E5) ]),
|
25
|
-
note(1.0, [ interval(D5)]),
|
26
|
-
note(1.0, [ interval(C5)]),
|
27
|
-
note(0.625, [ interval(C5)]),
|
28
|
-
note(0.5, [ interval(C5)]),
|
29
|
-
note(0.5, [ interval(D5)])
|
30
|
-
]
|
31
|
-
),
|
32
|
-
3 => Part.new(
|
33
|
-
:notes => [
|
34
|
-
note(0.125),
|
35
|
-
note(0.25, [interval(G5)] ),
|
36
|
-
note(0.5, [interval(F5)] ),
|
37
|
-
note(0.25),
|
38
|
-
note(0.25, [interval(F5)] ),
|
39
|
-
note(0.5, [interval(Eb5)] ),
|
40
|
-
note(0.25),
|
41
|
-
note(0.25, [interval(Eb5)] ),
|
42
|
-
note(0.5, [interval(Eb5)] ),
|
43
|
-
note(0.125),
|
44
|
-
note(0.5, [interval(Eb5)] ),
|
45
|
-
note(0.5, [interval(F5)] ),
|
46
|
-
]
|
47
|
-
)
|
48
|
-
}
|
49
|
-
),
|
50
|
-
:instrument_configs => {
|
51
|
-
1 => InstrumentConfig.new(
|
52
|
-
:plugin_name => 'synth_instr_3',
|
53
|
-
:initial_settings => "blend"
|
54
|
-
),
|
55
|
-
2 => InstrumentConfig.new(
|
56
|
-
:plugin_name => 'synth_instr_3',
|
57
|
-
:initial_settings => "blend"
|
58
|
-
),
|
59
|
-
3 => InstrumentConfig.new(
|
60
|
-
:plugin_name => 'synth_instr_3',
|
61
|
-
:initial_settings => "blend"
|
62
|
-
)
|
63
|
-
}
|
64
|
-
)
|
65
|
-
|
66
|
-
File.open("song2.yml", "w") do |file|
|
67
|
-
file.write arrangement.to_yaml
|
68
|
-
end
|
69
|
-
|
@@ -1,481 +0,0 @@
|
|
1
|
-
--- !ruby/object:Music::Transcription::Arrangement
|
2
|
-
score: !ruby/object:Music::Transcription::TempoScore
|
3
|
-
tempo_profile: !ruby/object:Music::Transcription::Profile
|
4
|
-
start_value: !ruby/object:Music::Transcription::Tempo
|
5
|
-
beats_per_minute: 120
|
6
|
-
beat_duration: !ruby/object:Rational
|
7
|
-
denominator: 4
|
8
|
-
numerator: 1
|
9
|
-
value_changes: {}
|
10
|
-
parts:
|
11
|
-
bass: !ruby/object:Music::Transcription::Part
|
12
|
-
offset: 0
|
13
|
-
loudness_profile: !ruby/object:Music::Transcription::Profile
|
14
|
-
start_value: 0.5
|
15
|
-
value_changes: {}
|
16
|
-
notes:
|
17
|
-
- !ruby/object:Music::Transcription::Note
|
18
|
-
duration: 0.25
|
19
|
-
intervals:
|
20
|
-
- !ruby/object:Music::Transcription::Interval
|
21
|
-
pitch: &21122960 !ruby/object:Music::Transcription::Pitch
|
22
|
-
cents_per_octave: 1200
|
23
|
-
octave: 2
|
24
|
-
semitone: 3
|
25
|
-
cent: 0
|
26
|
-
base_freq: 16.351597831287414
|
27
|
-
link: !ruby/object:Music::Transcription::Link
|
28
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
29
|
-
cents_per_octave: 1200
|
30
|
-
octave: 0
|
31
|
-
semitone: 0
|
32
|
-
cent: 0
|
33
|
-
base_freq: 16.351597831287414
|
34
|
-
relationship: :none
|
35
|
-
sustain: 0.5
|
36
|
-
attack: 0.5
|
37
|
-
separation: 0.5
|
38
|
-
- !ruby/object:Music::Transcription::Note
|
39
|
-
duration: 0.25
|
40
|
-
intervals: []
|
41
|
-
sustain: 0.5
|
42
|
-
attack: 0.5
|
43
|
-
separation: 0.5
|
44
|
-
- !ruby/object:Music::Transcription::Note
|
45
|
-
duration: 0.25
|
46
|
-
intervals:
|
47
|
-
- !ruby/object:Music::Transcription::Interval
|
48
|
-
pitch: &21119760 !ruby/object:Music::Transcription::Pitch
|
49
|
-
cents_per_octave: 1200
|
50
|
-
octave: 2
|
51
|
-
semitone: 10
|
52
|
-
cent: 0
|
53
|
-
base_freq: 16.351597831287414
|
54
|
-
link: !ruby/object:Music::Transcription::Link
|
55
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
56
|
-
cents_per_octave: 1200
|
57
|
-
octave: 0
|
58
|
-
semitone: 0
|
59
|
-
cent: 0
|
60
|
-
base_freq: 16.351597831287414
|
61
|
-
relationship: :none
|
62
|
-
sustain: 0.5
|
63
|
-
attack: 0.5
|
64
|
-
separation: 0.5
|
65
|
-
- !ruby/object:Music::Transcription::Note
|
66
|
-
duration: 0.25
|
67
|
-
intervals: []
|
68
|
-
sustain: 0.5
|
69
|
-
attack: 0.5
|
70
|
-
separation: 0.5
|
71
|
-
- !ruby/object:Music::Transcription::Note
|
72
|
-
duration: 0.25
|
73
|
-
intervals:
|
74
|
-
- !ruby/object:Music::Transcription::Interval
|
75
|
-
pitch: *21122960
|
76
|
-
link: !ruby/object:Music::Transcription::Link
|
77
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
78
|
-
cents_per_octave: 1200
|
79
|
-
octave: 0
|
80
|
-
semitone: 0
|
81
|
-
cent: 0
|
82
|
-
base_freq: 16.351597831287414
|
83
|
-
relationship: :none
|
84
|
-
sustain: 0.5
|
85
|
-
attack: 0.5
|
86
|
-
separation: 0.5
|
87
|
-
- !ruby/object:Music::Transcription::Note
|
88
|
-
duration: 0.125
|
89
|
-
intervals: []
|
90
|
-
sustain: 0.5
|
91
|
-
attack: 0.5
|
92
|
-
separation: 0.5
|
93
|
-
- !ruby/object:Music::Transcription::Note
|
94
|
-
duration: 0.125
|
95
|
-
intervals:
|
96
|
-
- !ruby/object:Music::Transcription::Interval
|
97
|
-
pitch: &21119280 !ruby/object:Music::Transcription::Pitch
|
98
|
-
cents_per_octave: 1200
|
99
|
-
octave: 2
|
100
|
-
semitone: 11
|
101
|
-
cent: 0
|
102
|
-
base_freq: 16.351597831287414
|
103
|
-
link: !ruby/object:Music::Transcription::Link
|
104
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
105
|
-
cents_per_octave: 1200
|
106
|
-
octave: 0
|
107
|
-
semitone: 0
|
108
|
-
cent: 0
|
109
|
-
base_freq: 16.351597831287414
|
110
|
-
relationship: :none
|
111
|
-
sustain: 0.5
|
112
|
-
attack: 0.5
|
113
|
-
separation: 0.5
|
114
|
-
- !ruby/object:Music::Transcription::Note
|
115
|
-
duration: 0.25
|
116
|
-
intervals:
|
117
|
-
- !ruby/object:Music::Transcription::Interval
|
118
|
-
pitch: *21119760
|
119
|
-
link: !ruby/object:Music::Transcription::Link
|
120
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
121
|
-
cents_per_octave: 1200
|
122
|
-
octave: 0
|
123
|
-
semitone: 0
|
124
|
-
cent: 0
|
125
|
-
base_freq: 16.351597831287414
|
126
|
-
relationship: :none
|
127
|
-
sustain: 0.5
|
128
|
-
attack: 0.5
|
129
|
-
separation: 0.5
|
130
|
-
- !ruby/object:Music::Transcription::Note
|
131
|
-
duration: 0.25
|
132
|
-
intervals:
|
133
|
-
- !ruby/object:Music::Transcription::Interval
|
134
|
-
pitch: &21120620 !ruby/object:Music::Transcription::Pitch
|
135
|
-
cents_per_octave: 1200
|
136
|
-
octave: 2
|
137
|
-
semitone: 8
|
138
|
-
cent: 0
|
139
|
-
base_freq: 16.351597831287414
|
140
|
-
link: !ruby/object:Music::Transcription::Link
|
141
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
142
|
-
cents_per_octave: 1200
|
143
|
-
octave: 0
|
144
|
-
semitone: 0
|
145
|
-
cent: 0
|
146
|
-
base_freq: 16.351597831287414
|
147
|
-
relationship: :none
|
148
|
-
sustain: 0.5
|
149
|
-
attack: 0.5
|
150
|
-
separation: 0.5
|
151
|
-
- !ruby/object:Music::Transcription::Note
|
152
|
-
duration: 0.25
|
153
|
-
intervals:
|
154
|
-
- !ruby/object:Music::Transcription::Interval
|
155
|
-
pitch: *21122960
|
156
|
-
link: !ruby/object:Music::Transcription::Link
|
157
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
158
|
-
cents_per_octave: 1200
|
159
|
-
octave: 0
|
160
|
-
semitone: 0
|
161
|
-
cent: 0
|
162
|
-
base_freq: 16.351597831287414
|
163
|
-
relationship: :none
|
164
|
-
sustain: 0.5
|
165
|
-
attack: 0.5
|
166
|
-
separation: 0.5
|
167
|
-
- !ruby/object:Music::Transcription::Note
|
168
|
-
duration: 0.25
|
169
|
-
intervals: []
|
170
|
-
sustain: 0.5
|
171
|
-
attack: 0.5
|
172
|
-
separation: 0.5
|
173
|
-
- !ruby/object:Music::Transcription::Note
|
174
|
-
duration: 0.25
|
175
|
-
intervals:
|
176
|
-
- !ruby/object:Music::Transcription::Interval
|
177
|
-
pitch: *21119760
|
178
|
-
link: !ruby/object:Music::Transcription::Link
|
179
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
180
|
-
cents_per_octave: 1200
|
181
|
-
octave: 0
|
182
|
-
semitone: 0
|
183
|
-
cent: 0
|
184
|
-
base_freq: 16.351597831287414
|
185
|
-
relationship: :none
|
186
|
-
sustain: 0.5
|
187
|
-
attack: 0.5
|
188
|
-
separation: 0.5
|
189
|
-
- !ruby/object:Music::Transcription::Note
|
190
|
-
duration: 0.25
|
191
|
-
intervals: []
|
192
|
-
sustain: 0.5
|
193
|
-
attack: 0.5
|
194
|
-
separation: 0.5
|
195
|
-
- !ruby/object:Music::Transcription::Note
|
196
|
-
duration: 0.25
|
197
|
-
intervals:
|
198
|
-
- !ruby/object:Music::Transcription::Interval
|
199
|
-
pitch: *21122960
|
200
|
-
link: !ruby/object:Music::Transcription::Link
|
201
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
202
|
-
cents_per_octave: 1200
|
203
|
-
octave: 0
|
204
|
-
semitone: 0
|
205
|
-
cent: 0
|
206
|
-
base_freq: 16.351597831287414
|
207
|
-
relationship: :none
|
208
|
-
sustain: 0.5
|
209
|
-
attack: 0.5
|
210
|
-
separation: 0.5
|
211
|
-
- !ruby/object:Music::Transcription::Note
|
212
|
-
duration: 0.125
|
213
|
-
intervals: []
|
214
|
-
sustain: 0.5
|
215
|
-
attack: 0.5
|
216
|
-
separation: 0.5
|
217
|
-
- !ruby/object:Music::Transcription::Note
|
218
|
-
duration: 0.125
|
219
|
-
intervals:
|
220
|
-
- !ruby/object:Music::Transcription::Interval
|
221
|
-
pitch: *21119280
|
222
|
-
link: !ruby/object:Music::Transcription::Link
|
223
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
224
|
-
cents_per_octave: 1200
|
225
|
-
octave: 0
|
226
|
-
semitone: 0
|
227
|
-
cent: 0
|
228
|
-
base_freq: 16.351597831287414
|
229
|
-
relationship: :none
|
230
|
-
sustain: 0.5
|
231
|
-
attack: 0.5
|
232
|
-
separation: 0.5
|
233
|
-
- !ruby/object:Music::Transcription::Note
|
234
|
-
duration: 0.25
|
235
|
-
intervals:
|
236
|
-
- !ruby/object:Music::Transcription::Interval
|
237
|
-
pitch: *21119760
|
238
|
-
link: !ruby/object:Music::Transcription::Link
|
239
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
240
|
-
cents_per_octave: 1200
|
241
|
-
octave: 0
|
242
|
-
semitone: 0
|
243
|
-
cent: 0
|
244
|
-
base_freq: 16.351597831287414
|
245
|
-
relationship: :none
|
246
|
-
sustain: 0.5
|
247
|
-
attack: 0.5
|
248
|
-
separation: 0.5
|
249
|
-
- !ruby/object:Music::Transcription::Note
|
250
|
-
duration: 0.25
|
251
|
-
intervals:
|
252
|
-
- !ruby/object:Music::Transcription::Interval
|
253
|
-
pitch: *21120620
|
254
|
-
link: !ruby/object:Music::Transcription::Link
|
255
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
256
|
-
cents_per_octave: 1200
|
257
|
-
octave: 0
|
258
|
-
semitone: 0
|
259
|
-
cent: 0
|
260
|
-
base_freq: 16.351597831287414
|
261
|
-
relationship: :none
|
262
|
-
sustain: 0.5
|
263
|
-
attack: 0.5
|
264
|
-
separation: 0.5
|
265
|
-
- !ruby/object:Music::Transcription::Note
|
266
|
-
duration: 0.25
|
267
|
-
intervals:
|
268
|
-
- !ruby/object:Music::Transcription::Interval
|
269
|
-
pitch: *21119760
|
270
|
-
link: !ruby/object:Music::Transcription::Link
|
271
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
272
|
-
cents_per_octave: 1200
|
273
|
-
octave: 0
|
274
|
-
semitone: 0
|
275
|
-
cent: 0
|
276
|
-
base_freq: 16.351597831287414
|
277
|
-
relationship: :none
|
278
|
-
sustain: 0.5
|
279
|
-
attack: 0.5
|
280
|
-
separation: 0.5
|
281
|
-
- !ruby/object:Music::Transcription::Note
|
282
|
-
duration: 0.125
|
283
|
-
intervals: []
|
284
|
-
sustain: 0.5
|
285
|
-
attack: 0.5
|
286
|
-
separation: 0.5
|
287
|
-
- !ruby/object:Music::Transcription::Note
|
288
|
-
duration: 0.125
|
289
|
-
intervals:
|
290
|
-
- !ruby/object:Music::Transcription::Interval
|
291
|
-
pitch: &21116120 !ruby/object:Music::Transcription::Pitch
|
292
|
-
cents_per_octave: 1200
|
293
|
-
octave: 3
|
294
|
-
semitone: 5
|
295
|
-
cent: 0
|
296
|
-
base_freq: 16.351597831287414
|
297
|
-
link: !ruby/object:Music::Transcription::Link
|
298
|
-
target_pitch: *21116120
|
299
|
-
relationship: :tie
|
300
|
-
sustain: 0.5
|
301
|
-
attack: 0.5
|
302
|
-
separation: 0.5
|
303
|
-
- !ruby/object:Music::Transcription::Note
|
304
|
-
duration: 0.5
|
305
|
-
intervals:
|
306
|
-
- !ruby/object:Music::Transcription::Interval
|
307
|
-
pitch: *21116120
|
308
|
-
link: !ruby/object:Music::Transcription::Link
|
309
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
310
|
-
cents_per_octave: 1200
|
311
|
-
octave: 0
|
312
|
-
semitone: 0
|
313
|
-
cent: 0
|
314
|
-
base_freq: 16.351597831287414
|
315
|
-
relationship: :none
|
316
|
-
sustain: 0.5
|
317
|
-
attack: 0.5
|
318
|
-
separation: 0.5
|
319
|
-
- !ruby/object:Music::Transcription::Note
|
320
|
-
duration: 0.25
|
321
|
-
intervals:
|
322
|
-
- !ruby/object:Music::Transcription::Interval
|
323
|
-
pitch: *21119760
|
324
|
-
link: !ruby/object:Music::Transcription::Link
|
325
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
326
|
-
cents_per_octave: 1200
|
327
|
-
octave: 0
|
328
|
-
semitone: 0
|
329
|
-
cent: 0
|
330
|
-
base_freq: 16.351597831287414
|
331
|
-
relationship: :none
|
332
|
-
sustain: 0.5
|
333
|
-
attack: 0.5
|
334
|
-
separation: 0.5
|
335
|
-
- !ruby/object:Music::Transcription::Note
|
336
|
-
duration: 0.125
|
337
|
-
intervals: []
|
338
|
-
sustain: 0.5
|
339
|
-
attack: 0.5
|
340
|
-
separation: 0.5
|
341
|
-
- !ruby/object:Music::Transcription::Note
|
342
|
-
duration: 0.125
|
343
|
-
intervals:
|
344
|
-
- !ruby/object:Music::Transcription::Interval
|
345
|
-
pitch: *21116120
|
346
|
-
link: !ruby/object:Music::Transcription::Link
|
347
|
-
target_pitch: *21116120
|
348
|
-
relationship: :tie
|
349
|
-
sustain: 0.5
|
350
|
-
attack: 0.5
|
351
|
-
separation: 0.5
|
352
|
-
- !ruby/object:Music::Transcription::Note
|
353
|
-
duration: 0.5
|
354
|
-
intervals:
|
355
|
-
- !ruby/object:Music::Transcription::Interval
|
356
|
-
pitch: *21116120
|
357
|
-
link: !ruby/object:Music::Transcription::Link
|
358
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
359
|
-
cents_per_octave: 1200
|
360
|
-
octave: 0
|
361
|
-
semitone: 0
|
362
|
-
cent: 0
|
363
|
-
base_freq: 16.351597831287414
|
364
|
-
relationship: :none
|
365
|
-
sustain: 0.5
|
366
|
-
attack: 0.5
|
367
|
-
separation: 0.5
|
368
|
-
- !ruby/object:Music::Transcription::Note
|
369
|
-
duration: 0.25
|
370
|
-
intervals:
|
371
|
-
- !ruby/object:Music::Transcription::Interval
|
372
|
-
pitch: *21119280
|
373
|
-
link: !ruby/object:Music::Transcription::Link
|
374
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
375
|
-
cents_per_octave: 1200
|
376
|
-
octave: 0
|
377
|
-
semitone: 0
|
378
|
-
cent: 0
|
379
|
-
base_freq: 16.351597831287414
|
380
|
-
relationship: :none
|
381
|
-
sustain: 0.5
|
382
|
-
attack: 0.5
|
383
|
-
separation: 0.5
|
384
|
-
- !ruby/object:Music::Transcription::Note
|
385
|
-
duration: 0.125
|
386
|
-
intervals: []
|
387
|
-
sustain: 0.5
|
388
|
-
attack: 0.5
|
389
|
-
separation: 0.5
|
390
|
-
- !ruby/object:Music::Transcription::Note
|
391
|
-
duration: 0.125
|
392
|
-
intervals:
|
393
|
-
- !ruby/object:Music::Transcription::Interval
|
394
|
-
pitch: &21115700 !ruby/object:Music::Transcription::Pitch
|
395
|
-
cents_per_octave: 1200
|
396
|
-
octave: 3
|
397
|
-
semitone: 6
|
398
|
-
cent: 0
|
399
|
-
base_freq: 16.351597831287414
|
400
|
-
link: !ruby/object:Music::Transcription::Link
|
401
|
-
target_pitch: *21115700
|
402
|
-
relationship: :tie
|
403
|
-
sustain: 0.5
|
404
|
-
attack: 0.5
|
405
|
-
separation: 0.5
|
406
|
-
- !ruby/object:Music::Transcription::Note
|
407
|
-
duration: 0.5
|
408
|
-
intervals:
|
409
|
-
- !ruby/object:Music::Transcription::Interval
|
410
|
-
pitch: *21115700
|
411
|
-
link: !ruby/object:Music::Transcription::Link
|
412
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
413
|
-
cents_per_octave: 1200
|
414
|
-
octave: 0
|
415
|
-
semitone: 0
|
416
|
-
cent: 0
|
417
|
-
base_freq: 16.351597831287414
|
418
|
-
relationship: :none
|
419
|
-
sustain: 0.5
|
420
|
-
attack: 0.5
|
421
|
-
separation: 0.5
|
422
|
-
- !ruby/object:Music::Transcription::Note
|
423
|
-
duration: 0.25
|
424
|
-
intervals:
|
425
|
-
- !ruby/object:Music::Transcription::Interval
|
426
|
-
pitch: *21119280
|
427
|
-
link: !ruby/object:Music::Transcription::Link
|
428
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
429
|
-
cents_per_octave: 1200
|
430
|
-
octave: 0
|
431
|
-
semitone: 0
|
432
|
-
cent: 0
|
433
|
-
base_freq: 16.351597831287414
|
434
|
-
relationship: :none
|
435
|
-
sustain: 0.5
|
436
|
-
attack: 0.5
|
437
|
-
separation: 0.5
|
438
|
-
- !ruby/object:Music::Transcription::Note
|
439
|
-
duration: 0.125
|
440
|
-
intervals: []
|
441
|
-
sustain: 0.5
|
442
|
-
attack: 0.5
|
443
|
-
separation: 0.5
|
444
|
-
- !ruby/object:Music::Transcription::Note
|
445
|
-
duration: 0.125
|
446
|
-
intervals:
|
447
|
-
- !ruby/object:Music::Transcription::Interval
|
448
|
-
pitch: *21115700
|
449
|
-
link: !ruby/object:Music::Transcription::Link
|
450
|
-
target_pitch: *21115700
|
451
|
-
relationship: :tie
|
452
|
-
sustain: 0.5
|
453
|
-
attack: 0.5
|
454
|
-
separation: 0.5
|
455
|
-
- !ruby/object:Music::Transcription::Note
|
456
|
-
duration: 0.5
|
457
|
-
intervals:
|
458
|
-
- !ruby/object:Music::Transcription::Interval
|
459
|
-
pitch: *21115700
|
460
|
-
link: !ruby/object:Music::Transcription::Link
|
461
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
462
|
-
cents_per_octave: 1200
|
463
|
-
octave: 0
|
464
|
-
semitone: 0
|
465
|
-
cent: 0
|
466
|
-
base_freq: 16.351597831287414
|
467
|
-
relationship: :none
|
468
|
-
sustain: 0.5
|
469
|
-
attack: 0.5
|
470
|
-
separation: 0.5
|
471
|
-
program: !ruby/object:Music::Transcription::Program
|
472
|
-
segments:
|
473
|
-
- !ruby/range
|
474
|
-
begin: 0
|
475
|
-
end: 8.0
|
476
|
-
excl: true
|
477
|
-
instrument_configs:
|
478
|
-
bass: !ruby/object:Music::Transcription::InstrumentConfig
|
479
|
-
plugin_name: synth_instr_3
|
480
|
-
initial_settings: blend
|
481
|
-
setting_changes: {}
|
@@ -1,71 +0,0 @@
|
|
1
|
-
--- !ruby/object:Music::Transcription::Arrangement
|
2
|
-
score: !ruby/object:Music::Transcription::TempoScore
|
3
|
-
tempo_profile: !ruby/object:Music::Transcription::Profile
|
4
|
-
start_value: !ruby/object:Music::Transcription::Tempo
|
5
|
-
beats_per_minute: 120
|
6
|
-
beat_duration: !ruby/object:Rational
|
7
|
-
denominator: 4
|
8
|
-
numerator: 1
|
9
|
-
value_changes: {}
|
10
|
-
parts:
|
11
|
-
1: !ruby/object:Music::Transcription::Part
|
12
|
-
offset: 0
|
13
|
-
loudness_profile: !ruby/object:Music::Transcription::Profile
|
14
|
-
start_value: 0.5
|
15
|
-
value_changes: {}
|
16
|
-
notes:
|
17
|
-
- !ruby/object:Music::Transcription::Note
|
18
|
-
duration: 0.75
|
19
|
-
intervals:
|
20
|
-
- !ruby/object:Music::Transcription::Interval
|
21
|
-
pitch: &11337600 !ruby/object:Music::Transcription::Pitch
|
22
|
-
cents_per_octave: 1200
|
23
|
-
octave: 3
|
24
|
-
semitone: 0
|
25
|
-
cent: 0
|
26
|
-
base_freq: 16.351597831287414
|
27
|
-
link: !ruby/object:Music::Transcription::Link
|
28
|
-
target_pitch: &11335360 !ruby/object:Music::Transcription::Pitch
|
29
|
-
cents_per_octave: 1200
|
30
|
-
octave: 3
|
31
|
-
semitone: 5
|
32
|
-
cent: 0
|
33
|
-
base_freq: 16.351597831287414
|
34
|
-
relationship: :portamento
|
35
|
-
sustain: 0.5
|
36
|
-
attack: 0.5
|
37
|
-
separation: 0.5
|
38
|
-
- !ruby/object:Music::Transcription::Note
|
39
|
-
duration: 0.75
|
40
|
-
intervals:
|
41
|
-
- !ruby/object:Music::Transcription::Interval
|
42
|
-
pitch: *11335360
|
43
|
-
link: !ruby/object:Music::Transcription::Link
|
44
|
-
target_pitch: *11337600
|
45
|
-
relationship: :portamento
|
46
|
-
sustain: 0.5
|
47
|
-
attack: 0.5
|
48
|
-
separation: 0.5
|
49
|
-
- !ruby/object:Music::Transcription::Note
|
50
|
-
duration: 0.5
|
51
|
-
intervals:
|
52
|
-
- !ruby/object:Music::Transcription::Interval
|
53
|
-
pitch: *11337600
|
54
|
-
link: !ruby/object:Music::Transcription::Link
|
55
|
-
target_pitch: !ruby/object:Music::Transcription::Pitch
|
56
|
-
cents_per_octave: 1200
|
57
|
-
octave: 0
|
58
|
-
semitone: 0
|
59
|
-
cent: 0
|
60
|
-
base_freq: 16.351597831287414
|
61
|
-
relationship: :none
|
62
|
-
sustain: 0.5
|
63
|
-
attack: 0.5
|
64
|
-
separation: 0.5
|
65
|
-
program: !ruby/object:Music::Transcription::Program
|
66
|
-
segments:
|
67
|
-
- !ruby/range
|
68
|
-
begin: 0
|
69
|
-
end: 4.0
|
70
|
-
excl: true
|
71
|
-
instrument_configs: {}
|