Hi
If I have a SIP provider that gives me a SIP Account with a number that has many channels to handle multiple incoming calls, I want to know if Asterisk/AGI can handle those many concurrent calls (like above 10 calls)? Or do I need anything extra like voximal_interpreter?
Code in my dialplan below
[incoming]
exten => _x.,1,Answer
same=>2,Wait(2)
same=>3,Playback(/var/lib/asterisk/agi-bin/texttospeech/src/sound/welcome) //welcome message
same=>5,AGI(/var/lib/asterisk/agi-bin/callstream.php) //Record call via Google STT API
same=>6,Playback(/var/lib/asterisk/agi-bin/texttospeech/src/sound/outpusss11) //Playback output to caller
You may find it helpful to use 'same = n' instead of explicit priority numbering.
Also a 'Preformatted text' snippet of 'dialplan show x@y' can be helpful. What Asterisk thinks your dialplan says is more important than what you think it says