Skip to content

Instantly share code, notes, and snippets.

@antimatter15
Last active August 25, 2016 02:01
Show Gist options
  • Save antimatter15/f2ff5e917d93b484488bd5b9335548ad to your computer and use it in GitHub Desktop.
Save antimatter15/f2ff5e917d93b484488bd5b9335548ad to your computer and use it in GitHub Desktop.
Tiny Music
export default new AudioContext();
import TinyMusic from 'tinymusic';
import ac from './ac.js'
// set the playback tempo (120 beats per minute)
var tempo = 120;
// create a new sequence
var sequence = new TinyMusic.Sequence( ac, tempo, [
'G3 q',
'E4 q',
'C4 h'
]);
// disable looping
sequence.loop = false;
sequence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment