Displaying 20 results from an estimated 7000 matches similar to: "Languages"
2007 Oct 01
1
Odd one way RTP on SIP to SIP calls
Hi everyone,
I'm having an odd problem with one way RTP on SIP to SIP calls.
I have two SIP servers, one is an Asterisk and the remote SIP server
is a Nortel SIP server.
When a call comes to the Nortel server through the PSTN and is routed
to the Asterisk, audio is fine. Two way RTP and no problems. When a
SIP client registered on the Nortel server calls the Asterisk, the
Asterisk
2009 Nov 23
1
1.6.1.10 Music On Hold
Hello.
I just upgraded from 1.6.0.9 to 1.6.1.10 and it seems that the Music On Hold
functionality has changed (or is bugged?).
I have Aastra 6757i and Aastra 6731i phones, and now when i press the
MusicOnHold button / change lines on the phone, MOH no longer starts. It did
this in v 1.6.0.9.
The invites received are exactly the same, only 1.6.1.10 doesn't ever start
MOH.
Is there some
2009 Jan 16
2
CDR problems -- two call legs create only one CDR. Using ForkCDR() not even working.
Hello,
When I bridge an incoming and outgoing call (attempting to simulate
call-forwarding) I'm only getting one CDR -- that of the outgoing call.
A (PSTN) calls B (residing on Asterisk) and the Asterisk calls C (cell phone
on PSTN) and bridges the call.
The only CDR created is from B to C. I have even tried using Answer() and
ForkCDR() to get two CDRs, but to no avail.
I am starting to
2010 Jan 26
2
Attended Transfer with REFER
Hi guys,
I am wondering (and have been unable to find out thus far) whether Asterisk
sets some special channel variables or something when a call is transfered
with the REFER method.
Basically, I'm trying to figure out if it is possible to somehow get a
transferred call back to the transferrer (as it is done with the built-in
atxfer) after X seconds (or an unsuccessful attempt).
Using a
2011 May 31
3
AMI buffering event output?
Hi,
I'm seeing weird behavior with AMI where no events are output until
some input is detected (can be an empty line), at which time all the
buffered output is spewed out at once.
I am maintaining multiple Asterisk installations, and with one
installation I have run into a weird buffering problem with AMI.
The version is 1.6.1.11 in this particular case, which I am running at
multiple
2016 Sep 21
2
strcapture enhancement
The new strcapture function in R-devel is handy, capturing
the matches to the parenthesized subpatterns in a regular
expression in the columns of a data.frame, whose column
names and classes are given by the 'proto' argument. E.g.,
> p1 <- data.frame(Name="", Number=0)
> str(strcapture("([[:alpha:]]*) +([[:digit:]]*)", c("Three 3", "Twenty
2006 May 10
3
NumbersToWords
= numbersToWords - convert your integers and floats to english or
japaneese words,or translate it into american currency
- This plugin was created from a solution to the ruby quiz (english
numbers) by Matthew D Moss. I modified the code to work as a rails
plugin and added the to_dollars method.
- the to_dollars method will work with integers and floats
- the to_english and to_japaneese methods
2010 Oct 29
1
Asterisk 1.8 and character sets and AMI
Hi,
Just tried upgrading to 1.8 and ran into two problem immediately;
1. Caller-ID behavior is different -- now when I set the caller-id
name to something with special characters (?, for example), the SIP
INVITE now has %C3%96 instead of the ? character. I've tried doing
Set(CALLERID(name-charset)=utf8) as well as iso8859-1, but it's always
the same behavior.
2. My AMI scripts have
2005 Oct 08
2
color for points
Hi,
I have the following code to
randomly generate the
points:
csr <-function(n=60){
x=runif(n)
y=runif(n)
f=cbind(x,y)
}
plot(csr())
I wonder how to code to make the first twenty points to be BLUE; second twenty points to be RED; the last twenty points to be GREEN?
Thanks,
Sam
---------------------------------
[[alternative HTML version deleted]]
2005 Dec 31
2
numeric_spell plugin
I''ve created a plugin that lets you spell out numbers (under one
thousand, in English, for now).
Examples:
>> 23.spell
=> "twenty-three"
>> 23.spell :noun => ''person''
=> "twenty-three people"
>> (23.14).spell_currency
=> "twenty-three dollars and fourteen cents"
>>
2009 Sep 09
1
UNIQUEID not the same in Dialplan as passed to AGI
Hi,
I've noticed that the UNIQUEID for a call is not the same in the
Dialplan (when executed e.g. exten => s,n,NoOp(${UNIQUEID}) as it is
when passed via STDIN to an AGI script.
Is this normal, and is this supposed to behave this way?
The UNIQUEID received in the AGI is usually .001 higher than the one
in the dial plan -- but sometimes it is also a second behind.
Here's an example
2009 Jan 19
1
indications.conf entry for Iceland
Hi,
Not sure where to submit this to so I'll try here. Below is the toneset for
Iceland. Hopefully this can be added into the asterisk package.
[is]
description = Iceland
ringcadence = 1000,4000
dial = 425
busy = 425/250,0/250
ring = 425/1000,0/5000
congestion = 425+250/250,0/250
callwaiting = 600/100,0/100,600/100,0/9000
record = 1400/500,0/15000
info = !950/330,!1400/330,!1800/330,0
2017 Oct 22
3
ASR Suggestions for small dictionnary (<1000 entries) lookup in France/french
Hello,
I'm in the early stages of designing an Emergency calling service IVR
application.
The IVR application asks simple one or two questions like "which is the
postal code of the area you are currently calling from ?" "Is the correct
?". The expected values are a 5-digits number like
"twenty-five-thousand-two-hundreds-twelve" or
2009 Feb 12
1
Problem with parking
Hi,
I'm having problem with call parking.
When I park call, either via transfer to xten or park digit sequence from
features.conf, I hear the parking lot number read to me and the user gets
transferred.
However, MOH stops for the caller the moment user is transferred.
The user can be retrieved by dialing the parked extension and voice resumes.
If the parked user hangs up, the channel state
2003 Sep 20
4
how many production systems are there?
i am just curious how many * systems are in the real world with more than one user. do you run a certain version? you dont update CVS do you? any admins running a system of over twenty? over fifty? over one-hundred?
i deal with 3com and nec systems all day (i am cerified in the 3com nbx advanced network telephony, elite voice mail, CCNA, A+, nec ipk, and soon to be "asterisk school of
2009 Sep 14
3
How to convert numbers to words?
I am trying to convert numbers to English words, e.g. 123 -> One
hundred twenty three. After some searching, I have been unable to
find any info on this. I could certainly write code to do it, but my
question is this: Does anyone know of a function that does this?
Thanks,
Derek McCrae Norton
2011 Aug 18
4
stupid question about kickstart file
Hi,
Is is possible to use kickstart file to install rhel from dvd drive?
Mainly idea is to clone one anaconda.ks file to about twenty
machines.?
examples? ftp/http/dhcp is not possible due to network limitations.
--
Eero
2004 Mar 30
3
Added a Tutorial to the wiki!
Hey everybody,
I just added a tutorial page to the wiki, and created a brief introductory
tutorial to get a new user going. I plan to add more tutorials on basics
and more advanced coding as time permits. Take a look if you get a chance,
and give me feedback. You can access the tutorial page under the Latest
News section, or through Introduction to wxRuby under Starting Points.
2007 Mar 19
3
Cepstral and numbers
Does anyone have any idea on how to force cepstral to convert a number
to speech ?
I have noticed that sometimes it speaks the number correctly, and at
others it doesn't.
1) 787 is pronounced 7-8-7
2) 123 is pronounced one-hundred and twenty-three.
1) is wrong for what i need, 2) is perfect.
Is there anyway of forcing numbers to be pronounced as 2) ?
I've tried looking at the ssml
2006 Aug 01
6
Getting Started on RJS Templates
I definitely need to use RJS templates for my current application. I''ve
used Google for the past twenty minutes or so, yet I can''t find a good
resource that will get me started and show me what the page object can do.
Any links?
When an Ajax link is clicked, I''m trying to change the background of a
"primary" list item, as well as the background and text of