-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to play note at the time I want #22
Comments
turn on multiple notes at the same time in the synth |
timing is controlled by rendering more samples
|
you need to feed every buffer, not just the last one or combine the buffers into one big one |
sure, the feed part should be like: Future.delayed(Duration(milliseconds: gapTime), () { just make sure, if I don't noteOff any notes, they will keep active in the following render. |
I found FlutterPcmSound is single threaded.
so what should I do, if I want my note not play one after another or play at the same time, but like this:
The text was updated successfully, but these errors were encountered: