Replies: 3 comments
-
No idea why it isn’t working off the top of my head. I’ll download SuperCollider and try it out.
Devin
… On Mar 26, 2020, at 8:42 AM, Konstantinos Vasilakos ***@***.***> wrote:
I am trying to use Hangouts for testing reasons, routing SuperCollider(fig1) to Hangouts(fig2) for example. Although I can see SC used the out that I am selecting succesfully the sound is not ported in the hangouts when I am selecting the hangouts:mic option set to BlackHole, similarly I tried everything I read on this git's issues including using aggregate and or multiout devices configs but no success.
Fig 1.
Fig 2.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
I'm new to this and was trying to set this up using Reaper DAW as a mixer to route output to OBS using an aggregate device of Blackhole/Audio Interface(Zoom H5) in Reaper. I was getting no audio in OBS. Turned out that one has to configure the routing in Reaper so that the aggregate device doesn't output back to the input device (in my case, I was using a Zoom H5). Once I used the routing matrix (not in the audio preferences; an additional step) in Reaper to include Blackmagic channels, OBS was able to see the Reapers audio output. Maybe some kind of routing necessary in SuperCollider as well? |
Beta Was this translation helpful? Give feedback.
-
If I am getting it right, you want SC to use BlackHole as output, assuming yes: evaluate this block as one piece of code: (
// s = Server.local;
//using the on-board mic, unnecessary here but handy
s.options.inDevice = "Built-in Microph";
//must match to the booting info for the audio drivers provided as strings in post window.
s.options.outDevice = "BlackHole 16ch";
// new settings will take effect after rebooting the server.
s.reboot;
) |
Beta Was this translation helpful? Give feedback.
-
System: MacOS(10.15.3 Catalina).
I am trying to use Hangouts for testing reasons, routing SuperCollider(fig1) to Hangouts(fig2) for example. Although I can see SC used the out that I am selecting succesfully the sound is not ported in the hangouts when I am selecting the hangouts:mic option set to BlackHole, similarly I tried everything I read on this git's issues including using aggregate and or multiout devices configs but no success. Settings attached (fig3).
Fig 1.
Fig 2.
Fig 3
Beta Was this translation helpful? Give feedback.
All reactions