Advertisement
Guest User

Untitled

a guest
Jan 29th, 2014
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. MIDI FORMAT
  2. -----------
  3.  
  4. # event, wait-time, channel, note number, volume
  5. ['note_on', 0, 1, 25, 96],
  6. ['note_off', 96, 1, 25, 0],
  7. ['note_on', 0, 1, 29, 96],
  8. ['note_off', 96, 1, 29, 0],
  9. ['note_on', 0, 1, 27, 96],
  10. ['note_off', 96, 1, 27, 0],
  11. ['note_on', 0, 1, 20, 96],
  12. ['note_off', 192, 1, 20, 0],
  13.  
  14. * duration: expressed as a quarter note, half note, etc.
  15. * pitch: expressed as a note-letter and octave number, e.g., "A5"
  16. * volume: expressed either numerically or as one of the common
  17. abbreviations from sheet music, e.g., "mf" for "medium-loud"
  18. * and, for purposes of MIDI, a logical channel number between 0
  19. and 15
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement