- Midi note number to english note string
- Midi note number to fundamental frequency
- English musical note to midi note number
translate midi between different thingies - primarily for my personal use with tonejs
- Midi Note Number <=> English Note String
- note number to frequencies
- midi wrapper for incoming midi signals
- note string to frequencies helper
- add translations to non-english notes
Use:
import { noteToString, noteToFrequency } from 'midi-translate'
let incomingNote = Midi.getNote('port1') // however you get midi notes, do that
let stringNote = noteToString(incomingNote)
let noteFrequency = noteToFrequency(incomingNote)