Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.14 KB

README.md

File metadata and controls

40 lines (25 loc) · 1.14 KB

openmusic-oscillator

An immortal oscillator

Install with NPM

Demo

** YOU NEED SUPPORT FOR WEB COMPONENTS IN YOUR BROWSER BECAUSE WE'RE NOT SHIMMING ANYTHING IN **

Firefox: go to about:config, find dom.webcomponents.enabled and set it to true.

Chrome: maybe nothing to do?

Run npm install so it installs stuff for the demo. Then gulp build, and then you can open build/demo/index.html for the demo.

If you do changes in the code, you'll need to rebuild the demo. Use gulp build or gulp only for running build and setting up a watch loop that automatically rebuilds the demo as you change its files.

Usage

Install first: npm install openmusic-oscillator.

Then you can use it in your code:

var Oscillator = require('openmusic-oscillator');
var audioContext = new AudioContext();
var osc = Oscillator(audioContext);

osc.connect(audioContext.destination);
osc.start();

TO DO

  • explain more of the features
    • frequency
    • event scheduling
    • start/stop/clearSchedule
  • demo the features