midiguchi
Version:
MIDI I/O with Bacon.js
368 lines (222 loc) • 8.05 kB
Markdown
Midiguchi
=========
Midiguchi is a library to let you route and modify MIDI messages
in a very flexible way, thanks to [Bacon.js][].
It's inspired by [Midipipe](http://www.subtlesoft.square7.net/)
but more hacker-friendly.
What you can do with it:
------------------------
* Log MIDI messages from your MIDI input device.
* Route MIDI messages from an input port to output port.
* Transpose notes from your keyboard before it hits your DAW.
* Combine multiple MIDI inputs into one output.
* Perform arbitrary MIDI message manipulations, or even generate them.
Table of Contents
-----------------
HERETOC
## Basic Concepts {#basic}
### Functional Reactive Programming and Bacon.js {#basic-frp}
If you want to know more about Functional Reactive Programming,
check out [Bacon.js][].
Since Midiguchi is based on Bacon.js,
knowing it will help a lot.
Anyways, here is the basic concept using Bacon.js:
An EventStream emits events.
There are few sources of event streams, such as your MIDI keyboard.
Other streams are created by combining and transforming existing streams.
This allows you to filter, manipulate, and transpose notes easily.

### Input Stream and Output Bus {#basic-io}
Midiguchi provides two basic streams for raw MIDI events.

## Usage and Examples {#usage}
```coffeescript
口 = require('midiguchi')
```
### List Input and Output Ports {#usage-list}
API: [[#api-input-output]]
```coffeescript
console.log(口.input.ports)
console.log(口.output.ports)
```
### MIDI Input Stream {#usage-input}
A MIDI Input Stream is a Bacon.js EventStream from a MIDI port.
It will emit MIDI events.
```coffeescript
input = 口.input.open('nanoKEY2 KEYBOARD')
input = 口.input.open(0)
input = 口.input.virtual('Virtual Input Name')
```
This will log the MIDI messages sent from your keyboard:
```coffeescript
口.input.open('nanoKEY2 KEYBOARD').log()
###
[ 144, 72, 76 ]
[ 128, 72, 64 ]
[ 144, 76, 80 ]
[ 128, 76, 64 ]
[ 144, 79, 127 ]
[ 128, 79, 64 ]
###
```
### MIDI Output Bus {#usage-output}
A MIDI Output Bus is a Bacon.js Bus that you can plug EventStreams
```coffeescript
output = 口.output.open('USB MIDI Interface')
output = 口.output.open(0)
output = 口.output.virtual('Virtual Input Name')
```
### MIDI Routing {#usage-routing}
This code will route MIDI events from my nanoKEY2 to my Chromatone.
```coffeescript
input = 口.input.open('nanoKEY2 KEYBOARD')
output = 口.output.open('USB MIDI Interface')
output.plug(input)
```

### Transposition {#usage-transpose}
My nanoKEY2 cannot transpose notes.
But with Midiguchi this is very easy.
```coffeescript
口 = require('midiguchi')
input = 口.input.open('nanoKEY2 KEYBOARD')
transposed = 口.transpose(input, 3)
output = 口.output.open('USB MIDI Interface')
output.plug(transposed)
```
[[#api-transpose]] is an example of a function.
It takes an EventStream
and returns another EventStream with transposed Note On/Off events.
You can plug the transposed stream into the output, as before.

### Virtual Ports {#usage-virtual}
According to [node-midi][]'s documentation,
you can open a virtual port to send MIDI messages into other applications.
As for me, I primarily use my MIDI keyboards with [MainStage][],
so I have to send the MIDI messages through a virtual output
and into MainStage's input.
```coffeescript
口 = require('midiguchi')
input = 口.input.open('nanoKEY2 KEYBOARD')
transposed = 口.transpose(input, 3)
output = 口.output.virtual('Midiguchi')
output.plug(transposed)
```
### Remapping Notes {#usage-remap}
Some keyboards with buttons doesn't support note remapping.
You can use Midiguchi to remap them to any key you want.
```coffee
mapping =
38: 36
40: 38
41: 40
43: 50
45: 48
47: 47
48: 45
50: 43
output.plug(口.mapNote(input, mapping))
```
API: [[#api-mapNote-object]]
You can also use a function to remap notes.
This will map every note to random notes.
```coffee
mapping = (note) ->
# note :: { channel, key, velocity }
note.key = 36 + Math.floor(Math.random() * 49)
return note
```
You can also return an array of notes, and they will be played as a chord.
```coffee
mapping = ({ channel, key, velocity }) ->
note = (add) -> { channel, key: key + add, velocity }
return [note(0), note(4), note(7)]
```
API: [[#api-mapNote-function]]
### Processing Note Events Separately from Other Events {#usage-splitNote}
Midiguchi has a `口.splitNote` function that will split one stream into two:
one with note events, and the other without.
This is useful if you want to create some kind of "delay" effect.
In this example, when you hit any note, after 40 milliseconds,
it will also play the same note in the next offset.
This is done by transposing and adding a delay, and merge with original notes stream:
```coffee
result = 口.splitNote(input, (notes, others) ->
notes2 = 口.transpose(notes.delay(40), 12)
Bacon.mergeAll(notes, notes2, others)
)
output.plug(result)
```

A delay effect. Whatever you play, it will play with lower velocity 400ms later, for 3 times:
```coffee
changeVelocity = (multiplier) -> (event) ->
event.velocity *= multiplier
return event
delay = (stream) ->
口.mapNote(stream.delay(400), changeVelocity(0.7))
result = 口.splitNote(input, (notes, others) ->
delay1 = delay(notes)
delay2 = delay(delay1)
delay3 = delay(delay2)
Bacon.mergeAll(notes, delay1, delay2, delay3, others)
)
output.plug(result)
```
API: [[#api-splitNote]]
## API {#api}
### 口.input and 口.output {#api-input-output}
```javascript
口.input.ports
口.input.open(number or name)
口.input.virtual(name)
口.output.ports
口.output.open(number or name)
口.output.virtual(name)
```
For usage, see:
* [[#usage-list]]
* [[#usage-input]]
* [[#usage-output]]
* [[#usage-routing]]
* [[#usage-virtual]]
### 口.transpose(stream, transposition) {#api-transpose}
Returns a transposed version of the stream.
`transposition` can be a number or a Bacon.js Property.
For usage, see [[#usage-transpose]]
### 口.mapNote(stream, mapping) {#api-mapNote-object}
Returns a stream with notes remapped.
For usage, see [[#usage-remap]]
### 口.mapNote(stream, mapper(event, values...), properties) {#api-mapNote-function}
Returns a stream with notes remapped. Instead of using a fixed mapping,
you can map them using an arbitrary function.
You can also send Bacon.js properties into `properties` parameter,
and the current value will be sampled into `mapper`'s `values` parameter.
For usage, see [[#usage-remap]]
### 口.splitNote(stream, callback(notes, others)) {#api-splitNote}
Separates the stream into two streams:
1. Stream of note events, `notes`, and
2. Stream of other events, `others`.
Then calls the callback function, and returns whatever that function returns.
Usually, you would modify the notes stream, and merge it back with the others.
For usage, see [[#usage-splitNote]].
### 口.processNote(stream, callback(notes)) {#api-processNote}
Just like `口.splitNote` but does not pass `others` to the callback
and merges the `others` back automatically.
### M = require('midiguchi/midi_util') {#api-util}
A utility for dealing with MIDI events.
These functions checks if an event is a note on, off, or any note event:
* M.isNoteOn(event)
* M.isNoteOff(event)
* M.isNote(event)
These functions receives a note event, and determines its...
* M.channel(event)
* M.key(event)
* M.velocity(event)
This function constructs a MIDI note event from the arguments:
* M.create.note(on, channel, key, velocity)
* If `on` is true, you get a Note On event.
* If `on` is false, you get a Note Off event.
[node-midi]: https://github.com/justinlatimer/node-midi
[Bacon.js]: https://github.com/baconjs/bacon.js
[MainStage]: http://www.apple.com/mainstage/