similar to: file and on SayNumber() app

Displaying 20 results from an estimated 600 matches similar to: "file and on SayNumber() app"

2007 Sep 09
1
format text help pages Windows
Dear list, Could someone enlighten me a bit on the exact format used for text help pages as I see them on Windows in the help/ folders of (compiled) package roots. When opening an example of these files in a text editor (?Bessel in GNU emacs), the file is displayed as follows: _^HB_^He_^Hs_^Hs_^He_^Hl_^H _^HF_^Hu_^Hn_^Hc_^Ht_^Hi_^Ho_^Hn_^Hs Bessel package:base
2013 Oct 17
0
Feature request: new LISTNUMBER() function along SayNumber()
Hello, SayNumber() app embeds a smart logic to play numbers according specified locale. For example, SayNumber(71) would play files "sixty", "and" and "eleven" in french. If I'm not mistaken, if I had to set a dialplan variable with the file list SayNumber would play for a given number, I would have to somehow duplicate SayNumber() logic. What would you about
2006 Feb 22
1
Gram-Charlier series
Good day everyone, I want to use the Gram-Charlier series expansion to model some data. To do that, I need functions to: 1) Calculate 'n' moments from given data 2) Transform 'n' moments to 'n' central moments, or 3) Transform 'n' moments to 'n' cumulants 4) Calculate a number of Hermite polynomials Are there R-functions to do any of the above?
2016 Oct 13
4
Match one OR two digit extension not working as expected without using "dangerous" _. pattern (Ast 14)
Back to basics here. I want to match on one OR two digits. The following two both work, but ONLY for more than one digit, which is not as expected from the docs (see below). exten => _X.,1,SayNumber(${EXTEN}) exten => _[0-9].,1,SayNumber(${EXTEN}) This next one will ONLY match 2 digits, as expected, but the first two SHOULD match one or more, right? exten => _XX,1,SayNumber(${EXTEN})
2011 Mar 08
5
[1.4] Reading phone number the French way?
Hello, I need to write a script which prompts the callee to type a number, and then read it back to them as confirmation: ======= extensions.conf [robocall] ;Expect 10-digit number excluding final #, 2 tries, 20s time-out exten => s,n(nbr2call),Read(NBR2CALL,please-type-number,10,,2,20) exten => s,n,GotoIf($[${LEN(${NBR2CALL})} != 10]?end) ;exten => s,n,SayDigits(${NBR2CALL}) exten
2004 Apr 19
3
One, två, tre, quatre, cinq ... International numbers in say.c
http://bugs.digium.com/bug_view_page.php?bug_id=0001429 * Support for other language syntaxes in saynumber Accidentally I opened this can of worms to see if we can add support for other language syntaxes for saying numbers. Seems like Swedish, english and norwegian follow the same syntax. I've integrated existing patches for french, danish and soon portuguese syntax. The steps we're
2007 Aug 16
3
99 bottles of beer
; *99: ; 99 bottles of beer on the wall. exten => *99,1,Noop(99 Bottles of beer on the wall) exten => *99,n,Answer() exten => *99,n,Set(bottles=99) exten => *99,n(loop),Noop(There are ${bottles} bottles of beer on the wall) exten => *99,n,SayNumber(${bottles}) exten => *99,n,Noop(Take one done and pass it round and there's) exten =>
2009 Dec 03
1
Feature Request: "SayNumberFiles"
Hi, Currently, it seems impossible to use the output of SayNumber application as an input to Read application. So, if you want to develop an IVR with something like "You've got 23 messages. Type 1 to listen to the first one. Type 2 to leave", you must parse this message into 3 pieces and want for the last one play to start listening of user input : Playback ( "You've
2004 May 09
3
German sound files available
Hi there, today I made the German language prompts available for download: http://www.karl.aegee.org/asterisk.nsf/HT/sound-de Be aware: Asterisk doesn't yet fully support languages other than English, there are still (smaller) issues with voicemail and date/time announcements that require a patch. Cheers, Philipp
2003 Jun 19
2
Is it possible to do this with Asterisk?
Here's what I am trying to do... First I'll have a list of 4 digit numbers like: Code:OtherCode 1234:4321 9999:4444 3333:1111 People will call our 800#, Have the number they are calling from read to them (ANI?) & then enter in the code (let's say 1234). If the code matches one on the list, then the OtherCode (4321 for 1234) will be read/spoken to them. With the exception of the
2007 Nov 15
2
Dialing time-out
Ok, probably a dumb question. I believe I already I know the answer, but thought I would get feedback from others. One of the issues with user devices at the end Asterisk is dialing time out. This is a parameter within each hardware device. So if I set it to 3 seconds it appears from the moment after going off hook any key press starts a timer allowing me 3 seconds to enter the next number
2010 Jan 30
8
MATH
I want to create a script for IVR that compiles responses, aggregates them to a total number. Then, run an equation based on the result. Press 1 for X (X is a positive number 500) Press 2 for Y (Y is a positive number 200) Press 3 for Z (Z is a positive number 300) Press 20 to calculate the results = 500+200+300 =1000 then, exten => s,n,Read(NUMBER,,1000) exten => s,n,SayDigits(${NUMBER})
2016 Oct 18
2
Say duration of alaw file?
I can get the size of a ulaw file using STAT. And I can get the duration in seconds by doing filesize/8000. Your tea-break challenge is to help me find the shortest most Asterisk-like way of saying: "The following file is [<n> minutes and] <s> seconds long". ...without referring to external applications! Yes, I'm aware of the math behind it, but I was hoping for a
2004 Apr 28
5
Asterisk goes international :-)
During the recent week, we've worked hard to add more of the contributed international support to Asterisk. A big step was taken yesterday when Mark added international support for saynumber() to CVS. We now have a first version of support for * Danish * German * English * Swedish * Norwegian * Portuguese * Italian * French All of these require that you add your own sound files. There are
2004 May 20
2
AGI/php script not working
Dear all I am just getting started with AGI so I wrote the following script as a simple test but all that happens is silence before it times out and hangs up can someone help to get me started? yet if i use the agi-test.agi script everything works I don't see the difference Thanks php -q <?php fputs(STDOUT 'SAY NUMBER 123 "#*"\n'); $lin =
2016 Jan 06
2
No joy with my first AGI Python script
It's very simple but it doesn't work. Here's the entire script. #! /usr/bin/python import sys env = {} def comm(cmd): sys.stdout.write(cmd.strip() + '\n') sys.stdout.flush() return sys.stdin.readline().strip() while 1: line = sys.stdin.readline().strip() if line == '': break key,data = line.split(':') if key[:4] == 'agi_':
2003 Dec 14
1
Error loading modem driver
When I attempt to start asterisk with my modem setup listed it will not start attached are the error messages i get and also the modem.conf that i am currently using. Any assistance would be greatly appreciated. running CVS ver 12/7/03, modified only to allow the RxFax and TxFax to compile and run with it (from http://www.opencall.org) just e-mail me privately if you need more info Thanks in
2005 Aug 18
2
asterick and festival...Help!
Earlier this afternoon I had this working exten => 2890,1,Answer exten => 2890,2,GoTo(12) exten => 2890,12,Wait(1) exten => 2890,13,Festival('I can say numbers like') exten => 2890,14,SayNumber(1230001,f) exten => 2890,15,Wait(1) exten => 2890,16,HangUp I was so very proud of myself... All of a sudden after a reboot.... I get the following from the same call plan
2006 Feb 03
2
can asterisk to say chinese like say english
this is not just playback recorded voice. this is let asterisk say chinese. how to do this. there have any ideas? -- Jeffery iaxtel Num: 1-700-576-1311 fwdnet Num: 728150
2006 Apr 20
3
Asterisk Won't start after SVN Trunk Update
Hi: I deleted old modules in /usr/lib/asterisk/modules before make install. I built zaptel and libpri before asterisk. Modprobe zaptel and modprobe -v wctdm executed witiout complaint. Starting asterisk produced the output below with several warnings and a failure. Can someone help, please. I double-spaced the warnings in the text below. The first warning is about music on hold because it