Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andormade/midium
Midium is a Web MIDI API wrapper and framwork for composing generative music
https://github.com/andormade/midium
Last synced: 9 days ago
JSON representation
Midium is a Web MIDI API wrapper and framwork for composing generative music
- Host: GitHub
- URL: https://github.com/andormade/midium
- Owner: andormade
- Created: 2015-11-24T21:21:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-26T13:06:45.000Z (over 8 years ago)
- Last Synced: 2024-09-18T11:55:22.580Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 256 KB
- Stars: 10
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Midium - Web MIDI API wrapper
Midium is a very simple, device oriented Web MIDI API wrapper. It makes you able to send and receive notes and other messages from MIDI devices with writing less code.TODO: write documentation
```javascript
var moog = Midium('moog');
moog.notePress('c#4', 1000);
``````javascript
var all = Midium.select('');all.onNoteOn(function(event) {
playSound(event.note);
});all.onNoteOff(function(event) {
stopSound(event.note);
});
```