56 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
93
views
How to pass Asterisk CALL_UUID from API server to Python AudioSocket app?
I have 2 Python services and an Asterisk dialplan setup:
api_server.py → exposes an HTTP API endpoint
app.py → runs an AudioSocket server (accepts calls from Asterisk via TCP socket)
In my dialplan, I ...
1
vote
0
answers
62
views
Freeswitch mask and unmask commands doesnt work when recording is started by lua script
I am trying to mask and unmask the call recordings which is being recorded automatically through some lua scrip using the command record_session. the lua script execut this command when the call is ...
0
votes
2
answers
183
views
How do i write a dial plan that plays a audio file takes user input and plays another audio file?
I am using Asterisk, Laravel and PAMI for this, and I
wanted make something that sends out a call that does the following:
Plays a recording:"press 1 or 2"
waits for user input
plays a ...
-1
votes
1
answer
246
views
dialplan show the unicode char
I have s simple code:
exten => p111,1, NoOp(********** test unicode char ************);
same => n,Answer();
same => n,Set(myVariable="امین رستمی")
same => n,NoOp(******** #2 ${...
0
votes
0
answers
243
views
Freeswitch Hangup issue
I run a Python script that plays iVR and bridges to the available extension (agent) in my freeswitch. It functions correctly, but when the customer or agent hangs up, the call is still in an active ...
2
votes
1
answer
867
views
how to get variable value from asterisk with asternet
I use the asterNet for manage event IN asterisk.
I need to get value of variable (result) in c# from dialplan query.
exten => test,1, NoOp(************ test ****************);
same => n,Answer();...
0
votes
1
answer
1k
views
How do you write an Asterisk Dialpan to suspend 180-Ringing until after 183-progress in chan_sip?
I'm trying to write an Asterisk dialplan to suspend 180-Ringing until after 183-progress. What needs to happen in the dialplan to prevent this?
Below you can see the trace: The chan_sip driver sends ...
0
votes
1
answer
247
views
I need multiple execute php async and I should be shut down specific chanel when I want
Php File(demo.php);
#!/usr/bin/php -q
<?php
set_time_limit(0);
ini_set('max_execution_time', 0);
require('phpagi.php');
$agi = new AGI();
$timeParameter = $argv[1];
$agi-&...
2
votes
1
answer
222
views
Asterisk GOTOIf Command not hitting branch correctly
This is the code in my .conf file for asterisk freepbx I know for sure blocked is true
same => n,Noop(${Blocked})
same => n,GotoIf($["${Blocked}"=="TRUE"]?blah-ivr-v5-...
0
votes
1
answer
316
views
Google-speech-api throws EOF error instead of performing audio transcription
In my project I am developing a websocket server in golang which is controlling asterisk channel via ARI and performing live audio transcription on the same channel with google-speech-api. On ...
1
vote
1
answer
396
views
Asterisk 11 match destination extension in macro
Long story short: Fanvil phones don't allow you to change microphone volume (that is too low).
I've created this custom macro, but cannot match the case the phone (exten 131) is receiving a call, it ...
1
vote
1
answer
458
views
IVR Asterisk Dial Plan goes indefinite for invalid key press
I'm doing Asterisk Dial Plan in extensions.conf.
I am creating a simple IVR in which invalid key press by customer should repeat only two times. After that it should disconnect.
But here loop goes ...
0
votes
1
answer
1k
views
What is the Asterisk Dial() Option to Call Subroutine on "Ringing" Status Received from Called Party?
I need to execute AGI scripts when following events occur:
An incoming call (it is simple just call AGI() function).
When a call is "Ringing" (I cannot figure it out!). <-- Problem, how ...
0
votes
1
answer
1k
views
Asterisk - setup hangup after seconds dialplan otpion S(sec)
When you dial 876, asterisk pbx start a call, send some dtmf code but doesn't close the call after 2 seconds.
The call need to be closed by the user.
[myplan]
exten => _876,1,NoOp(Now should call ...
0
votes
2
answers
684
views
Multiple Source Number in Call File Asterisk
i want to make call between 2 people which means i want to call the First person and if he answers it dials the second person's number.
First person has multiple numbers and it should dial each number ...