hello there I would like to run chuck with more than two outputs in jack (linux). To do so, I'm using the following command:
chuck --loop --out8
unfortunately, this command fails with:
[chuck]: (via rtaudio): no devices found for given stream parameters: ... RtApiJack: the Jack server does not support requested channels!
it looks like chuck automatically connects to the soundcard inputs and outputs - and if there are not enough I/O ports on the soundcard, it fails. Is there a way to start chuck without connecting inputs and outputs ? tom
There's a --silent option, but I don't know if this is what you
want... I never used it with jack
2010/10/5 Thomas Girod
hello there
I would like to run chuck with more than two outputs in jack (linux). To do so, I'm using the following command:
chuck --loop --out8
unfortunately, this command fails with:
[chuck]: (via rtaudio): no devices found for given stream parameters: ... RtApiJack: the Jack server does not support requested channels!
it looks like chuck automatically connects to the soundcard inputs and outputs - and if there are not enough I/O ports on the soundcard, it fails.
Is there a way to start chuck without connecting inputs and outputs ?
tom
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
-- http://www.twitter.com/lfzawacki http://www.linesocode.wordpress.com http://www.umblag.wordpress.com
Unfortunately the --silent option do not declare jack I/Os at all. On Tue, Oct 05, 2010 at 04:37:51PM -0300, Lucas Zawacki wrote:
There's a --silent option, but I don't know if this is what you want... I never used it with jack
2010/10/5 Thomas Girod
: hello there
I would like to run chuck with more than two outputs in jack (linux). To do so, I'm using the following command:
chuck --loop --out8
unfortunately, this command fails with:
[chuck]: (via rtaudio): no devices found for given stream parameters: ... RtApiJack: the Jack server does not support requested channels!
it looks like chuck automatically connects to the soundcard inputs and outputs - and if there are not enough I/O ports on the soundcard, it fails.
Is there a way to start chuck without connecting inputs and outputs ?
tom
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
-- http://www.twitter.com/lfzawacki http://www.linesocode.wordpress.com http://www.umblag.wordpress.com
On 2010-10-05 21:10, Thomas Girod wrote:
Is there a way to start chuck without connecting inputs and outputs ?
You could apply the attached patch to the chuck source. It simply disables the autoconnect code, so chuck *never* tries to connect to jack. In general I prefer that jack clients doesn't connect to jack... -- Atte http://atte.dk http://modlys.dk
thank you, that is actually what I did myself in the end ... tom On Thu, Oct 07, 2010 at 08:20:34PM +0200, Atte André Jensen wrote:
On 2010-10-05 21:10, Thomas Girod wrote:
Is there a way to start chuck without connecting inputs and outputs ?
You could apply the attached patch to the chuck source. It simply disables the autoconnect code, so chuck *never* tries to connect to jack. In general I prefer that jack clients doesn't connect to jack...
-- Atte
2010/10/7 Atte André Jensen
You could apply the attached patch to the chuck source. It simply disables the autoconnect code, so chuck *never* tries to connect to jack. In general I prefer that jack clients doesn't connect to jack...
Seeing as how both behaviours make sense for different situations; couldn't we merge this patch in, then control the behaviour through a commandline flag? Yours, Kas.
On 2010-10-07 21:55, Kassen wrote:
Seeing as how both behaviours make sense for different situations; couldn't we merge this patch in, then control the behaviour through a commandline flag?
That'd be lovely (I could probably even wrap it up myself, but I just needed chuck to *not* connect). But from where could such an update be downloaded? It doesn't seem likely that there's a release coming out any time soon... Is there a software repo somewhere? -- Atte http://atte.dk http://modlys.dk
participants (4)
-
Atte André Jensen
-
Kassen
-
Lucas Zawacki
-
Thomas Girod