Esempio n. 1
0
def KeyFilter(notes):
    return _Filter(_mididings.KeyFilter(0, 0, notes))
Esempio n. 2
0
def KeyFilter(lower):
    return _Filter(_mididings.KeyFilter(lower, 0, []))
Esempio n. 3
0
def KeyFilter(upper):
    return _Filter(_mididings.KeyFilter(0, upper, []))
Esempio n. 4
0
def KeyFilter(note_range):
    return _Filter(_mididings.KeyFilter(note_range[0], note_range[1], []))