• Stars
    star
    152
  • Rank 243,260 (Top 5 %)
  • Language
    C
  • License
    GNU General Publi...
  • Created almost 5 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Stream Asterisk audio over Websockets

What is app_audiofork

app_audiofork lets you integrate raw audio streams in your third party app by making minor adjustments to your asterisk dialplan.

The asterisk app simply pushes any Asterisk audio to a web socket server.

For example:

ASTERISK -> AUDIO STREAM -> WS APP SERVER

The main purpose of this app is to provide a simple integration with the Asterisk audiohooks API -- allowing developers to integrate higher level programs for audio processing.

How to install

You can use the Makefile to easily install app_audiofork.

To get started, please run:

make
make install

Load module

Afterwards, you will need to load the module.

You can simply run the following command:

asterisk -rx 'module load app_audiofork.so'

Configuring in dial plans

Here is a simple example of how to use "AudioFork()"

exten => _X.,1,Answer()
exten => _X.,n,Verbose(starting audio fork)
exten => _X.,n,AudioFork(ws://localhost:8080/)
exten => _X.,n,Verbose(audio fork was started continuing call..)
exten => _X.,n,Playback(hello-world)
exten => _X.,n,Hangup()

Configuring a Websocket server

In order to integrate the module, it is advised that you use a websocket server that is compliant with the latest standard. In other words, it should support both text and binary data frames.

Here is an example of a Node.js Websocket module: WebSocket nodejs server

Example: simple integration

Below is an example that receives audio frames from the AudioFork app and stores them into a audio file.

const WebSocket = require('ws');

const wss = new WebSocket.Server({ port: 8080 });
var fs = require('fs');
var wstream = fs.createWriteStream('audio.raw');

wss.on('connection', function connection(ws) {
  console.log("got connection ");

  ws.on('message', function incoming(message) {
    console.log('received frame..');
    wstream.write(message);
  });
});

Converting raw audio to WAV

You can quickly convert any raw audio data to a another format, such as WAV, using the Sox command line tool.

For example:

sox -r 8000 -e signed-integer -b 16 audio.raw audio.wav

Sending separate Websocket streams

In a production scenario, it is common to handle both the incoming and outgoing legs of a call. The basic example doesn't do that, but it is certainly possible.

Below is an example including a WebSocket server that handles two connections and stores each stream in its own unique file.

Updated dialplan

[main-out]
exten => _.,1,Verbose(call was placed..)
same => n,Answer()
same => n,AudioFork(ws://localhost:8080/out,D(out))
same => n,Dial(SIP/1001,60,gM(in))
same => n,Hangup()

[macro-in]
exten => _.,1,Verbose(macro-in called)
same => n,AudioFork(ws://localhost:8080/in,D(out))

Node.js server implementation

const http = require('http');
const WebSocket = require('ws');
const url = require('url');
const fs = require('fs');

const server = http.createServer();
const wss1 = new WebSocket.Server({ noServer: true });
const wss2 = new WebSocket.Server({ noServer: true });
var outstream = fs.createWriteStream('out.raw');
var instream = fs.createWriteStream('in.raw');


wss1.on('connection', function connection(ws) {
  // ...
  console.log("got out connection ");

  ws.on('message', function incoming(message) {
    console.log('received out frame..');
    outstream.write(message);
  });
});

wss2.on('connection', function connection(ws) {
  // ...
  console.log("got in connection ");

  ws.on('message', function incoming(message) {
    console.log('received in frame..');
    instream.write(message);
  });

});

server.on('upgrade', function upgrade(request, socket, head) {
  const pathname = url.parse(request.url).pathname;

  if (pathname === '/out') {
    wss1.handleUpgrade(request, socket, head, function done(ws) {
      wss1.emit('connection', ws, request);
    });
  } else if (pathname === '/in') {
    wss2.handleUpgrade(request, socket, head, function done(ws) {
      wss2.emit('connection', ws, request);
    });
  } else {
    socket.destroy();
  }
});

server.listen(8080);

Live transcription demo

For a demo integration with Google Cloud speech APIs, please see: Asterisk Transcribe Demo

TLS support

AudioFork currently supports secure websocket connections. In order to create a secure websocket connection, you must add the "T" option to the app options.

For example:

AudioFork(wss://example.org/in,D(out)T(on))

Reconnecting closed sockets

It is also possible to setup basic backoff for reconnection. By default, Audiofork is configured to reconnect to the WS server, and after a preconfigured number of attempts it will close the connection. These parameters, however, can be adjusted.

To adjust the reconnection parameters, you can use the following parameters:

R(timeout_for_connection)
r(number of times to attempt reconnection)

For instance, the following example will set the reconnection timeout to 10 seconds and will attempt to reconnect five times.

AudioFork(wss://example.org/in,R(10)r(5))

Start an audio stream on demand

It is possible to start an audio stream for a live call. We can do this by using AMI (asterisk manager interface).

In essence, we can start start streaming audio for any active channel.

For a full example you can refer to the following NodeJS reference code. It uses the NodeJS-AsteriskManager library

Example: connect to AMI and call Audiofork

var ami = new require('asterisk-manager')('port','host','username','password', true);
ami.keepConnected();
ami.action({
  'action':' 'AudioFork',
  'channel':'PJSIP/myphone',
  'ActionID': '1234',
  'WsServer': 'ws://your_ws_server_url',
  'Options': 'D(both)',
  'Command': 'StartAudioFork'
}, function(err, res) {
  if (err) {
    console.error( err )
    return;
  }
  console.log(res)
});

Project roadmap

At this time, AudioFork is largely incomplete and has many updates planned.

The following updates are scheduled for the upcoming releases:

  • Test and ensure module is fully compatible with Asterisk manager
  • Store any WebSocket responses in a dialplan variable

Contact info

For any queries, please contact me directly:

Nadir Hamid <[email protected]>

More Repositories

1

audiofork-transcribe-demo

Example setup of Google Cloud speech with Asterisk audio fork
JavaScript
12
star
2

oneline

An MVC based websocket framework
Python
5
star
3

speechdtmf

Process speech and DTMF at the same time in asterisk
JavaScript
4
star
4

lback-py

a backup tool for linux
Python
3
star
5

json-b

a JNI based JSON-B wrapper
C
3
star
6

angular-selectbox

two-way select box
3
star
7

nodejs-audiosocket-server

Asterisk Audiosocket library for Nodejs applications
JavaScript
2
star
8

binner-ui

A Web UI to Binner
JavaScript
2
star
9

apache-whitelist-modwl-c

Reverse/Forward DNS validator for unauthentic User Agent
C
2
star
10

topologicPy

Topologic is a software development kit and plug-in that enables logical, hierarchical and topological representation of spaces and entities
C++
2
star
11

swim-py

SWIM implementation in Python
Python
1
star
12

ec2-spot-request-spark

Apache Spark on a EC2 Spot Request
Shell
1
star
13

audiofork-azure-transcribe-demo

JavaScript
1
star
14

audiofork-amazon-transcribe-demo

JavaScript
1
star
15

conveyor-simulator-js

Quick and dirty conveyer belt simulation.. in javascript!
JavaScript
1
star
16

i-call-u-back

Voicemail transcribed to a phone call back
Python
1
star
17

oneline-recipes

practical usage of oneline
1
star
18

oneline-v2-two-way-websockets

Feature preview for oneline-v2 server, client support
HTML
1
star
19

opensips-3x-ubuntu

shell scripts that quickly install OpenSIPs on Ubuntu
Shell
1
star
20

cisco-pxgrid-samples

some public examples for cisco's pxgrid
Python
1
star
21

oneline-two-way-websockets

Two Way WebSockets (Push like notifications)
Python
1
star
22

lback-py-grpc

A GRPC Agent, Server impl for Lback backups
Python
1
star
23

btflask

CSS
1
star
24

Oneline-C-V2

Oneline Purely Written in C (Core Spec v2)
C
1
star