def write_NoteContainer(file, notecontainer, bpm = 120, repeat = 0):
	"""Writes a mingus.NoteContainer to a midi file."""
	m = MidiFile()
	t = MidiTrack(bpm)
	m.tracks = [t]
	while repeat >= 0:
		t.set_deltatime("\x00")
		t.play_NoteContainer(notecontainer)
		t.set_deltatime("\x48")
		t.stop_NoteContainer(notecontainer)
		repeat -= 1
	return m.write_file(file)
Example #2
0
def write_NoteContainer(
    file,
    notecontainer,
    bpm=120,
    repeat=0,
    verbose=False,
):
    """Writes a mingus.NoteContainer to a midi file."""

    m = MidiFile()
    t = MidiTrack(bpm)
    m.tracks = [t]
    while repeat >= 0:
        t.set_deltatime('\x00')
        t.play_NoteContainer(notecontainer)
        t.set_deltatime("\x48")
        t.stop_NoteContainer(notecontainer)
        repeat -= 1
    return m.write_file(file, verbose)