[Sndobj-devel] Jack Inputs
Status: Abandoned
Brought to you by:
veplaini
From: Daniel S. <das...@gm...> - 2009-06-10 15:58:48
|
Hey, I was wondering if its possible to create null jack inputs that I can route other software to through qjackctl. For example, if using something like ardour, anytime you create a new track or bus, it shows up in qjackctl under the ardour program. In contrast, sndobj displays the available inputs based on my hardware in qjackctl. I thought maybe just keep incrementing the number i want to connect to but it just loops around so outp = SndJackIO('sndobj') inp = outp sndin1 = SndIn(inp, 1) # accesses my first input of hardware sndin2 = SndIn(inp, 2) # accesses my second input of hardware sndin3 = SndIn(inp, 3) # accesses my first input of hardware I guess ideally id like to be able to make my mixer objects available to route out to other programs as well through the jack interface |