Skip to content

kyaryunha/midi-clip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

midi-clip

PyPI

A python package for midi clip (and midi duration) based on mido. (github)

Author: Hyun Shin (kyaryunha)

Introduce

This library considers a lot of things for detailing midi clips: followings:

  • Supports both multi-track MIDI
  • Supports both tempo track & non-tempo track
  • Consider set_tempo, time_signature, controllers that appear before start time or note_on that were not closed
  • Consider empty space before the midi
  • All note_on and note_off pairs are validate. (Number of note_on and note_off is the same, and all note_on are closed by note_off)
  • ...

Usage

pip install midi-clip
import mido
import midi_clip
# load midi use mido
mid = mido.MidiFile('resources/hosu.mid')
# clip midi
output_mid = midi_clip.midi_clip(mid, 5., 15.)
# you can get total duration(second) of midi
duration = midi_clip.midi_duration(output_mid)
# if you see by print
print(output_mid, duration)
# if you save midi clip
output_mid.save('output.mid')

Result

Result of clip "A Town With An Ocean View" MIDI from 0 to 30 seconds and from 5 to 15 seconds.

0s-30s 5s-15s
Piano Roll
Audio https://github.com/kyaryunha/midi-clip/blob/main/example/ocean_0_30.wav https://github.com/kyaryunha/midi-clip/blob/main/example/ocean_5_15.wav

** Used GarageBand to obtain piano roll images and Cubase to obtain audio. GarageBand and Cubase fill in the measure regardless of the actual end of track time in the MIDI, resulting in slightly longer audio. MIDI file's time clip is precisely.

** Data used for result was allowed by an anonymous artist.