[asterisk-users] [CFP] FOSDEM 2017, RTC devroom, speakers, volunteers neeeded

2016-10-24 Thread FOSDEM RTC Team
FOSDEM is one of the world's premier meetings of free software developers, with over five thousand people attending each year. FOSDEM 2017 takes place 4-5 February 2017 in Brussels, Belgium. https://fosdem.org This email contains information about: - Real-Time communications dev-room and

[asterisk-users] Opus codec in codecs.conf

2016-10-24 Thread Igor Goncharovsky
Hello, I am trying to configure new opus codec in asterisk 14, but unable to find any examples of codecs.conf settings for this codec. All I am trying to do - setup peer with using opus in narrow band mode (8kHz sampling rate). Does anybody know how to configure chan_opus? -- Regards, Igor

[asterisk-users] Variable pollution? Stack overflow? WTF is going on here or... how can I TOTALLY clear a variable?

2016-10-24 Thread Jonathan H
The first time I run a loop, the AGI returns a list of files. I append a path from a variable, and play out the files using SHIFT to loop them. The FIRST time I enter the system, this is what the complete list to be looped looks like:

Re: [asterisk-users] Got bitten by the 255 char variable limit - how best to work around it?

2016-10-24 Thread Matt Fredrickson
On Sat, Oct 22, 2016 at 8:05 PM, Jonathan H wrote: > I loop through a list in Asterisk which is generated by a Python AGI > and I've just been bitten by a variable limit I didn't realise existed > before. > > The only way I can think of working around this is to get Python

Re: [asterisk-users] IAX - Equivalent of SipAddHeader

2016-10-24 Thread John Kiniston
voip-info is severely out of date and should be ignored for most things. I linked you directly to the official Asterisk Wiki for the page on IAXVAR for version 14. I don't have a 14 box with IAX myself but I trust that wiki to be correct. On Mon, Oct 24, 2016 at 10:13 AM, Administrator TOOTAI

[asterisk-users] IAX - Equivalent of SipAddHeader

2016-10-24 Thread Administrator TOOTAI
Hi list, is there any existing IAX command to add information to a call like SipAddHeader? Another solution is sending text frame (0x07) frame type, but I don know how do it in a dialplan. Thanks for any hint. -- Daniel --

Re: [asterisk-users] IAX - Equivalent of SipAddHeader

2016-10-24 Thread John Kiniston
You can do it with IAXVAR. https://wiki.asterisk.org/wiki/display/AST/Asterisk+14+Function_IAXVAR exten => 100,1,Set(IAXVAR(myvar)=foo) exten => 100,n,Dial(OTHERHOST/201) on OTHERHOST exten => 201,1,Set(myvar=${IAXVAR(myvar)}) exten => 201,n,NoOP(My variable is ${myvar}) On Mon, Oct 24, 2016

Re: [asterisk-users] IAX - Equivalent of SipAddHeader

2016-10-24 Thread Administrator TOOTAI
Le 24/10/2016 à 18:46, John Kiniston a écrit : You can do it with IAXVAR. https://wiki.asterisk.org/wiki/display/AST/Asterisk+14+Function_IAXVAR exten => 100,1,Set(IAXVAR(myvar)=foo) exten => 100,n,Dial(OTHERHOST/201) on OTHERHOST exten => 201,1,Set(myvar=${IAXVAR(myvar)}) exten =>