beeplay
beeplay copied to clipboard
Write a song in JavaScript
Sync with this nice proposal https://github.com/rwaldron/johnny-five/issues/372#issuecomment-45456970 ``` beeplay.play({ song: [ ["C4", 1 / 4], ["D4", 1 / 4], ["F4", 1 / 4], ["D4", 1 / 4], ["A4", 1 / 4],...
Something like this http://codepen.io/JAStanton/pen/inoBb ``` js var intro = beeplay({bpm: 120}).play(null, 2)('D#5', 1/4)('E5', 1/4); ```
:cat: < I need loooooop features! - [ ] loop option - [ ] da capo - [ ] dal segno Like the following: ``` beeplay({bpm: 120, loop: true}) .play(null,...