Yotam Mann
Yotam Mann
Player uses `start` and `stop` instead of `triggerAttack`/`triggerRelease`. Try that out
Wrapping the media stream into a mediaStreamSource is exactly what the class currently does. Could you connect the UserMedia directly to an Analyser? something like this: ```ts const um =...
@chrisguttandin I'm not fully following, but if you have a fix for this, i would gladly accept the PR!
@drumnickydrum are you using [Tone.Transport.syncSignal](https://tonejs.github.io/docs/14.7.77/Transport.html#syncSignal)? Something like this should keep the delayTime in sync even when you adjust the transport.bpm ```js const feedbackDelay = new Tone.FeedbackDelay('4n') Tone.Transport.syncSignal(feedbackDelay.delayTime) ```
I had a chance to play around with this a little more. The `delayTime` attribute is synced, but doesn't seem like it's necessarily synced in the desired way. When you...
When i'm playing around with your code it is working as expected for me. but maybe i'm not understanding what the issue is. Here is what i'm doing and hearing:...
i think this makes sense. I'd be happy to accept a PR with this change. I might suggest that you could keep the parameters to to `open` just a single...
Thanks for the issue @positiv-prod, i'm able to recreate the issue on [email protected], but not on [email protected]. I'm looking into what might have changed with this component between those two...
Here's my codesandbox repro of this issue: https://codesandbox.io/s/magical-banzai-szrez?file=/src/index.ts
It seems like the error is being thrown from a call to `disconnect`, is there a part of your code where you invoke the `disconnect` method?