midiguchi

0.3.0 • Public • Published

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 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

Basic Concepts

Functional Reactive Programming and Bacon.js

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.

EventStream concept

Input Stream and Output Bus

Midiguchi provides two basic streams for raw MIDI events.

IO Stream and Bus

Usage and Examples

口 = require('midiguchi')

List Input and Output Ports

API: 口.input and 口.output

console.log(.input.ports)
console.log(.output.ports)

MIDI Input Stream

A MIDI Input Stream is a Bacon.js EventStream from a MIDI port. It will emit MIDI events.

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:

.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

A MIDI Output Bus is a Bacon.js Bus that you can plug EventStreams

output = 口.output.open('USB MIDI Interface')
output = 口.output.open(0)
output = 口.output.virtual('Virtual Input Name')

MIDI Routing

This code will route MIDI events from my nanoKEY2 to my Chromatone.

input = 口.input.open('nanoKEY2 KEYBOARD')
output = 口.output.open('USB MIDI Interface')
output.plug(input)

Routing

Transposition

My nanoKEY2 cannot transpose notes. But with Midiguchi this is very easy.

口 = require('midiguchi')
 
input = 口.input.open('nanoKEY2 KEYBOARD')
transposed = 口.transpose(input3)
 
output = 口.output.open('USB MIDI Interface')
output.plug(transposed)

口.transpose(stream, transposition) 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.

Transposition

Virtual Ports

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.

口 = require('midiguchi')
 
input = 口.input.open('nanoKEY2 KEYBOARD')
transposed = 口.transpose(input3)
 
output = 口.output.virtual('Midiguchi')
output.plug(transposed)

Remapping Notes

Some keyboards with buttons doesn't support note remapping. You can use Midiguchi to remap them to any key you want.

mapping =
38: 36
40: 38
41: 40
43: 50
45: 48
47: 47
48: 45
50: 43
 
output.plug(.mapNote(inputmapping))

API: 口.mapNote(stream, mapping)

You can also use a function to remap notes. This will map every note to random notes.

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.

mapping = ({ channel, key, velocity }) ->
note = (add) -> { channelkey: key + addvelocity }
return [note(0)note(4)note(7)]

API: 口.mapNote(stream, mapper(event, values...), properties)

Processing Note Events Separately from Other Events

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:

result = 口.splitNote(input(notes, others) ->
notes2 = 口.transpose(notes.delay(40)12)
Bacon.mergeAll(notesnotes2others)
)
output.plug(result)

Playing notes in the next octave...

A delay effect. Whatever you play, it will play with lower velocity 400ms later, for 3 times:

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(notesdelay1delay2delay3others)
)
 
output.plug(result)

API: 口.splitNote(stream, callback(notes, others))

API

口.input and 口.output

.input.ports
.input.open(number or name)
.input.virtual(name)
 
.output.ports
.output.open(number or name)
.output.virtual(name)

For usage, see:

口.transpose(stream, transposition)

Returns a transposed version of the stream. transposition can be a number or a Bacon.js Property.

For usage, see Transposition

口.mapNote(stream, mapping)

Returns a stream with notes remapped.

For usage, see Remapping Notes

口.mapNote(stream, mapper(event, values...), properties)

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 Remapping Notes

口.splitNote(stream, callback(notes, others))

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 Processing Note Events Separately from Other Events.

口.processNote(stream, callback(notes))

Just like 口.splitNote but does not pass others to the callback and merges the others back automatically.

M = require('midiguchi/midi_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.

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i midiguchi

Weekly Downloads

0

Version

0.3.0

License

ISC

Last publish

Collaborators

  • dtinth