Displaying 4 results from an estimated 4 matches for "outbound_di".
Did you mean:
outbound_dial
2015 Jan 30
2
JITTERBUFFER function
...the pre-dial handlers
(https://wiki.asterisk.org/wiki/display/AST/Pre-Dial+Handlers) to
place the jitter buffer on the outbound channel after its creation.
Example:
[default]
exten => set_up_outbound,1,NoOp()
same => n,Set(JITTERBUFFER(adaptive)=default)
same => n,Return()
exten => outbound_dial,1,NoOp()
same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1))
...
--
Matthew Jordan
Digium, Inc. | Engineering Manager
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org
--
__________________________________________________...
2015 Jan 29
2
JITTERBUFFER function
Hello!
I am going to use the JITTERBUFFER function in a SIP (and local channels)
only setup, but have some questions of how to use it:
1. Do I need to activate jbenable in sip.conf? Or is it enough to call
the JITTERBUFFER function?
2. What is the preferred way to invoke this function? Say I have
channel A which is not in need of buffering, while channel B do need it. If
A
2015 Jan 29
0
JITTERBUFFER function
...he pre-dial handlers
(https://wiki.asterisk.org/wiki/display/AST/Pre-Dial+Handlers) to
place the jitter buffer on the outbound channel after its creation.
Example:
[default]
exten => set_up_outbound,1,NoOp()
same => n,Set(JITTERBUFFER(adaptive)=default)
same => n,Return()
exten => outbound_dial,1,NoOp()
same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1))
...
--
Matthew Jordan
Digium, Inc. | Engineering Manager
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org
2015 Jan 29
1
JITTERBUFFER function
...i/display/AST/Pre-Dial+Handlers) to
> place the jitter buffer on the outbound channel after its creation.
>
> Example:
>
> [default]
>
> exten => set_up_outbound,1,NoOp()
> same => n,Set(JITTERBUFFER(adaptive)=default)
> same => n,Return()
>
> exten => outbound_dial,1,NoOp()
> same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1))
> ...
Perfect, then I guessed correctly. :)
I actually looked at the JITTERBUFFER wiki page, and found the examples you
mention. But they are only examples of how to start the buffer on the
calling channel. Maybe ad...