mdpw

0.0.3 • Public • Published

This package is a generator for MIDI file from Array of Array.
Here is a sample code.
----
const mdpw = require("mdpw");
var 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]]];
var p = mdpw.compile(a, 120);
mdpw.save(p, "sample.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.

Readme

Keywords

Package Sidebar

Install

npm i mdpw

Weekly Downloads

0

Version

0.0.3

License

MIT

Unpacked Size

10 kB

Total Files

6

Last publish

Collaborators

  • cwbp