Hey everyone,
New user here, just came over from Max and SuperCollider to take a look. I’m trying to execute a very simple example. However, I’m having issues with audio input from my RME Babyface Pro using the ADAT channels, where I’m not hearing anything when this device is selected in settings. I’m using Mac OS X 14.7.2, and I’ve:
- Selected the audio inputs and outputs in Cabbage Settings and the audio bars do detect audio input
- Confirmed the input is detected in TotalMix and outputs correctly in Reaper
- Ensured microphone access is enabled in security settings
- Tested the built-in mic and that’s working as intended with this example
- Tested multiple input channels, but none seem to be working on the interface
- Confirmed that I receive audio output as intended from the audio interface
<Cabbage>
form size(500, 300), caption("Untitled")
</Cabbage>
<CsoundSynthesizer>
<CsOptions>
-o dac -i adc
-+rtaudio=coreaudio
</CsOptions>
<CsInstruments>
; Initialize the global variables
ksmps = 64
nchnls = 2
nchnls_i = 30
0dbfs = 1
instr Effect
aIn = inch(5)
//aComb = comb(aIn5, 3, 0.5)
//out(aComb)
kRms rms aIn ; Calculate RMS level
printks "RMS Level: %f\n", 0.1, kRms ; Print RMS level
out(aIn)
endin
</CsInstruments>
<CsScore>
i "Effect" 0 100
</CsScore>
</CsoundSynthesizer>
As you can see I’ve edited out any of the potential problematic parts. Any ideas are gratefully welcomed as I’d love to start exploring more!
Thank you