Catsvilles

Results 46 comments of Catsvilles

@benwiley4000 First of all - thank you very much for your detailed reply yesterday! Since yesterday I'm trying to put together what we've discussed but unfortunately, I run into errors...

@benwiley4000 Hi! thanks for getting back to me but this is already not actual to me as I moved completely from React and do things now in other lib and...

Use [OfflineAudioContext](https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext) Let me know if you need more details!

@rmallick6806 Hi, untested code example just from my head: const offlineContext = new OfflineAudioContext( 2, 44100 * durationInSeconds, 44100 ); //Setting the Pizzicato context to offlineContext Pizzicato.context = offlineContext; //You...

It's clear that initially Pizzicato wasn't created with OfflineContext in mind. As I said, there is a problem with loaded files, thus I'm using this hardcoded sleep() function, if you...

@AnasProgrammer2 Just use OfflineAudioContext, there are tons of examples here in the issues, search for it :) For example - #124

@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:...

@doncabreraphone Hi, use OfflineAudioContext I posted examples in this issue https://github.com/alemangui/pizzicato/issues/124

> For the rendered audio I have made some small changes to a version of Pizzicato to use an `OfflineAudioContext` and then queuing Pizzicato sounds on a timeline, which then...

@christoph-phillips Thank you very much for sharing! Looks like it records only while streaming, like with MediaRecorder? Or there is still way just to render Pizzicato with OfflineAudioContext and get...