Metadata-Version: 2.1
Name: mdpw
Version: 0.0.2
Summary: Generate MIDI file from Array of Array data.
Home-page: http://github.com/cwbp/mdpw
Author: cwbp
Author-email: cwbp@cwbp.com
License: MIT
Keywords: MIDI
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Multimedia :: Sound/Audio :: MIDI
Requires-Dist: pretty-midi

MDPW
====
This package generates a PrettyMIDI object from Array of Array. 
Here is a sample code.
:: 

 import mdpw
 a = ['s',['n',64,1,64,1],['n',68,1,64,1],['n',71,1,64,1],
    ['c',['n',64,1,64,1],['n',68,1,64,1],['n',71,1,64,1]]]
 mdpw.compile(a, 120).write("hello.mid")


'n' means a note and followed values are pitch, duration, velocity and instrument. The instrument 129 means Drum.
's' means to play sequentially and 'c' means to play simultaneously.


