midiguchi

所属分类:图形图象
开发工具:JavaScript
文件大小:0KB
下载次数:0
上传日期:2014-08-17 14:06:14
上 传 者sh-1993
说明:  midiguchi-使用Bacon.js.Transpose、remap、filter、Manipulary或Synthesis的函数 React编程的MIDI I/O...,
(midiguchi - MIDI I/O using Functional Reactive Programming with Bacon.js. Transpose, remap, filter, manipulate arbitrarily, or synthesize MIDI events with ease.)

文件列表:
doc_images/ (0, 2014-08-17)
doc_images/01_eventstream.png (57763, 2014-08-17)
doc_images/02_io.png (58196, 2014-08-17)
doc_images/03_route.png (88421, 2014-08-17)
doc_images/04_transpose.png (31689, 2014-08-17)
doc_images/05_octave.png (36452, 2014-08-17)
index.js (292, 2014-08-17)
io.js (1485, 2014-08-17)
map_note.js (2352, 2014-08-17)
midi_util.js (746, 2014-08-17)
package.json (729, 2014-08-17)
process_note.js (185, 2014-08-17)
split_note.js (238, 2014-08-17)
test/ (0, 2014-08-17)
test/transpose_spec.js (1604, 2014-08-17)
transpose.js (282, 2014-08-17)

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 ----------------- * [Basic Concepts](#basic) * [Functional Reactive Programming and Bacon.js](#basic-frp) * [Input Stream and Output Bus](#basic-io) * [Usage and Examples](#usage) * [List Input and Output Ports](#usage-list) * [MIDI Input Stream](#usage-input) * [MIDI Output Bus](#usage-output) * [MIDI Routing](#usage-routing) * [Transposition](#usage-transpose) * [Virtual Ports](#usage-virtual) * [Remapping Notes](#usage-remap) * [Processing Note Events Separately from Other Events](#usage-splitNote) * [API](#api) * [口.input and 口.output](#api-input-output) * [口.transpose(transposition)(stream)](#api-transpose) * [口.mapNote(mapping)(stream)](#api-mapNote-object) * [口.mapNote(transformer(eventStream))(stream)](#api-mapNote-function) * [口.splitNote(callback(notes, others))(stream)](#api-splitNote) * [口.processNote(callback(notes))(stream)](#api-processNote) * [M = require('midiguchi/midi_util')](#api-util) ## 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](doc_images/01_eventstream.png) ### Input Stream and Output Bus Midiguchi provides two basic streams for raw MIDI events. ![IO Stream and Bus](doc_images/02_io.png) ## Usage and Examples ```coffeescript 口 = require('midiguchi') ``` ### List Input and Output Ports API: [口.input and 口.output](#api-input-output) ```coffeescript 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. ```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 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 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) ``` ![Routing](doc_images/03_route.png) ### Transposition My nanoKEY2 cannot transpose notes. But with Midiguchi this is very easy. ```coffeescript 口 = require('midiguchi') input = 口.input.open('nanoKEY2 KEYBOARD') transposed = 口.transpose(3)(input) output = 口.output.open('USB MIDI Interface') output.plug(transposed) ``` [口.transpose(transposition)(stream)](#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. ![Transposition](doc_images/04_transpose.png) ### 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. ```coffeescript 口 = require('midiguchi') input = 口.input.open('nanoKEY2 KEYBOARD') transposed = 口.transpose(3)(input) 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. ```coffee mapping = 38: 36 40: 38 41: 40 43: 50 45: 48 47: 47 48: 45 50: 43 output.plug(口.mapNote(mapping)(input)) ``` API: [口.mapNote(mapping)(stream)](#api-mapNote-object) You can also use a function to remap notes. This will map every note to random notes. ```coffee mapping = (stream) -> stream.map (note) -> # note :: { id, 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 = (stream) -> stream.flatMap ({ id, channel, key, velocity }) -> note = (add) -> { id, channel, key: key + add, velocity } return Bacon.fromArray([note(0), note(4), note(7)]) ``` API: [口.mapNote(transformer(eventStream))(stream)](#api-mapNote-function) ### 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: ```coffee result = 口.splitNote((notes, others) -> notes2 = 口.transpose(12)(notes.delay(40)) Bacon.mergeAll(notes, notes2, others))(input) output.plug(result) ``` ![Playing notes in the next octave...](doc_images/05_octave.png) A delay effect. Whatever you play, it will play with lower velocity 400ms later, for 3 times: ```coffee changeVelocity = (multiplier) -> (stream) -> stream.map (event) -> event.velocity *= multiplier return event delay = (stream) -> 口.mapNote(changeVelocity(0.7))(stream.delay(400)) result = 口.splitNote((notes, others) -> delay1 = delay(notes) delay2 = delay(delay1) delay3 = delay(delay2) Bacon.mergeAll(notes, delay1, delay2, delay3, others))(input) output.plug(result) ``` API: [口.splitNote(callback(notes, others))(stream)](#api-splitNote) ## API ### 口.input and 口.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: * [List Input and Output Ports](#usage-list) * [MIDI Input Stream](#usage-input) * [MIDI Output Bus](#usage-output) * [MIDI Routing](#usage-routing) * [Virtual Ports](#usage-virtual) ### 口.transpose(transposition)(stream) Returns a transposed version of the stream. `transposition` can be a number or a Bacon.js Property. For usage, see [Transposition](#usage-transpose) ### 口.mapNote(mapping)(stream) Returns a stream with notes remapped. For usage, see [Remapping Notes](#usage-remap) ### 口.mapNote(transformer(eventStream))(stream) 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](#usage-remap) ### 口.splitNote(callback(notes, others))(stream) 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](#usage-splitNote). ### 口.processNote(callback(notes))(stream) 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. [node-midi]: https://github.com/justinlatimer/node-midi [Bacon.js]: https://github.com/baconjs/bacon.js [MainStage]: http://www.apple.com/mainstage/

近期下载者

相关文件


收藏者