Re: [chuck-users] Miniaudicle preferences error (saurec asks)
This means that MiniAudicle isn’t currently connected to a dac
(at least none with inputs).
Go into MA Preferences, Audio, and make sure you’re connected
to some dac. That should fix it. You might need to relaunch Mini
just to make sure it takes.
If that doesn’t work, try command line:
chuck --probe
which will show you which devices that chuck can see.
Try chuck
On Jul 16, 2019, at 9:00 AM, chuck-users-request@lists.cs.princeton.edu wrote:
Send chuck-users mailing list submissions to chuck-users@lists.cs.princeton.edu
To subscribe or unsubscribe via the World Wide Web, visit https://lists.cs.princeton.edu/mailman/listinfo/chuck-users or, via email, send a message with subject or body 'help' to chuck-users-request@lists.cs.princeton.edu
You can reach the person managing the list at chuck-users-owner@lists.cs.princeton.edu
When replying, please edit your Subject line so it is more specific than "Re: Contents of chuck-users digest..."
Today's Topics:
1. Re: Miniaudicle preferences error (sarerac)
----------------------------------------------------------------------
Message: 1 Date: Tue, 16 Jul 2019 12:55:25 +0200 From: sarerac
To: ChucK Users Mailing List Subject: Re: [chuck-users] Miniaudicle preferences error Message-ID: <117DEDF1-31F8-4774-82C0-1F56CC764CF5@gmail.com> Content-Type: text/plain; charset="utf-8" Hello there
I am doing ?classes? and ?objects? and i ?ve the next problem
in the code :
// Simple example of sound making class class Simple { //sound chain Impulse imp => ResonZ filt => dac;
// some default settings 100.0 => filt.Q => filt.gain; 1000.0 => filt.freq;
fun void freq(float f) { f => filt.freq;
}
fun void setQ(float Q) {
Q => filt.Q => filt.gain;
}
fun void setGain(float g)
{ g => imp.gain;
}
fun void noteOn (float volume) { volume => imp.next; }
}
Simple s;
while(true) {
Math.random2f(1100.0, 1200.0) => s.freq; Math.random2(1,200) => s.setQ; Math.random2f(.2,.8) => s.setGain; // play note 1 => s.noteOn; .1::second => now; }
My console monitor return:
[Untitled]:line(3): ugen's of type 'DAC' have no input - cannot => from another ugen... [simple_class]:line(5): ugen's of type 'DAC' have no input - cannot => from another ugen...
Someone knows what is happening Thank you
participants (1)
-
Perry Cook