Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
294 views

What is the most up to date Python asterisk AGI framework for asterisk?

I have done some AGI development in the past with PERL and PHP, but my current project is using Python. I have found the frameworks listed here: http://www.voip-info.org/wiki/view/Asterisk+AGI , but ...
1
vote
2answers
380 views

Asterisk AGI: How to get or set the value of a global variable?

I'm using Asterisk 1.8 with PHP for AGI scripting. EDIT: I'm struggling with setting and obtaining the values of global variables from within an AGI PHP script. I can set channel variables but not ...
1
vote
1answer
213 views

How to execute a dialplan by asterisk's AMI API?

Couldn't find a specific answer for this. I'm a newbie to asterisk and AMI. I need to auto generate calls using asterisk and pass parameters to an AGI program. Using a call file seems to generate the ...
1
vote
2answers
121 views

How to write an AGI Script

I am fairly new to the Asterisk Gateway Interface. Couple of questions. What language would be suggested to start out with. My end goal is to have a script that automatically page when a call is ...
1
vote
1answer
305 views

How do I pass variables between dialplan and agi script in asterisk

I want to be able to pass the extension entered by a caller to the agi script and after it is manupulate I would like the agi script to send the result back to the dial plan as a variable. Can anyone ...
1
vote
1answer
177 views

perl call to ruby script using backticks returns nothing

Ok, so I have a ruby script that grabs some data from FM Server and returns a tuple. I had to do this because there's no good perl FM module that I'm aware of. [test.pl] $ret = `ruby ...
1
vote
2answers
787 views

Asterisk AGI (Perl script) - Sometimes all keys are ignored by the script

I am new to Asterisk (VoIP) and am rather new to UNIX/Perl. I'm taking this over from a co-worker that left the company, so I didn't set this up in the first place, I just need to make some changes. ...
1
vote
9answers
3k views

Asterisk AGI framework for IVR; Adhearsion alternative?

I am trying to get started writing scalable, telecom-grade applications with Asterisk and Ruby. I had originally intended to use the Adhearsion framework for this, but it does not have the required ...
0
votes
1answer
109 views

Asterisk Video Playback (mp4/3gp)

I'm trying to play a video file during a call with asterisk 1.4 for a couple of days now without success. I'm able to make video calls to other users using codec h263 and h264 but I'm not able to play ...
0
votes
0answers
73 views

Asterisk DTMF sometimes gets ignored (but only for some people)

I have a very strange problem and don't even know where to begin to look. We're using AGI and the Java libraries to present an IVR but have gotten complaints from the users that their keypresses are ...
0
votes
1answer
238 views

Asterisk Agi programming With C#?

I want to work with Asterisk and develop some Programs for working with that. So I found AGI. And for first questions: Is there any sample, good tutorial and tips for use that. and I want to ...
0
votes
4answers
2k views

How to write code for AGI (Asterisk Gateway Interface) in C

Please tell me related websites for that code.
0
votes
2answers
374 views

How to to download MP3 file from AGI script written in Perl?

I am trying to download an MP3 file from an AGI script written in Perl, however the file does not get downloaded. The strange thing is that if I try to download the same file from a plain Perl script ...
0
votes
1answer
144 views

Is my use of XMLin killing my remote Asterisk AGI script?

I'm facing a strange problem while using XML::Simple module of Perl. I am writing an Asterisk AGI script in Perl where I am calling a function someSub() which uses curl to fetch XML from a CGI page ...
0
votes
1answer
167 views

How can I let a user hang up a call by pressing 0 in Asterisk?

I am writing an Perl AGI script where I convert a text into an audio file and play back this audio file using the following: $AGI->exec("Background", "$filename"); I want the user to be able to ...
0
votes
2answers
416 views

How can I get the extension entered by user in a Perl AGI script?

I'm new to Asterisk AGI programming. Im trying to create a simple IVR, using asterisk-perl, where a user can enter any extension from 1 to 4. Here is my code so far: use Asterisk::AGI; $AGI = new ...