Use play_Note to play the Notes in the NoteContainer nc.
(nc, channel=1, velocity=100)
| 160 | |
| 161 | |
| 162 | def play_NoteContainer(nc, channel=1, velocity=100): |
| 163 | """Use play_Note to play the Notes in the NoteContainer nc.""" |
| 164 | return midi.play_NoteContainer(nc, channel, velocity) |
| 165 | |
| 166 | |
| 167 | def stop_NoteContainer(nc, channel=1): |
nothing calls this directly
no test coverage detected