14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
tempo = 1/bps
max_duration = 1
composition = {
"a": { # Movement block 'a' for reuse throughout the piece
"bassline": { # Instrument 'melody'
"score_line": "i1 %(time)f %(duration)f 10000 %(octave)d.%(note)s",
"octave": 6,
"grammars": { # Notes for this instrument to use in this piece
"u": ["I,/2 z/2 I,/2 z/2 I,/2 z/2 V,/2 z/2 u u", "e"],
"e": [""],
},
"score": "u u u u u",
},
},
}
|
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
tempo = 1/bps
max_duration = 1
composition = {
"a": { # Movement block 'a' for reuse throughout the piece
"bassline": { # Instrument 'melody'
"score_line": "i1 %(time)f %(duration)f 10000 %(octave)d.%(note)s",
"octave": 5,
"grammars": { # Notes for this instrument to use in this piece
"u": ["I/2 z/2 I/2 z/2 I/2 z/2 V/2 z/2 u u", "e"],
"e": [""],
},
"score": "u u u u u",
},
},
}
|