-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Write out an audio file #26
Comments
👍 we need this:) |
The way i achieved that:
|
[ context, jsNode ] = cc.getWebAudioComponents()
@rec = new Recorder jsNode,
workerPath: "vendor/recorderjs/recorderWorker.js"
|
awesome! thanks for the explanation ! And is there a way of getting one "jsNode" for each block of executed code? |
jsNode is created at only once and it is shared by every code. but, multiple nodes.. thanks! |
exactly! the way i see is: when you run a code you shall be able to get a node for that, and all nodes by default are connected to the "main" jsNode from "cc" which is the one that goes to the output. but being able to retrieve the node for each execution will give you extra routing options, you will be able to mix them from and external GUI, or route it through some non-coffee-collider efx, etcs. awesome stuff @mohayonao ! thanks keep rocking! |
No description provided.
The text was updated successfully, but these errors were encountered: