Play a list of bars on the given list of channels. Set a bpm attribute on a NoteContainer to change the tempo.
(bars, channels, bpm=120)
| 178 | |
| 179 | |
| 180 | def play_Bars(bars, channels, bpm=120): |
| 181 | """Play a list of bars on the given list of channels. |
| 182 | |
| 183 | Set a bpm attribute on a NoteContainer to change the tempo. |
| 184 | """ |
| 185 | return midi.play_Bars(bars, channels, bpm) |
| 186 | |
| 187 | |
| 188 | def play_Track(track, channel=1, bpm=120): |