Iterates through MIDI events and collects all NoteOn and NoteOff messages within a specified range.
Pull Request type
Please check the type of change your PR introduces:
[ ] Bugfix
[X] Feature
[ ] Code style update (formatting, renaming)
[ ] Refactoring (no functional changes, no API changes)
[ ] Build-related changes
[ ] Documentation content changes
[ ] Other (please describe):
What is the current behavior?
Extract notes within a specified pitch range from middle c.
Note range is defined as +- middlec (keynum 60). EG note_range== 12 -> 48 - 72
To enable more specific data slicing, I could imagine changing note_range to two arguments: lower_bound and upper_bound
Iterates through MIDI events and collects all NoteOn and NoteOff messages within a specified range.
Pull Request type
Please check the type of change your PR introduces:
What is the current behavior?
Extract notes within a specified pitch range from middle c. Note range is defined as +- middlec (keynum 60). EG note_range== 12 -> 48 - 72 To enable more specific data slicing, I could imagine changing note_range to two arguments: lower_bound and upper_bound
Issue Number: #7
What is the new behavior?
-
-
Does this introduce a breaking change?
Other information