music-transcription 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +3 -0
- data/.gitignore +7 -0
- data/.rspec +1 -0
- data/.yardopts +1 -0
- data/ChangeLog.rdoc +4 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +28 -0
- data/Rakefile +54 -0
- data/bin/transcribe +176 -0
- data/lib/music-transcription.rb +20 -0
- data/lib/music-transcription/arrangement.rb +31 -0
- data/lib/music-transcription/instrument_config.rb +38 -0
- data/lib/music-transcription/interval.rb +66 -0
- data/lib/music-transcription/link.rb +115 -0
- data/lib/music-transcription/note.rb +156 -0
- data/lib/music-transcription/part.rb +128 -0
- data/lib/music-transcription/pitch.rb +297 -0
- data/lib/music-transcription/pitch_constants.rb +204 -0
- data/lib/music-transcription/profile.rb +105 -0
- data/lib/music-transcription/program.rb +136 -0
- data/lib/music-transcription/score.rb +122 -0
- data/lib/music-transcription/tempo.rb +44 -0
- data/lib/music-transcription/transition.rb +71 -0
- data/lib/music-transcription/value_change.rb +85 -0
- data/lib/music-transcription/version.rb +7 -0
- data/music-transcription.gemspec +36 -0
- data/samples/arrangements/glissando_test.yml +71 -0
- data/samples/arrangements/hip.yml +952 -0
- data/samples/arrangements/instrument_test.yml +119 -0
- data/samples/arrangements/legato_test.yml +237 -0
- data/samples/arrangements/make_glissando_test.rb +27 -0
- data/samples/arrangements/make_hip.rb +75 -0
- data/samples/arrangements/make_instrument_test.rb +34 -0
- data/samples/arrangements/make_legato_test.rb +37 -0
- data/samples/arrangements/make_missed_connection.rb +72 -0
- data/samples/arrangements/make_portamento_test.rb +27 -0
- data/samples/arrangements/make_slur_test.rb +37 -0
- data/samples/arrangements/make_song1.rb +84 -0
- data/samples/arrangements/make_song2.rb +69 -0
- data/samples/arrangements/missed_connection.yml +481 -0
- data/samples/arrangements/portamento_test.yml +71 -0
- data/samples/arrangements/slur_test.yml +237 -0
- data/samples/arrangements/song1.yml +640 -0
- data/samples/arrangements/song2.yml +429 -0
- data/spec/instrument_config_spec.rb +47 -0
- data/spec/interval_spec.rb +38 -0
- data/spec/link_spec.rb +22 -0
- data/spec/musicality_spec.rb +7 -0
- data/spec/note_spec.rb +65 -0
- data/spec/part_spec.rb +87 -0
- data/spec/pitch_spec.rb +139 -0
- data/spec/profile_spec.rb +24 -0
- data/spec/program_spec.rb +55 -0
- data/spec/score_spec.rb +55 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/transition_spec.rb +13 -0
- data/spec/value_change_spec.rb +19 -0
- metadata +239 -0
@@ -0,0 +1,71 @@
|
|
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: {}
|
@@ -0,0 +1,237 @@
|
|
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.25
|
19
|
+
intervals:
|
20
|
+
- !ruby/object:Music::Transcription::Interval
|
21
|
+
pitch: &20566040 !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: !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
|
+
- !ruby/object:Music::Transcription::Interval
|
42
|
+
pitch: &20564940 !ruby/object:Music::Transcription::Pitch
|
43
|
+
cents_per_octave: 1200
|
44
|
+
octave: 3
|
45
|
+
semitone: 2
|
46
|
+
cent: 0
|
47
|
+
base_freq: 16.351597831287414
|
48
|
+
link: !ruby/object:Music::Transcription::Link
|
49
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
50
|
+
cents_per_octave: 1200
|
51
|
+
octave: 0
|
52
|
+
semitone: 0
|
53
|
+
cent: 0
|
54
|
+
base_freq: 16.351597831287414
|
55
|
+
relationship: :none
|
56
|
+
sustain: 0.5
|
57
|
+
attack: 0.5
|
58
|
+
separation: 0.5
|
59
|
+
- !ruby/object:Music::Transcription::Note
|
60
|
+
duration: 0.25
|
61
|
+
intervals:
|
62
|
+
- !ruby/object:Music::Transcription::Interval
|
63
|
+
pitch: &20564040 !ruby/object:Music::Transcription::Pitch
|
64
|
+
cents_per_octave: 1200
|
65
|
+
octave: 3
|
66
|
+
semitone: 4
|
67
|
+
cent: 0
|
68
|
+
base_freq: 16.351597831287414
|
69
|
+
link: !ruby/object:Music::Transcription::Link
|
70
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
71
|
+
cents_per_octave: 1200
|
72
|
+
octave: 0
|
73
|
+
semitone: 0
|
74
|
+
cent: 0
|
75
|
+
base_freq: 16.351597831287414
|
76
|
+
relationship: :none
|
77
|
+
sustain: 0.5
|
78
|
+
attack: 0.5
|
79
|
+
separation: 0.5
|
80
|
+
- !ruby/object:Music::Transcription::Note
|
81
|
+
duration: 0.25
|
82
|
+
intervals:
|
83
|
+
- !ruby/object:Music::Transcription::Interval
|
84
|
+
pitch: &20563520 !ruby/object:Music::Transcription::Pitch
|
85
|
+
cents_per_octave: 1200
|
86
|
+
octave: 3
|
87
|
+
semitone: 5
|
88
|
+
cent: 0
|
89
|
+
base_freq: 16.351597831287414
|
90
|
+
link: !ruby/object:Music::Transcription::Link
|
91
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
92
|
+
cents_per_octave: 1200
|
93
|
+
octave: 0
|
94
|
+
semitone: 0
|
95
|
+
cent: 0
|
96
|
+
base_freq: 16.351597831287414
|
97
|
+
relationship: :none
|
98
|
+
sustain: 0.5
|
99
|
+
attack: 0.5
|
100
|
+
separation: 0.5
|
101
|
+
- !ruby/object:Music::Transcription::Note
|
102
|
+
duration: 0.25
|
103
|
+
intervals:
|
104
|
+
- !ruby/object:Music::Transcription::Interval
|
105
|
+
pitch: *20564040
|
106
|
+
link: !ruby/object:Music::Transcription::Link
|
107
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
108
|
+
cents_per_octave: 1200
|
109
|
+
octave: 0
|
110
|
+
semitone: 0
|
111
|
+
cent: 0
|
112
|
+
base_freq: 16.351597831287414
|
113
|
+
relationship: :none
|
114
|
+
sustain: 0.5
|
115
|
+
attack: 0.5
|
116
|
+
separation: 0.5
|
117
|
+
- !ruby/object:Music::Transcription::Note
|
118
|
+
duration: 0.25
|
119
|
+
intervals:
|
120
|
+
- !ruby/object:Music::Transcription::Interval
|
121
|
+
pitch: *20564940
|
122
|
+
link: !ruby/object:Music::Transcription::Link
|
123
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
124
|
+
cents_per_octave: 1200
|
125
|
+
octave: 0
|
126
|
+
semitone: 0
|
127
|
+
cent: 0
|
128
|
+
base_freq: 16.351597831287414
|
129
|
+
relationship: :none
|
130
|
+
sustain: 0.5
|
131
|
+
attack: 0.5
|
132
|
+
separation: 0.5
|
133
|
+
- !ruby/object:Music::Transcription::Note
|
134
|
+
duration: 0.5
|
135
|
+
intervals:
|
136
|
+
- !ruby/object:Music::Transcription::Interval
|
137
|
+
pitch: *20566040
|
138
|
+
link: !ruby/object:Music::Transcription::Link
|
139
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
140
|
+
cents_per_octave: 1200
|
141
|
+
octave: 0
|
142
|
+
semitone: 0
|
143
|
+
cent: 0
|
144
|
+
base_freq: 16.351597831287414
|
145
|
+
relationship: :none
|
146
|
+
sustain: 0.5
|
147
|
+
attack: 0.5
|
148
|
+
separation: 0.5
|
149
|
+
- !ruby/object:Music::Transcription::Note
|
150
|
+
duration: 0.25
|
151
|
+
intervals:
|
152
|
+
- !ruby/object:Music::Transcription::Interval
|
153
|
+
pitch: *20566040
|
154
|
+
link: !ruby/object:Music::Transcription::Link
|
155
|
+
target_pitch: *20564940
|
156
|
+
relationship: :slur
|
157
|
+
sustain: 0.5
|
158
|
+
attack: 0.5
|
159
|
+
separation: 0.5
|
160
|
+
- !ruby/object:Music::Transcription::Note
|
161
|
+
duration: 0.25
|
162
|
+
intervals:
|
163
|
+
- !ruby/object:Music::Transcription::Interval
|
164
|
+
pitch: *20564940
|
165
|
+
link: !ruby/object:Music::Transcription::Link
|
166
|
+
target_pitch: *20564040
|
167
|
+
relationship: :slur
|
168
|
+
sustain: 0.5
|
169
|
+
attack: 0.5
|
170
|
+
separation: 0.5
|
171
|
+
- !ruby/object:Music::Transcription::Note
|
172
|
+
duration: 0.25
|
173
|
+
intervals:
|
174
|
+
- !ruby/object:Music::Transcription::Interval
|
175
|
+
pitch: *20564040
|
176
|
+
link: !ruby/object:Music::Transcription::Link
|
177
|
+
target_pitch: *20563520
|
178
|
+
relationship: :slur
|
179
|
+
sustain: 0.5
|
180
|
+
attack: 0.5
|
181
|
+
separation: 0.5
|
182
|
+
- !ruby/object:Music::Transcription::Note
|
183
|
+
duration: 0.25
|
184
|
+
intervals:
|
185
|
+
- !ruby/object:Music::Transcription::Interval
|
186
|
+
pitch: *20563520
|
187
|
+
link: !ruby/object:Music::Transcription::Link
|
188
|
+
target_pitch: *20564040
|
189
|
+
relationship: :slur
|
190
|
+
sustain: 0.5
|
191
|
+
attack: 0.5
|
192
|
+
separation: 0.5
|
193
|
+
- !ruby/object:Music::Transcription::Note
|
194
|
+
duration: 0.25
|
195
|
+
intervals:
|
196
|
+
- !ruby/object:Music::Transcription::Interval
|
197
|
+
pitch: *20564040
|
198
|
+
link: !ruby/object:Music::Transcription::Link
|
199
|
+
target_pitch: *20564940
|
200
|
+
relationship: :slur
|
201
|
+
sustain: 0.5
|
202
|
+
attack: 0.5
|
203
|
+
separation: 0.5
|
204
|
+
- !ruby/object:Music::Transcription::Note
|
205
|
+
duration: 0.25
|
206
|
+
intervals:
|
207
|
+
- !ruby/object:Music::Transcription::Interval
|
208
|
+
pitch: *20564940
|
209
|
+
link: !ruby/object:Music::Transcription::Link
|
210
|
+
target_pitch: *20566040
|
211
|
+
relationship: :slur
|
212
|
+
sustain: 0.5
|
213
|
+
attack: 0.5
|
214
|
+
separation: 0.5
|
215
|
+
- !ruby/object:Music::Transcription::Note
|
216
|
+
duration: 0.5
|
217
|
+
intervals:
|
218
|
+
- !ruby/object:Music::Transcription::Interval
|
219
|
+
pitch: *20566040
|
220
|
+
link: !ruby/object:Music::Transcription::Link
|
221
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
222
|
+
cents_per_octave: 1200
|
223
|
+
octave: 0
|
224
|
+
semitone: 0
|
225
|
+
cent: 0
|
226
|
+
base_freq: 16.351597831287414
|
227
|
+
relationship: :none
|
228
|
+
sustain: 0.5
|
229
|
+
attack: 0.5
|
230
|
+
separation: 0.5
|
231
|
+
program: !ruby/object:Music::Transcription::Program
|
232
|
+
segments:
|
233
|
+
- !ruby/range
|
234
|
+
begin: 0
|
235
|
+
end: 4.0
|
236
|
+
excl: true
|
237
|
+
instrument_configs: {}
|
@@ -0,0 +1,640 @@
|
|
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.375
|
19
|
+
intervals:
|
20
|
+
- !ruby/object:Music::Transcription::Interval
|
21
|
+
pitch: &15342280 !ruby/object:Music::Transcription::Pitch
|
22
|
+
cents_per_octave: 1200
|
23
|
+
octave: 2
|
24
|
+
semitone: 0
|
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
|
+
- !ruby/object:Music::Transcription::Interval
|
42
|
+
pitch: &15340880 !ruby/object:Music::Transcription::Pitch
|
43
|
+
cents_per_octave: 1200
|
44
|
+
octave: 2
|
45
|
+
semitone: 3
|
46
|
+
cent: 0
|
47
|
+
base_freq: 16.351597831287414
|
48
|
+
link: !ruby/object:Music::Transcription::Link
|
49
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
50
|
+
cents_per_octave: 1200
|
51
|
+
octave: 0
|
52
|
+
semitone: 0
|
53
|
+
cent: 0
|
54
|
+
base_freq: 16.351597831287414
|
55
|
+
relationship: :none
|
56
|
+
sustain: 0.5
|
57
|
+
attack: 0.5
|
58
|
+
separation: 0.5
|
59
|
+
- !ruby/object:Music::Transcription::Note
|
60
|
+
duration: 0.3125
|
61
|
+
intervals:
|
62
|
+
- !ruby/object:Music::Transcription::Interval
|
63
|
+
pitch: &15339860 !ruby/object:Music::Transcription::Pitch
|
64
|
+
cents_per_octave: 1200
|
65
|
+
octave: 2
|
66
|
+
semitone: 5
|
67
|
+
cent: 0
|
68
|
+
base_freq: 16.351597831287414
|
69
|
+
link: !ruby/object:Music::Transcription::Link
|
70
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
71
|
+
cents_per_octave: 1200
|
72
|
+
octave: 0
|
73
|
+
semitone: 0
|
74
|
+
cent: 0
|
75
|
+
base_freq: 16.351597831287414
|
76
|
+
relationship: :none
|
77
|
+
sustain: 0.5
|
78
|
+
attack: 0.5
|
79
|
+
separation: 0.5
|
80
|
+
- !ruby/object:Music::Transcription::Note
|
81
|
+
duration: 0.0625
|
82
|
+
intervals:
|
83
|
+
- !ruby/object:Music::Transcription::Interval
|
84
|
+
pitch: *15340880
|
85
|
+
link: !ruby/object:Music::Transcription::Link
|
86
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
87
|
+
cents_per_octave: 1200
|
88
|
+
octave: 0
|
89
|
+
semitone: 0
|
90
|
+
cent: 0
|
91
|
+
base_freq: 16.351597831287414
|
92
|
+
relationship: :none
|
93
|
+
sustain: 0.5
|
94
|
+
attack: 0.5
|
95
|
+
separation: 0.5
|
96
|
+
- !ruby/object:Music::Transcription::Note
|
97
|
+
duration: 0.125
|
98
|
+
intervals: []
|
99
|
+
sustain: 0.5
|
100
|
+
attack: 0.5
|
101
|
+
separation: 0.5
|
102
|
+
- !ruby/object:Music::Transcription::Note
|
103
|
+
duration: 0.25
|
104
|
+
intervals:
|
105
|
+
- !ruby/object:Music::Transcription::Interval
|
106
|
+
pitch: *15342280
|
107
|
+
link: !ruby/object:Music::Transcription::Link
|
108
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
109
|
+
cents_per_octave: 1200
|
110
|
+
octave: 0
|
111
|
+
semitone: 0
|
112
|
+
cent: 0
|
113
|
+
base_freq: 16.351597831287414
|
114
|
+
relationship: :none
|
115
|
+
sustain: 0.5
|
116
|
+
attack: 0.5
|
117
|
+
separation: 0.5
|
118
|
+
- !ruby/object:Music::Transcription::Note
|
119
|
+
duration: 0.25
|
120
|
+
intervals:
|
121
|
+
- !ruby/object:Music::Transcription::Interval
|
122
|
+
pitch: *15340880
|
123
|
+
link: !ruby/object:Music::Transcription::Link
|
124
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
125
|
+
cents_per_octave: 1200
|
126
|
+
octave: 0
|
127
|
+
semitone: 0
|
128
|
+
cent: 0
|
129
|
+
base_freq: 16.351597831287414
|
130
|
+
relationship: :none
|
131
|
+
sustain: 0.5
|
132
|
+
attack: 0.5
|
133
|
+
separation: 0.5
|
134
|
+
- !ruby/object:Music::Transcription::Note
|
135
|
+
duration: 0.375
|
136
|
+
intervals: []
|
137
|
+
sustain: 0.5
|
138
|
+
attack: 0.5
|
139
|
+
separation: 0.5
|
140
|
+
- !ruby/object:Music::Transcription::Note
|
141
|
+
duration: 0.375
|
142
|
+
intervals:
|
143
|
+
- !ruby/object:Music::Transcription::Interval
|
144
|
+
pitch: *15342280
|
145
|
+
link: !ruby/object:Music::Transcription::Link
|
146
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
147
|
+
cents_per_octave: 1200
|
148
|
+
octave: 0
|
149
|
+
semitone: 0
|
150
|
+
cent: 0
|
151
|
+
base_freq: 16.351597831287414
|
152
|
+
relationship: :none
|
153
|
+
sustain: 0.5
|
154
|
+
attack: 0.5
|
155
|
+
separation: 0.5
|
156
|
+
- !ruby/object:Music::Transcription::Note
|
157
|
+
duration: 0.25
|
158
|
+
intervals:
|
159
|
+
- !ruby/object:Music::Transcription::Interval
|
160
|
+
pitch: *15340880
|
161
|
+
link: !ruby/object:Music::Transcription::Link
|
162
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
163
|
+
cents_per_octave: 1200
|
164
|
+
octave: 0
|
165
|
+
semitone: 0
|
166
|
+
cent: 0
|
167
|
+
base_freq: 16.351597831287414
|
168
|
+
relationship: :none
|
169
|
+
sustain: 0.5
|
170
|
+
attack: 0.5
|
171
|
+
separation: 0.5
|
172
|
+
- !ruby/object:Music::Transcription::Note
|
173
|
+
duration: 0.3125
|
174
|
+
intervals:
|
175
|
+
- !ruby/object:Music::Transcription::Interval
|
176
|
+
pitch: *15339860
|
177
|
+
link: !ruby/object:Music::Transcription::Link
|
178
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
179
|
+
cents_per_octave: 1200
|
180
|
+
octave: 0
|
181
|
+
semitone: 0
|
182
|
+
cent: 0
|
183
|
+
base_freq: 16.351597831287414
|
184
|
+
relationship: :none
|
185
|
+
sustain: 0.5
|
186
|
+
attack: 0.5
|
187
|
+
separation: 0.5
|
188
|
+
- !ruby/object:Music::Transcription::Note
|
189
|
+
duration: 0.0625
|
190
|
+
intervals:
|
191
|
+
- !ruby/object:Music::Transcription::Interval
|
192
|
+
pitch: *15340880
|
193
|
+
link: !ruby/object:Music::Transcription::Link
|
194
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
195
|
+
cents_per_octave: 1200
|
196
|
+
octave: 0
|
197
|
+
semitone: 0
|
198
|
+
cent: 0
|
199
|
+
base_freq: 16.351597831287414
|
200
|
+
relationship: :none
|
201
|
+
sustain: 0.5
|
202
|
+
attack: 0.5
|
203
|
+
separation: 0.5
|
204
|
+
- !ruby/object:Music::Transcription::Note
|
205
|
+
duration: 0.125
|
206
|
+
intervals: []
|
207
|
+
sustain: 0.5
|
208
|
+
attack: 0.5
|
209
|
+
separation: 0.5
|
210
|
+
- !ruby/object:Music::Transcription::Note
|
211
|
+
duration: 0.25
|
212
|
+
intervals:
|
213
|
+
- !ruby/object:Music::Transcription::Interval
|
214
|
+
pitch: *15342280
|
215
|
+
link: !ruby/object:Music::Transcription::Link
|
216
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
217
|
+
cents_per_octave: 1200
|
218
|
+
octave: 0
|
219
|
+
semitone: 0
|
220
|
+
cent: 0
|
221
|
+
base_freq: 16.351597831287414
|
222
|
+
relationship: :none
|
223
|
+
sustain: 0.5
|
224
|
+
attack: 0.5
|
225
|
+
separation: 0.5
|
226
|
+
- !ruby/object:Music::Transcription::Note
|
227
|
+
duration: 0.25
|
228
|
+
intervals:
|
229
|
+
- !ruby/object:Music::Transcription::Interval
|
230
|
+
pitch: *15340880
|
231
|
+
link: !ruby/object:Music::Transcription::Link
|
232
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
233
|
+
cents_per_octave: 1200
|
234
|
+
octave: 0
|
235
|
+
semitone: 0
|
236
|
+
cent: 0
|
237
|
+
base_freq: 16.351597831287414
|
238
|
+
relationship: :none
|
239
|
+
sustain: 0.5
|
240
|
+
attack: 0.5
|
241
|
+
separation: 0.5
|
242
|
+
2: !ruby/object:Music::Transcription::Part
|
243
|
+
offset: 0
|
244
|
+
loudness_profile: !ruby/object:Music::Transcription::Profile
|
245
|
+
start_value: 0.5
|
246
|
+
value_changes: {}
|
247
|
+
notes:
|
248
|
+
- !ruby/object:Music::Transcription::Note
|
249
|
+
duration: 0.125
|
250
|
+
intervals: []
|
251
|
+
sustain: 0.5
|
252
|
+
attack: 0.5
|
253
|
+
separation: 0.5
|
254
|
+
- !ruby/object:Music::Transcription::Note
|
255
|
+
duration: 0.125
|
256
|
+
intervals:
|
257
|
+
- !ruby/object:Music::Transcription::Interval
|
258
|
+
pitch: &15331400 !ruby/object:Music::Transcription::Pitch
|
259
|
+
cents_per_octave: 1200
|
260
|
+
octave: 3
|
261
|
+
semitone: 10
|
262
|
+
cent: 0
|
263
|
+
base_freq: 16.351597831287414
|
264
|
+
link: !ruby/object:Music::Transcription::Link
|
265
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
266
|
+
cents_per_octave: 1200
|
267
|
+
octave: 0
|
268
|
+
semitone: 0
|
269
|
+
cent: 0
|
270
|
+
base_freq: 16.351597831287414
|
271
|
+
relationship: :none
|
272
|
+
sustain: 0.5
|
273
|
+
attack: 0.5
|
274
|
+
separation: 0.5
|
275
|
+
- !ruby/object:Music::Transcription::Note
|
276
|
+
duration: 0.125
|
277
|
+
intervals:
|
278
|
+
- !ruby/object:Music::Transcription::Interval
|
279
|
+
pitch: *15331400
|
280
|
+
link: !ruby/object:Music::Transcription::Link
|
281
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
282
|
+
cents_per_octave: 1200
|
283
|
+
octave: 0
|
284
|
+
semitone: 0
|
285
|
+
cent: 0
|
286
|
+
base_freq: 16.351597831287414
|
287
|
+
relationship: :none
|
288
|
+
sustain: 0.5
|
289
|
+
attack: 0.5
|
290
|
+
separation: 0.5
|
291
|
+
- !ruby/object:Music::Transcription::Note
|
292
|
+
duration: 0.125
|
293
|
+
intervals:
|
294
|
+
- !ruby/object:Music::Transcription::Interval
|
295
|
+
pitch: *15331400
|
296
|
+
link: !ruby/object:Music::Transcription::Link
|
297
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
298
|
+
cents_per_octave: 1200
|
299
|
+
octave: 0
|
300
|
+
semitone: 0
|
301
|
+
cent: 0
|
302
|
+
base_freq: 16.351597831287414
|
303
|
+
relationship: :none
|
304
|
+
sustain: 0.5
|
305
|
+
attack: 0.5
|
306
|
+
separation: 0.5
|
307
|
+
- !ruby/object:Music::Transcription::Note
|
308
|
+
duration: 0.125
|
309
|
+
intervals:
|
310
|
+
- !ruby/object:Music::Transcription::Interval
|
311
|
+
pitch: *15331400
|
312
|
+
link: !ruby/object:Music::Transcription::Link
|
313
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
314
|
+
cents_per_octave: 1200
|
315
|
+
octave: 0
|
316
|
+
semitone: 0
|
317
|
+
cent: 0
|
318
|
+
base_freq: 16.351597831287414
|
319
|
+
relationship: :none
|
320
|
+
sustain: 0.5
|
321
|
+
attack: 0.5
|
322
|
+
separation: 0.5
|
323
|
+
- !ruby/object:Music::Transcription::Note
|
324
|
+
duration: 0.25
|
325
|
+
intervals:
|
326
|
+
- !ruby/object:Music::Transcription::Interval
|
327
|
+
pitch: &15330040 !ruby/object:Music::Transcription::Pitch
|
328
|
+
cents_per_octave: 1200
|
329
|
+
octave: 4
|
330
|
+
semitone: 0
|
331
|
+
cent: 0
|
332
|
+
base_freq: 16.351597831287414
|
333
|
+
link: !ruby/object:Music::Transcription::Link
|
334
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
335
|
+
cents_per_octave: 1200
|
336
|
+
octave: 0
|
337
|
+
semitone: 0
|
338
|
+
cent: 0
|
339
|
+
base_freq: 16.351597831287414
|
340
|
+
relationship: :none
|
341
|
+
sustain: 0.5
|
342
|
+
attack: 0.5
|
343
|
+
separation: 0.5
|
344
|
+
- !ruby/object:Music::Transcription::Note
|
345
|
+
duration: 0.25
|
346
|
+
intervals:
|
347
|
+
- !ruby/object:Music::Transcription::Interval
|
348
|
+
pitch: &15331860 !ruby/object:Music::Transcription::Pitch
|
349
|
+
cents_per_octave: 1200
|
350
|
+
octave: 3
|
351
|
+
semitone: 9
|
352
|
+
cent: 0
|
353
|
+
base_freq: 16.351597831287414
|
354
|
+
link: !ruby/object:Music::Transcription::Link
|
355
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
356
|
+
cents_per_octave: 1200
|
357
|
+
octave: 0
|
358
|
+
semitone: 0
|
359
|
+
cent: 0
|
360
|
+
base_freq: 16.351597831287414
|
361
|
+
relationship: :none
|
362
|
+
sustain: 0.5
|
363
|
+
attack: 0.5
|
364
|
+
separation: 0.5
|
365
|
+
- !ruby/object:Music::Transcription::Note
|
366
|
+
duration: 0.125
|
367
|
+
intervals:
|
368
|
+
- !ruby/object:Music::Transcription::Interval
|
369
|
+
pitch: &15332840 !ruby/object:Music::Transcription::Pitch
|
370
|
+
cents_per_octave: 1200
|
371
|
+
octave: 3
|
372
|
+
semitone: 7
|
373
|
+
cent: 0
|
374
|
+
base_freq: 16.351597831287414
|
375
|
+
link: !ruby/object:Music::Transcription::Link
|
376
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
377
|
+
cents_per_octave: 1200
|
378
|
+
octave: 0
|
379
|
+
semitone: 0
|
380
|
+
cent: 0
|
381
|
+
base_freq: 16.351597831287414
|
382
|
+
relationship: :none
|
383
|
+
sustain: 0.5
|
384
|
+
attack: 0.5
|
385
|
+
separation: 0.5
|
386
|
+
- !ruby/object:Music::Transcription::Note
|
387
|
+
duration: 0.125
|
388
|
+
intervals:
|
389
|
+
- !ruby/object:Music::Transcription::Interval
|
390
|
+
pitch: &15333840 !ruby/object:Music::Transcription::Pitch
|
391
|
+
cents_per_octave: 1200
|
392
|
+
octave: 3
|
393
|
+
semitone: 5
|
394
|
+
cent: 0
|
395
|
+
base_freq: 16.351597831287414
|
396
|
+
link: !ruby/object:Music::Transcription::Link
|
397
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
398
|
+
cents_per_octave: 1200
|
399
|
+
octave: 0
|
400
|
+
semitone: 0
|
401
|
+
cent: 0
|
402
|
+
base_freq: 16.351597831287414
|
403
|
+
relationship: :none
|
404
|
+
sustain: 0.5
|
405
|
+
attack: 0.5
|
406
|
+
separation: 0.5
|
407
|
+
- !ruby/object:Music::Transcription::Note
|
408
|
+
duration: 0.3125
|
409
|
+
intervals:
|
410
|
+
- !ruby/object:Music::Transcription::Interval
|
411
|
+
pitch: *15332840
|
412
|
+
link: !ruby/object:Music::Transcription::Link
|
413
|
+
target_pitch: *15333840
|
414
|
+
relationship: :slur
|
415
|
+
sustain: 0.5
|
416
|
+
attack: 0.5
|
417
|
+
separation: 0.5
|
418
|
+
- !ruby/object:Music::Transcription::Note
|
419
|
+
duration: 0.0625
|
420
|
+
intervals:
|
421
|
+
- !ruby/object:Music::Transcription::Interval
|
422
|
+
pitch: *15333840
|
423
|
+
link: !ruby/object:Music::Transcription::Link
|
424
|
+
target_pitch: &15334400 !ruby/object:Music::Transcription::Pitch
|
425
|
+
cents_per_octave: 1200
|
426
|
+
octave: 3
|
427
|
+
semitone: 4
|
428
|
+
cent: 0
|
429
|
+
base_freq: 16.351597831287414
|
430
|
+
relationship: :slur
|
431
|
+
sustain: 0.5
|
432
|
+
attack: 0.5
|
433
|
+
separation: 0.5
|
434
|
+
- !ruby/object:Music::Transcription::Note
|
435
|
+
duration: 0.125
|
436
|
+
intervals:
|
437
|
+
- !ruby/object:Music::Transcription::Interval
|
438
|
+
pitch: *15334400
|
439
|
+
link: !ruby/object:Music::Transcription::Link
|
440
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
441
|
+
cents_per_octave: 1200
|
442
|
+
octave: 0
|
443
|
+
semitone: 0
|
444
|
+
cent: 0
|
445
|
+
base_freq: 16.351597831287414
|
446
|
+
relationship: :none
|
447
|
+
sustain: 0.5
|
448
|
+
attack: 0.5
|
449
|
+
separation: 0.5
|
450
|
+
- !ruby/object:Music::Transcription::Note
|
451
|
+
duration: 0.125
|
452
|
+
intervals: []
|
453
|
+
sustain: 0.5
|
454
|
+
attack: 0.5
|
455
|
+
separation: 0.5
|
456
|
+
- !ruby/object:Music::Transcription::Note
|
457
|
+
duration: 0.125
|
458
|
+
intervals: []
|
459
|
+
sustain: 0.5
|
460
|
+
attack: 0.5
|
461
|
+
separation: 0.5
|
462
|
+
- !ruby/object:Music::Transcription::Note
|
463
|
+
duration: 0.125
|
464
|
+
intervals:
|
465
|
+
- !ruby/object:Music::Transcription::Interval
|
466
|
+
pitch: *15331400
|
467
|
+
link: !ruby/object:Music::Transcription::Link
|
468
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
469
|
+
cents_per_octave: 1200
|
470
|
+
octave: 0
|
471
|
+
semitone: 0
|
472
|
+
cent: 0
|
473
|
+
base_freq: 16.351597831287414
|
474
|
+
relationship: :none
|
475
|
+
sustain: 0.5
|
476
|
+
attack: 0.5
|
477
|
+
separation: 0.5
|
478
|
+
- !ruby/object:Music::Transcription::Note
|
479
|
+
duration: 0.125
|
480
|
+
intervals:
|
481
|
+
- !ruby/object:Music::Transcription::Interval
|
482
|
+
pitch: *15331400
|
483
|
+
link: !ruby/object:Music::Transcription::Link
|
484
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
485
|
+
cents_per_octave: 1200
|
486
|
+
octave: 0
|
487
|
+
semitone: 0
|
488
|
+
cent: 0
|
489
|
+
base_freq: 16.351597831287414
|
490
|
+
relationship: :none
|
491
|
+
sustain: 0.5
|
492
|
+
attack: 0.5
|
493
|
+
separation: 0.5
|
494
|
+
- !ruby/object:Music::Transcription::Note
|
495
|
+
duration: 0.125
|
496
|
+
intervals:
|
497
|
+
- !ruby/object:Music::Transcription::Interval
|
498
|
+
pitch: *15331400
|
499
|
+
link: !ruby/object:Music::Transcription::Link
|
500
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
501
|
+
cents_per_octave: 1200
|
502
|
+
octave: 0
|
503
|
+
semitone: 0
|
504
|
+
cent: 0
|
505
|
+
base_freq: 16.351597831287414
|
506
|
+
relationship: :none
|
507
|
+
sustain: 0.5
|
508
|
+
attack: 0.5
|
509
|
+
separation: 0.5
|
510
|
+
- !ruby/object:Music::Transcription::Note
|
511
|
+
duration: 0.125
|
512
|
+
intervals:
|
513
|
+
- !ruby/object:Music::Transcription::Interval
|
514
|
+
pitch: *15331400
|
515
|
+
link: !ruby/object:Music::Transcription::Link
|
516
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
517
|
+
cents_per_octave: 1200
|
518
|
+
octave: 0
|
519
|
+
semitone: 0
|
520
|
+
cent: 0
|
521
|
+
base_freq: 16.351597831287414
|
522
|
+
relationship: :none
|
523
|
+
sustain: 0.5
|
524
|
+
attack: 0.5
|
525
|
+
separation: 0.5
|
526
|
+
- !ruby/object:Music::Transcription::Note
|
527
|
+
duration: 0.25
|
528
|
+
intervals:
|
529
|
+
- !ruby/object:Music::Transcription::Interval
|
530
|
+
pitch: *15330040
|
531
|
+
link: !ruby/object:Music::Transcription::Link
|
532
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
533
|
+
cents_per_octave: 1200
|
534
|
+
octave: 0
|
535
|
+
semitone: 0
|
536
|
+
cent: 0
|
537
|
+
base_freq: 16.351597831287414
|
538
|
+
relationship: :none
|
539
|
+
sustain: 0.5
|
540
|
+
attack: 0.5
|
541
|
+
separation: 0.5
|
542
|
+
- !ruby/object:Music::Transcription::Note
|
543
|
+
duration: 0.125
|
544
|
+
intervals:
|
545
|
+
- !ruby/object:Music::Transcription::Interval
|
546
|
+
pitch: *15331860
|
547
|
+
link: !ruby/object:Music::Transcription::Link
|
548
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
549
|
+
cents_per_octave: 1200
|
550
|
+
octave: 0
|
551
|
+
semitone: 0
|
552
|
+
cent: 0
|
553
|
+
base_freq: 16.351597831287414
|
554
|
+
relationship: :none
|
555
|
+
sustain: 0.5
|
556
|
+
attack: 0.5
|
557
|
+
separation: 0.5
|
558
|
+
- !ruby/object:Music::Transcription::Note
|
559
|
+
duration: 0.125
|
560
|
+
intervals:
|
561
|
+
- !ruby/object:Music::Transcription::Interval
|
562
|
+
pitch: &15326140 !ruby/object:Music::Transcription::Pitch
|
563
|
+
cents_per_octave: 1200
|
564
|
+
octave: 4
|
565
|
+
semitone: 4
|
566
|
+
cent: 0
|
567
|
+
base_freq: 16.351597831287414
|
568
|
+
link: !ruby/object:Music::Transcription::Link
|
569
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
570
|
+
cents_per_octave: 1200
|
571
|
+
octave: 0
|
572
|
+
semitone: 0
|
573
|
+
cent: 0
|
574
|
+
base_freq: 16.351597831287414
|
575
|
+
relationship: :none
|
576
|
+
sustain: 0.5
|
577
|
+
attack: 0.5
|
578
|
+
separation: 0.5
|
579
|
+
- !ruby/object:Music::Transcription::Note
|
580
|
+
duration: 0.125
|
581
|
+
intervals:
|
582
|
+
- !ruby/object:Music::Transcription::Interval
|
583
|
+
pitch: *15326140
|
584
|
+
link: !ruby/object:Music::Transcription::Link
|
585
|
+
target_pitch: &15327520 !ruby/object:Music::Transcription::Pitch
|
586
|
+
cents_per_octave: 1200
|
587
|
+
octave: 4
|
588
|
+
semitone: 2
|
589
|
+
cent: 0
|
590
|
+
base_freq: 16.351597831287414
|
591
|
+
relationship: :slur
|
592
|
+
sustain: 0.5
|
593
|
+
attack: 0.5
|
594
|
+
separation: 0.5
|
595
|
+
- !ruby/object:Music::Transcription::Note
|
596
|
+
duration: 0.125
|
597
|
+
intervals:
|
598
|
+
- !ruby/object:Music::Transcription::Interval
|
599
|
+
pitch: *15327520
|
600
|
+
link: !ruby/object:Music::Transcription::Link
|
601
|
+
target_pitch: *15330040
|
602
|
+
relationship: :slur
|
603
|
+
sustain: 0.5
|
604
|
+
attack: 0.5
|
605
|
+
separation: 0.5
|
606
|
+
- !ruby/object:Music::Transcription::Note
|
607
|
+
duration: 0.125
|
608
|
+
intervals:
|
609
|
+
- !ruby/object:Music::Transcription::Interval
|
610
|
+
pitch: *15330040
|
611
|
+
link: !ruby/object:Music::Transcription::Link
|
612
|
+
target_pitch: !ruby/object:Music::Transcription::Pitch
|
613
|
+
cents_per_octave: 1200
|
614
|
+
octave: 0
|
615
|
+
semitone: 0
|
616
|
+
cent: 0
|
617
|
+
base_freq: 16.351597831287414
|
618
|
+
relationship: :none
|
619
|
+
sustain: 0.5
|
620
|
+
attack: 0.5
|
621
|
+
separation: 0.5
|
622
|
+
program: !ruby/object:Music::Transcription::Program
|
623
|
+
segments:
|
624
|
+
- !ruby/range
|
625
|
+
begin: 0
|
626
|
+
end: 4.0
|
627
|
+
excl: true
|
628
|
+
- !ruby/range
|
629
|
+
begin: 0
|
630
|
+
end: 4.0
|
631
|
+
excl: true
|
632
|
+
instrument_configs:
|
633
|
+
1: !ruby/object:Music::Transcription::InstrumentConfig
|
634
|
+
plugin_name: synth_instr_3
|
635
|
+
initial_settings: blend
|
636
|
+
setting_changes: {}
|
637
|
+
2: !ruby/object:Music::Transcription::InstrumentConfig
|
638
|
+
plugin_name: synth_instr_3
|
639
|
+
initial_settings: blend
|
640
|
+
setting_changes: {}
|