Stop the Note playing at channel. If a channel attribute is set on the note, it will take presedence.
(note, channel=1)
| 152 | |
| 153 | |
| 154 | def stop_Note(note, channel=1): |
| 155 | """Stop the Note playing at channel. |
| 156 | |
| 157 | If a channel attribute is set on the note, it will take presedence. |
| 158 | """ |
| 159 | return midi.stop_Note(note, channel) |
| 160 | |
| 161 | |
| 162 | def play_NoteContainer(nc, channel=1, velocity=100): |