Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cwilso/midi-synth
A MIDI-driven Web Audio synthesizer
https://github.com/cwilso/midi-synth
Last synced: 13 days ago
JSON representation
A MIDI-driven Web Audio synthesizer
- Host: GitHub
- URL: https://github.com/cwilso/midi-synth
- Owner: cwilso
- License: mit
- Created: 2012-06-10T21:24:37.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-12-24T05:52:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T17:57:36.303Z (about 2 months ago)
- Language: HTML
- Size: 1.11 MB
- Stars: 587
- Watchers: 54
- Forks: 160
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MIDI Synth
This application is a analog synthesizer simulation built on the [Web Audio API](https://webaudio.github.io/web-audio-api/). It is very loosely based on the architecture of a [Moog Prodigy](http://www.vintagesynth.com/moog/prodigy.php) synthesizer, although this is a polyphonic synthesizer, and it lacks the oscillator sync and glide effects of the Prodigy. (AKA: this is not intended to be a replication of the Prodigy, so pleased don't tell me how crappy a reproduction it is! :)
This uses my [Web MIDI Polyfill](https://github.com/cwilso/WebMIDIAPIShim) to add MIDI support via the [Web MIDI API](http://webaudio.github.io/web-midi-api/) - in fact, I partly wrote this as a test case for the polyfill and the MIDI API itself, so if you have a MIDI keyboard attached, check it out. The polyfill uses Java to access the MIDI device, so if you're wondering why Java is loading, that's why. It may take a few seconds for MIDI to become active - the library takes a while to load - but when the ring turns gray (instead of blue), it's ready. If you have a native implementation of the Web MIDI API in your browser, the polyfill shouldn't load - at the time of this writing, Chrome Stable (from version 43) has the only such implementation. Earlier versions of Chrome (from version 33) can enable Web MIDI via chrome://flags/#enable-web-midi
You can try it out live at https://webaudiodemos.appspot.com/midi-synth/index.html.
Check it out, feel free to fork, submit pull requests, etc.
-Chris