How to Record a call in AsteriskNOW?
How to enable Call Recording on AsteriskNOW ? I am a student doing my final year project in this domain.I have installed asterisk server and able to make the connections. But开发者_StackOverflow中文版 unable to record the calls.
I have googled a lot and found something about monitor command.But I am still struggling where to place the monitor command in extensions.confPlease do help me. Thanks in advance
Regards, Rashmi.R
Do you use Monitor
cmd ? If not: add it to your dialplan (there is also StopMonitor
cmd). If you already use it then you will have to show us more details: dialplan, maybe some fragment of asterisk log with error.
There is example of my dialplan with Monitor
cmd:
[afterwork_service]
exten => s,1,NoOp
exten => s,n,Answer
exten => s,n,PlayBack(recording_starting_info)
exten => s,n,Wait(2)
exten => s,n,Monitor(wav,${CALLFILENAME})
It plays info about recording starting and then customer can record praises to our service, software and developers :)
精彩评论