Beispiel #1
0
def vprall(start, stop):
    min = (1, 32)
    mask = [1, 1, 1, 0, 0]
    apply_articulations(
        pitches, 
        start, 
        stop, 
        ('prall',)
        ,
        min=min, 
        mask=mask, 
        rests=False, 
        overwrite=False,
        )
Beispiel #2
0
def fprall(start, stop):
    min = (1, 16)
    max = (1, 8)
    mask = [1, 1, 1] + [0] * 17
    apply_articulations(pitches, start, stop, ('prall',),
        min = min, max = max, mask = mask, rests = False, overwrite = False)
Beispiel #3
0
def fturn(start, stop):
    min = (1, 8)
    max = None
    mask = [1, 1, 1, 0, 0, 0, 0, 0]
    apply_articulations(pitches, start, stop, ('turn',),
        min = min, max = max, mask = mask, rests = False, overwrite = False)