[asterisk-users] Ubuntu 14.04 LTS Asterisk and ISDN Cologne Chip

2014-09-23 Thread Claudio ML
Hi to all, I am searching to make work an Asterisk, with an ISDN card with Cologne Chipset. Here is the lspci: 01:09.0 Network controller: Cologne Chip Designs GmbH ISDN network controller [HFC-PCI] (rev 02) Subsystem: Cologne Chip Designs GmbH ISDN Board Flags: bus master,

[asterisk-users] Multicast AMI?

2014-09-23 Thread jg
Hi! Maybe I have overlooked something, but I am sort of facing the following problem. I always used the AMI interface to allow (older) client programs on Windows to use their TAPI client code in order to communicate with Asterisk servers. The functionality is basically minimal as only

Re: [asterisk-users] conversation record prematurely

2014-09-23 Thread Rusty Newton
On Thu, Sep 18, 2014 at 7:14 PM, Joseph syscon...@gmail.com wrote: How do I find out/verify if b option is used with MixMonitor? In the help text for an application you'll find the available arguments and options. On the Asterisk CLI you can view an application's help text with core show

Re: [asterisk-users] SIPAddHeader from a realtime databse

2014-09-23 Thread Rusty Newton
On Mon, Sep 22, 2014 at 9:43 AM, Ishfaq Malik i...@pack-net.co.uk wrote: Hi Guys I'm using asterisk 1.8.23.1 When I add a SIP Header from inside the extensions.conf (SIPAddHeader(Alert-Info:http://www.notused.com\;info=alert-internal\;x-line-id=0) ) it works fine. When I try to do the

Re: [asterisk-users] Ubuntu 14.04 LTS Asterisk and ISDN Cologne Chip

2014-09-23 Thread Tzafrir Cohen
On Tue, Sep 23, 2014 at 11:30:41AM +0200, Claudio ML wrote: Hi to all, I am searching to make work an Asterisk, with an ISDN card with Cologne Chipset. Here is the lspci: 01:09.0 Network controller: Cologne Chip Designs GmbH ISDN network controller [HFC-PCI] (rev 02)

Re: [asterisk-users] SIPAddHeader from a realtime databse

2014-09-23 Thread Ishfaq Malik
On 23 September 2014 15:04, Rusty Newton rnew...@digium.com wrote: On Mon, Sep 22, 2014 at 9:43 AM, Ishfaq Malik i...@pack-net.co.uk wrote: Hi Guys I'm using asterisk 1.8.23.1 When I add a SIP Header from inside the extensions.conf (SIPAddHeader(Alert-Info:http://www.notused.com

[asterisk-users] read digits from the user through php agi script

2014-09-23 Thread Brahim Abidar
hi everyone, actually i want to release an IVR system using PHPAGI API , in this IVR i want to get value from the user. I already used get_data defined in phpagi but they are not able to get the value given by the user and store it in a php variable. i tested this : $result = $agi-get_data('beep',

[asterisk-users] Change codec when dial from SIP to DAHDI

2014-09-23 Thread d tbsky
Hi: I am useing asterisk 11.12. I use G722 as preferred codec for my ip-phone. and my PSTN DAHDI use alaw. G722 is great when ip-phone talks to each other. but when ip-phone dialout to PSTN DAHDI, G722 is not great, since it is need to transcode to alaw. so I try to change the codec

Re: [asterisk-users] read digits from the user through php agi script

2014-09-23 Thread Eric Wieling
I’m not going to help you debug your code, but I wanted to post part of a function from one of our internal AGIs which reads auth codes using a simple IVR. The code is ugly but it might be helpful to you. This code is released to the public domain. // no pin provided, get pin from

[asterisk-users] how can queue agents choose which call to answer?

2014-09-23 Thread Marie Fischer
Hi everybody, I'm looking for a solution for the following scenario: • Asterisk queue • At peak hours, there will be more callers then queue members/agents, so some callers will spend some time on hold • Agents should be able to choose which of the on hold calls to answer instead of answering

Re: [asterisk-users] read digits from the user through php agi script

2014-09-23 Thread Brahim Abidar
thank you Eric for your response i will extract what i need in your function even i already test this : exten= 777,1,Answer() exten= 777,n,Read(digits,,1,,,3000) exten= 777,n,SayNumber(${digits}) exten= 777,n,Hangup() and it works for me but i don't know how to convert it to PHPAGI On 23

Re: [asterisk-users] how can queue agents choose which call to answer?

2014-09-23 Thread Michael Keuter
Am 23.09.2014 um 19:49 schrieb Marie Fischer ma...@vtl.ee: Hi everybody, I'm looking for a solution for the following scenario: • Asterisk queue • At peak hours, there will be more callers then queue members/agents, so some callers will spend some time on hold • Agents should be able

Re: [asterisk-users] how can queue agents choose which call to answer?

2014-09-23 Thread Scott Griepentrog
You can use any number of methods for redirecting a call from the queue to a specific agent. These include off the shelf products such as FOP or iSymphony, or even something custom built that can display calls and direct Asterisk (usually through AMI) to transfer the call to a new destination.

[asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Steve Edwards
For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. So, once I have the audio in the database, how can I play it? Creating temporary files seems so tacky. Is there another way to playback or background audio either by specifying a

Re: [asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Jeff LaCoursiere
On 09/23/2014 02:17 PM, Steve Edwards wrote: For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. So, once I have the audio in the database, how can I play it? Creating temporary files seems so tacky. Is there another way to

Re: [asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Don Kelly
On 09/23/2014 02:17 PM, Steve Edwards wrote: For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. Jeff sez: How about a named pipe (fifo)? Of course then you might have issues with simultaneous calls. You would have to have a pool of

Re: [asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Steve Edwards
On 09/23/2014 02:17 PM, Steve Edwards wrote: For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. On Tue, 23 Sep 2014, Don Kelly wrote: I'm curious about what the advantages are of storing audio in a blob. Wouldn't it be more

Re: [asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Mike
On Tue, 23 Sep 2014, Steve Edwards wrote: On 09/23/2014 02:17 PM, Steve Edwards wrote: For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. On Tue, 23 Sep 2014, Don Kelly wrote: I'm curious about what the advantages are of

[asterisk-users] AsteriskCDR

2014-09-23 Thread Gokan Atmaca
Hello; I was using the 1.8 version of Asterisk. However, due to a problem I had to update. Update reporting system is broken when you have made. Current version 11.10. I installed the modules in the system for problems that are missing. I getting error as follows. ^[[A[Sep 24 03:16:50]

Re: [asterisk-users] Playback/background audio from MySQL BLOB

2014-09-23 Thread Don Kelly
On Tue, 23 Sep 2014, Steve Edwards wrote: On 09/23/2014 02:17 PM, Steve Edwards wrote: For some applications, storing recorded audio (prompts and caller recordings) as a BLOB in MySQL has advantages. On Tue, 23 Sep 2014, Don Kelly wrote: I'm curious about what the advantages are of