-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueSkies.mjs
51 lines (49 loc) · 1008 Bytes
/
blueSkies.mjs
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
51
/**
* Test song, which is used by other projects as well
*/
export default {
title: 'Blue Skies',
composedOn: -1357318800000,
composer: 'Irving Berlin',
updatedOn: 1558727197107,
updatedBy: 'Jacob Bloom',
tempo: 160,
style: 'samba',
key: 'C',
transpose: 0,
timeSignature: [4,4],
measureContainer: {
type: 'repeat',
repeatInfo: {
repeatCount: 2
},
measures: [
['A-', null, null, null],
['E', null, null, null],
['A-7', null, null, null],
['A-6', null, null, null],
['CM7', null, 'A7', null],
['D-7', null, 'G7', null],
{
type: 'ending',
repeatInfo: {
ending: 1
},
measures: [
['C6', null, null, null],
['Bdim7', null, 'E7', null],
]
},
{
type: 'ending',
repeatInfo: {
ending: 2
},
measures: [
['C6', null, null, null],
['C6', null, null, null],
]
}
]
}
};