-
Notifications
You must be signed in to change notification settings - Fork 77
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
sharing synth and using by superdirt #38
Comments
You are welcome! Your analysis is correct: you need to register the SynthDef in the SynthDescLib (what normally happens when you call A good solution is to use the Utopia network music library (https://github.com/muellmusik/Utopia):
The documentation is still mostly absent. You could try the following setup (on both computers):
If that doesn't work, you could also hack something much simpler. But the above will give you a lot of useful things. |
@telephon Actually we already some system orking here but kind of stuck at sharing synth, we have something like this client running on both of our sc
and we just sync synth by so for Not sure if I'm explain clear enough. Will look at the Utopia source maybe that will help |
Yes, you can of course send the byte array to the scsynth, but your def is missing on the sclang side. There are many ways to send this info, but the best solution I think is in Utopia. |
@telephon
write to a file and then use I'll close the issue then. Thanks so much Julian! |
hi @telephon,
I'm having a little problem about sharing synth to used with superdirt, maybe you could give some guide on this
I'm using some custom server to sharing sc sytndef with my frined. We are using some like
and the hub forward msg to our client, and our client using
s.listSendMsg(msg);
to execute this, so we can both have the SynthDeftest
on both our machine.But when we're using superdirt here, it seems not working. And we found it's trying to found syntndef from
SynthDescLib
, do you know any way to solve this somehow?I think our client is getting the
Int8Array
here, not sure how to load that inSynthDescLib
.Again , thanks for hardwork on this!
The text was updated successfully, but these errors were encountered: