pizzicato icon indicating copy to clipboard operation
pizzicato copied to clipboard

[Question] Integrate with beet.js

Open pr1ntr opened this issue 3 years ago • 1 comments

I am looking to use beet.js for a musical project. But I like the effects pizzicato and am wondering if its possible to use pizzicato with an audiocontext that is being used by beet,js. Something like beet.js -> pizzicato.js. Thanks.

pr1ntr avatar Mar 19 '21 22:03 pr1ntr

@pr1ntr Should be possible. As I can see from beet.js examples you have to create a new context anyway.

var context = new AudioContext(); var beet = new Beet({ context: context }); Just set Pizzicato.context = context

And then you can use them together with one shared context :)

Catsvilles avatar Jun 03 '21 06:06 Catsvilles