Play a composition.
(composition, channels=None, bpm=120)
| 196 | |
| 197 | |
| 198 | def play_Composition(composition, channels=None, bpm=120): |
| 199 | """Play a composition.""" |
| 200 | return midi.play_Composition(composition, channels, bpm) |
| 201 | |
| 202 | |
| 203 | def control_change(channel, control, value): |
nothing calls this directly
no test coverage detected