-def is_note(msg):
- return msg.type == 'note_on' or msg.type == 'note_off'
-
-
-def is_note_on(msg):
- return msg.type == 'note_on' and msg.velocity > 0
-
-
-def is_note_off(msg):
- return ((msg.type == 'note_on' and msg.velocity == 0) or
- (msg.type == 'note_off'))
-
-
-def check_overlapping_notes(midi_file):
- previous_note_on = False
- for msg in midi_file:
- if is_note_on(msg) and msg.channel == 0:
- if previous_note_on:
- return True
-
- previous_note_on = True
- elif is_note_off(msg) and msg.channel == 0:
- previous_note_on = False
-
- return False
-
-
-def timeline_from_midi(midi_file, video_font_path):
- timeline = vidi.Timeline()
-
- elapsed_time = 0
- start_time = 0
- for msg in midi_file:
- elapsed_time += msg.time
- if is_note_on(msg) and msg.channel == 0:
- start_time = elapsed_time
- elif is_note_off(msg) and msg.channel == 0:
- note = vidi.MidiNote(msg.note)
- duration = elapsed_time - start_time
- print("Note name: %s start_time: %f duration: %f" %
- (note.name, start_time, duration))
-
- video_sample_path = "%s/sample_%s.webm" % (video_font_path, note.name)
-
- timeline.add_clip(video_sample_path, start_time, duration)
-
- return timeline
-
-