Git Product home page Git Product logo

midival-core's Introduction

@midival/core

midival is the library to handle MIDI messages in JavaScript (TypeScript) with ease. It provides simple programming interface to interact with both MIDI IN and MIDI OUT.

The library is currently in alpha state. Feel free to contribute, post bug reports, comments and ideas.

More information: midival.github.io

Installation

yarn add @midival/core

Getting started

To get started you need to initialise the library and ask for available devices:

import { MIDIVal } from "@midival/core";

MIDIVal.connect().then((accessObject) => {
  console.log("Inputs", accessObject.inputs);
  console.log("Outputs", accessObject.outputs);
});

Listening to devices

You can also listen to new devices and react when they are connected:

import { MIDIVal } from "@midival/core";

MIDIVal.onDeviceConnected((device) => {
  console.log("Device", device);
});

You can also listen to disconnect events:

import { MIDIVal } from "@midival/core";

MIDIVal.onDeviceDisconnected((device) => {
  console.log("Device", device);
});

Once you obtain reference to device, you can use it by creating MIDIValInput / MIDIValOutput object from it:

MIDIVal.connect().then((accessObject) => {
  const input = new MIDIValInput(accessObject.inputs[0]);
});

MIDI Inputs

Once you obtain access to the MIDI Input you can interact with it.

Note On

You can subscribe to note on.

input.onAllNoteOn(({ note, velocity }) => {
  console.log("Note On:", note, "velocity:", velocity);
});

You can also subscribe to a specific key:

input.onNoteOn(60, ({ velocity }) => {
  console.log("C pressed with velocity", velocity);
});

Note Off

You can subscribe to note off. The note off takes into account both Note Off message as well as Note On with Velocity 0.

input.onAllNoteOff(({ note }) => {
  console.log("Note Off:", note);
});

You can also subscribe to a specific key:

input.onNoteOff(60, ({ velocity }) => {
  console.log("C depressed with velocity", velocity); // velocity should be 0.
});

Control Change

To listen to Control Change (MIDI CC) messages like modulation, synth parameter change and more, you can do the following:

input.onAllControlChange(({ control, value }) => {
  console.log(`Param: ${control}, value: ${value}`);
});

You can also listen to the single control parameter (like Modulation wheel, Volume or Pan only). The full table with MIDI CC messages can be found in the official MIDI CC documentation.

input.onControlChange(7, ({value}) => {
    console.log('Volume change to value:', value));
});

input.onControlChange(1, ({value}) => {
    console.log('Modulation Wheel value changed to:', value);
})

Program Change

You can listen to program change messages:

input.onAllProgramChange(({ program, value }) => {
  console.log(`Program ${program} changed to: ${value}`);
});

You can also listen to a single program channel:

input.onProgramChange(1, ({ value }) => {
  console.log(`Program 1 changed to:`, value);
});

Poly Key Pressure

You can listen to Poly Key Pressure:

input.onAllPolyKeyPressure((midiMessage) => {});

you can listen to a specific key:

input.onPolyKeyPressure(5, (midiMessage) => {});

Systex

You can listen to systex message:

input.onSysex((midiMessage) => {});

All Sounds Off

You can listen to all sounds off message

input.onAllSoundsOff(() => {});

Reset All Controllers

You can listen to the signal to reset all controllers

input.onResetAllControllers(() => {});

Local Control Change

Under construction

All Notes Off

You can listen to all notes off

input.onAllNotesOff(() => {});

MIDI Clock

You can listen to MIDI Clock messages:

  • onClockStart
  • onClockStop
  • onClockContinue
  • onClockPulse - sent 24 times every quarternote.

To Be Added

The following features are planned to be added to MIDI Input:

  • Better support for sysex
  • Better documentation

Disconnect

If you want to stop listening to all the messages and unregister all callbacks simply call:

input.disconnect();

Changelog and migration guide

For changelog see CHANGELOG.md.

For migration guide see MIGRATION.md.

Community

Join our Discord Community to ask questions or discuss all MIDI related topics!

midival-core's People

Contributors

kulak-at avatar spasma avatar dependabot[bot] avatar github-actions[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.