MCPcopy Create free account
hub / github.com/bspaans/python-mingus / play_Bar

Function play_Bar

mingus/midi/fluidsynth.py:172–177  ·  view source on GitHub ↗

Play a Bar object using play_NoteContainer and stop_NoteContainer. Set a bpm attribute on a NoteContainer to change the tempo.

(bar, channel=1, bpm=120)

Source from the content-addressed store, hash-verified

170
171
172def play_Bar(bar, channel=1, bpm=120):
173 """Play a Bar object using play_NoteContainer and stop_NoteContainer.
174
175 Set a bpm attribute on a NoteContainer to change the tempo.
176 """
177 return midi.play_Bar(bar, channel, bpm)
178
179
180def play_Bars(bars, channels, bpm=120):

Callers

nothing calls this directly

Calls 1

play_BarMethod · 0.45

Tested by

no test coverage detected