search for: supercollid

Displaying 2 results from an estimated 2 matches for "supercollid".

Did you mean: supercollider
2020 Oct 15
2
Parallel dialing / running dialplan process in background
...) (also running as continuous process, until hangup). This is my current dialplan attempt: --------------------- [from-internal] exten = 514316XXXX,1,Answer() same => n,Playback(hello) same => n,Dial(LOCAL/100 at extensions&LOCAL/101 at extensions) [extensions] exten => 100,1,JACK([i(SuperCollider:in_1), o(SuperCollider:out_1)]) same => n,Hangup() exten => 101,1,AGI(test.py) --------------------- Currently, this will start my python script via AGI & run it as blocking, stopping extension 100 from connecting. I’ve also tried the following alternative syntax’s with Dial, with var...
2020 Oct 15
0
Parallel dialing / running dialplan process in background
...xtension 101 to put it in it's own context and then call the agi from the h extension. So something like this: [from-internal] exten = 514316XXXX,1,Answer() same => n,Playback(hello) same => n,Dial(LOCAL/100 at extensions&LOCAL/101 at extensions) [extensions] exten => 100,1,JACK([i(SuperCollider:in_1), o(SuperCollider:out_1)]) same => n,Hangup() [our_agi] Exten => 101,1,Congestion Exten => h,1,AGI(test.py) On Thu, Oct 15, 2020 at 12:35 PM Peter van Haaften <petervh at gmail.com> wrote: > Hi, > > I am trying to write a dialplan that will use Dial() to call t...