Skip to content

Releases: kyaryunha/midi-clip

Midi Clip 0.10

05 Jun 02:40
Compare
Choose a tag to compare

Just updated setup.py and readme to help understand

Midi Clip 0.7

01 Jun 12:00
58f560e
Compare
Choose a tag to compare

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 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 ![ocean_0_30](https://github.com/kyaryunha/midi-clip/assets/37409087/1c11dbee-b297-41b2-bd62-5794101c8d8a) ![ocean_5_15](https://github.com/kyaryunha/midi-clip/assets/37409087/07abcb6b-7644-42a3-89fd-bf7a69573f3d)
Audio ./example/ocean_0_30.wav ./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.