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

Method note_off

mingus/midi/midi_track.py:176–178  ·  view source on GitHub ↗

Return bytes for a 'note off' event.

(self, channel, note, velocity)

Source from the content-addressed store, hash-verified

174 return self.delta_time + bytes([status_byte] + params)
175
176 def note_off(self, channel, note, velocity):
177 """Return bytes for a 'note off' event."""
178 return self.midi_event(NOTE_OFF, channel, note, velocity)
179
180 def note_on(self, channel, note, velocity):
181 """Return bytes for a 'note_on' event."""

Callers 1

stop_NoteMethod · 0.95

Calls 1

midi_eventMethod · 0.95

Tested by

no test coverage detected