audiosocket
audiosocket copied to clipboard
Simple bidirectional audio protocol
This commit fixes issue #22. To recap: it is not valid to assume that the entire packet is going to be available with a single Read() call. Interestingly, a similar...
The NextMessage function is not equipped to handle short reads, it just assumes that the entire payload can be read with one syscall, and what's worse, it has a subtle...
Is this true that audiosocket can only process one call at a time? ``` exten = 100,1,Verbose("Call to AudioSocket via Dialplan Application") same = n,Answer() same = n,AudioSocket(40325ec2-5efd-4bd3-805f-53576e581d13,server.example.com:9092) same =...
Hi! In one of your other repos there is a discussion regarding dtmf-support for the audiosocket implementation. Do you know if there are any plans to add something like this...
I have noticed that the module currently runs synchronously and I was somewhat interested in knowing the design decisions that led to this. I am inclined to want to integrate...
Hello, I am using Asterisk 18.11.0 and your voice bot application. I follow your example but play my own wav files, after I pick up the phone, at the very...
Hi, I am considering call transfer depend on the audiosocket error code in payload. Is there any variables set by audiosocket in the Asterisk dialplan to determine following call flow?...
Hello. How correct exit from app AudioSocket and continue dialplan asterisk?
hello please change dialplan example to something like this Dial(AudioSocket/127.0.0.1:1123/40325ec2-5efd-4bd3-805f-53576e581d13) Your one is not working
We use AMI to call the AudioSocket application. We discovered a CPU core spikes to 100% while the call is in AudioSockets. I found this article discussing the issue https://github.com/NormHarrison/audiosocket_server....