Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Asterisk auto Call recording

Tags:

asterisk

We are running asterisk with 8 port FXO. FXO connects to our old PBX (Samsung Office Serv 100).

Now we want to record all calls routed through FXO (if it was dialed to outside or comming from outside).

Here is the diagram

           |------|---------------------------------
           |      |--------------24 Lines ---------- Other clasic Phones
PRI------  | PBX  |---------------------------------
           |      |
           |      |
           |      |-----------|---------|
           |      |--8 lines--|         |---------         
           |      |-----------|Asterisk |---------- 50 SIP phone
           |------|           |         |----------
                              |---------|----------

Is there a simple way to do this?

like image 637
Manjoor Avatar asked Mar 13 '10 12:03

Manjoor


People also ask

Can asterisk record calls?

Oreka Asterisk Call Recording allows clients to search, find and categorize recordings based on time or date of call, incoming phone number, outgoing phone number or other customer requirements. Oreka runs on either Linux or Windows operating systems and integrates with any phone system.

How do I record my voice on asterisk?

An easy way to do this is with the Record() application. The Record() application plays a beep, and then begins recording audio until you press the hash key (#) on your keypad.


2 Answers

Are you running plain Asterisk? If so you can modify your dial plan to start 'monitoring' the channel, which will record the call.

The monitor command's documentation: http://www.voip-info.org/wiki/view/Asterisk+cmd+monitor

Just for the sake of completion, here's the documentation:

[root@localhost ~]# asterisk -rx 'core show application monitor'

  -= Info about application 'Monitor' =-

[Synopsis]
Monitor a channel

[Description]
  Monitor([file_format[:urlbase],[fname_base],[options]]):
Used to start monitoring a channel. The channel's input and output
voice packets are logged to files until the channel hangs up or
monitoring is stopped by the StopMonitor application.
  file_format           optional, if not set, defaults to "wav"
  fname_base            if set, changes the filename used to the one specified.
  options:
    m   - when the recording ends mix the two leg files into one and
          delete the two leg files.  If the variable MONITOR_EXEC is set, the
          application referenced in it will be executed instead of
          soxmix and the raw leg files will NOT be deleted automatically.
          soxmix or MONITOR_EXEC is handed 3 arguments, the two leg files
          and a target mixed file name which is the same as the leg file names
          only without the in/out designator.
          If MONITOR_EXEC_ARGS is set, the contents will be passed on as
          additional arguments to MONITOR_EXEC
          Both MONITOR_EXEC and the Mix flag can be set from the
          administrator interface

    b   - Don't begin recording unless a call is bridged to another channel
    i   - Skip recording of input stream (disables m option)
    o   - Skip recording of output stream (disables m option)

By default, files are stored to /var/spool/asterisk/monitor/.

Returns -1 if monitor files can't be opened or if the channel is already
monitored, otherwise 0.

And here's a sample way you can use it:

; This fake context records all outgoing calls to /var/spool/asterisk/monitor in wav format.
[fake-outgoing-context]
exten => s,1,Answer()
exten => s,n,Monitor(wav,,b)
exten => s,n,Dial(DAHDI/g0/${EXTEN})
exten => s,n,Hangup()

Obviously you'd have to make changes to my code, but hopefully that gives you a good idea.

like image 150
rdegges Avatar answered Sep 20 '22 15:09

rdegges


A real life example is


    exten => _87X,1,NoOp()
    exten => _87X,n,MixMonitor(${UNIQUEID}.wav,ab)
    exten => _87X,n,Dial(SIP/${EXTEN},45)
    exten => _87X,n,StopMixMonitor()
    exten => _87X,n,Hangup()

It's good practise to always have NoOp - the first rule must start with 1, this way you can interchange the rules with the n step any way you want.

It's always best to use MixMonitor as opposed to Monitor - Monitor only records inbound or outbound audio - MixMonitor uses both.

Also wav is quite a good choice as a format - I also use a script to transform the wav files to OGG at the end of the day - the best compromise between size / quality and licensing issues.

With regards to the arguments

a is append b is bridge (good for production - it will only record when the call is answered - not good for debugging)

With regards to StopMixMonitor(), I'm just being thorough, but for examples there are cases in which you would like to stop the recording, for example:


    ...
    exten => _39[5-9],n,Dial(SIP/${EXTEN},45)
    exten => _39[5-9],n,GotoIf($["${DIALSTATUS}" = "BUSY"]?busy:unavailable)
    exten => _39[5-9],n(busy),NoOp()
    exten => _39[5-9],n,StopMixMonitor()
    exten => _39[5-9],n,Voicemail(${EXTEN},u)
    exten => _39[5-9],n,Hangup()
    exten => _39[5-9],n(unavailble),NoOp()
    exten => _39[5-9],n,StopMixMonitor()
    exten => _39[5-9],n,Hangup()
    ...

In this example, you would stop the recording of the voice mail interaction.

Hope this will bring some light on the matter.

like image 45
nmirceac Avatar answered Sep 22 '22 15:09

nmirceac