[asterisk-users] Asterisk and Wave files.

2012-08-24 Thread Jared Baxley
I normally do all IVR recordings at an endpoint, but i have a set of voice prompts i need to use for a specific IVR. Without converting them on the box, is there any specific utility you all use for converting sounds to Asterisk friendly files? what are the acceptable parameters? can audacity or

Re: [asterisk-users] Asterisk and Wave files.

2012-08-24 Thread Andrew White
The built in file convert function has saved my bacon when I need to convert quickly. Apart from that, there are a ton of examples with external programs on voip-info.org: http://www.voip-info.org/wiki/view/Convert+WAV+audio+files+for+use+in+Asterisk

[asterisk-users] xmpp / sip

2012-08-24 Thread Hans Witvliet
Hi all, After making a nice demo-setup for one of our innivationmanagers, he came up with a completely different stratagy ;-( They want to have an Ejabberd server, with xmpp-clients. When you see a contact coming online, just point and click for making a phone call. Sounds/looks nice and

Re: [asterisk-users] Japanese voicefiles

2012-08-24 Thread Adrian Marsh
Hi Chris, Thanks for replying, I've got it set in the context in extensions.conf: [TokyoReception] exten = s,1(TOKYORECEPTION),Answer exten = s,n,Set(CHANNEL(language)=jp) ; set japanese by default exten = s,n,SET(LOOP=0) exten = s,n,SET(LANG=JP) It could be something fixed between

[asterisk-users] CHANNEL arguments documentation?

2012-08-24 Thread Stefan at WPF
Using exten = h,n,set(CDR(llp)=${CHANNEL(rtpqos,audio,local_lostpackets)}) gives me [Aug 24 12:08:10] WARNING[12087]: sip/dialplan_functions.c:221 sip_acf_channel_read: Unrecognized argument 'rtpqos,audio,local_lostpackets' to CHANNEL [Aug 24 12:08:10] WARNING[12087]: func_channel.c:393

Re: [asterisk-users] Japanese voicefiles

2012-08-24 Thread Adrian Marsh
Ok... I'm baffled.. I took a copy of my machine and put it in a virtual machine, then upgraded the VM to 1.4.44 to experiment, and unknowingly let it install the default US GSM sounds again. My code runs, but, it still plays the US digits when the debug says the below. You can see its

Re: [asterisk-users] Japanese voicefiles

2012-08-24 Thread Adrian Marsh
Ok, This is something to do with folder layouts. I have: /var/lib/asterisk/sounds - uk files /var/lib/asterisk/sounds/digits -uk/us digits /var/lib/asterisk/sounds/jp - Japanese files /var/lib/asterisk/sounds/jp/digits - Japanese digits I read the 1.4 notes on :

Re: [asterisk-users] xmpp / sip

2012-08-24 Thread Patrick Lists
Hi Hans, On 24-08-12 10:13, Hans Witvliet wrote: Hi all, After making a nice demo-setup for one of our innivationmanagers, he came up with a completely different stratagy ;-( Well if you could create it then obviously it's no longer innovative so they had to come up with something else :-)

Re: [asterisk-users] Easy to install CDR-Viewer?

2012-08-24 Thread Stefan at WPF
A simply PHP based thing would be OK. Maybe I should look more specifically for that or can anyone here recommend a PHP based CDR viewer? Meanwhile I ended up building a mysql view, for private purposes it does the job. A real solution would still be nice, though. 2012/8/23 Tim Nelson

Re: [asterisk-users] sip trunk failing to register causes sip phones to become unreachable

2012-08-24 Thread John Cahill
Hi, Thanks. I will try this. Regards, John - Original Message - From: Warren Selby wcse...@selbytech.com To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Sent: Thursday, 23 August, 2012 9:24:48 PM Subject: Re: [asterisk-users] sip trunk

[asterisk-users] Log faulty calls?

2012-08-24 Thread Stefan at WPF
If somebody is calling me using a wrong configured SIP phone, he gets back an error message from my Asterisk server. That's ok, however I'd also like to know that I missed a call. However there's no CDR entry created in that case and checking the asterisk logs manually is not that great... Any way

Re: [asterisk-users] Log faulty calls?

2012-08-24 Thread Danny Nicholas
Not the best solution, but you could do a quick and dirty crawler to query /var/log/asterisk/full in PHP or PERL or your language of choice. Even in a 4K-5K calls per day environment this process usually takes less than 1 minute to run. From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] Log faulty calls?

2012-08-24 Thread Stefan at WPF
Thank you Danny, but the problem is that I don't know what exactly I shall look for. I think there's no specific word in the log that clearly identifies this kind of problem? ): 2012/8/24 Danny Nicholas da...@debsinc.com Not the best solution, but you could do a “quick and dirty” crawler to

Re: [asterisk-users] Log faulty calls?

2012-08-24 Thread Danny Nicholas
Actually, you could look for WARNING or ERROR and probably find what you needed. From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Stefan at WPF Sent: Friday, August 24, 2012 8:14 AM To: Asterisk Users Mailing List - Non-Commercial

Re: [asterisk-users] Log faulty calls?

2012-08-24 Thread Adrian Marsh
I ended up writing a basic parsing script that lets me search the full log, based on some unique identifier (eg, my own extension vlog 2027). It then digs out the associated A*k log number for each line that's it, and lists them out. Then I choose the 'call' and it re-filters by that call only.

Re: [asterisk-users] Log faulty calls?

2012-08-24 Thread Bryant Zimmerman
One trick you can do is to accept all calls into the dial plan and then do IP lookups and call pattern checks to determine if the call is good to go past your sidewalk code. You need to make sure this code is very efficient so that you can lock out bogus callers and attackers. If you use this

[asterisk-users] SIP Question - Early audio one-way or 2-way?

2012-08-24 Thread Steve Davies
Hi SIP Gurus, I've tried to find the relevant RFCs, but am struggling. I can find the odd opinion online, but was wondering if anyone could give a definitive answer. If a SIP call is initiated (INVITE) and receives either a 180 with SDP, or a 183 with SDP, then the remote party will start to

Re: [asterisk-users] SIP Question - Early audio one-way or 2-way?

2012-08-24 Thread Faisal Hanif
hi, you can simply avoid this by using local ring r option in dial command. azterisk pass local ring voice to caller and will not bridge b leg audio until b leg is answered.iin Regards, Faisal Hanif (sent from phone) Steve Davies davies...@gmail.com wrote: Hi SIP Gurus, I've tried to find

Re: [asterisk-users] Easy to install CDR-Viewer?

2012-08-24 Thread Tim Nelson
- Original Message - A simply PHP based thing would be OK. Maybe I should look more specifically for that or can anyone here recommend a PHP based CDR viewer? Meanwhile I ended up building a mysql view, for private purposes it does the job. A real solution would still be nice,

Re: [asterisk-users] CHANNEL arguments documentation?

2012-08-24 Thread Eric Wieling
pbx*CLI core show function CHANNEL -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Stefan at WPF Sent: Friday, August 24, 2012 6:37 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject:

Re: [asterisk-users] CHANNEL arguments documentation?

2012-08-24 Thread Stefan at WPF
Thank you Eric, but this is still the old documentation: rtpqos - R/O Get QOS information about the RTP stream This option takes two additional arguments: Argument 1: 'audio' Get data about the audio stream 'video' Get data about

Re: [asterisk-users] SIP Question - Early audio one-way or 2-way?

2012-08-24 Thread Steve Davies
On 24 August 2012 15:34, Faisal Hanif fai...@vopium.com wrote: Steve Davies davies...@gmail.com wrote: Hi SIP Gurus, I've tried to find the relevant RFCs, but am struggling. I can find the odd opinion online, but was wondering if anyone could give a definitive answer. If a SIP call is initiated

Re: [asterisk-users] CHANNEL arguments documentation?

2012-08-24 Thread Richard Mudgett
Using exten = h,n,set(CDR(llp)=${CHANNEL(rtpqos,audio,local_lostpackets)}) gives me [Aug 24 12:08:10] WARNING[12087]: sip/dialplan_functions.c:221 sip_acf_channel_read: Unrecognized argument 'rtpqos,audio,local_lostpackets' to CHANNEL [Aug 24 12:08:10] WARNING[12087]:

Re: [asterisk-users] wct4xxp Interrupts not detected with dahdi 2.6, but working ok with 2.5

2012-08-24 Thread ebusic
I have the same problem with OpenVOX D210E card These one is not working: dahdi: Telephony Interface Registered on major 196 dahdi: Version: 2.6.1 ACPI: PCI Interrupt :03:00.0[A] - GSI 16 (level, low) - IRQ 169 wct4xxp :03:00.0: Firmware Version: c01a wct4xxp :03:00.0: FALC

Re: [asterisk-users] wct4xxp Interrupts not detected with dahdi 2.6, ?but working ok with 2.5

2012-08-24 Thread Shaun Ruffell
On Sat, Aug 25, 2012 at 12:04:48AM +, ebusic wrote: I have the same problem with OpenVOX D210E card These one is not working: dahdi: Telephony Interface Registered on major 196 dahdi: Version: 2.6.1 [snip] and these one working fine: dahdi: Telephony Interface Registered on major

Re: [asterisk-users] SIP Question - Early audio one-way or 2-way?

2012-08-24 Thread Faisal Hanif
You can create trunk/route specific dial command parameters. Regards, Faisal Hanif -Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Steve Davies Sent: Friday, August 24, 2012 8:40 PM To: Asterisk Users Mailing