Recording problem...
Posted:
Fri Sep 21, 2007 2:16 pm
by moncute
Hi..
Can everyone help me..how can i modify the recording..to make the file name..like this(LIST_ID,NAME_OF_PERSON_date_of_call.wav)
Posted:
Sun Sep 23, 2007 12:12 pm
by gardo
This is the entry in extensions.conf responsible for your default vicidial recordings.
; this is used for recording conference calls, the client app sends the filename
; value as a callerID recordings go to /var/spool/asterisk/monitor (WAV)
exten => 8309,1,Answer
exten => 8309,2,Monitor(wav,${CALLERIDNAME})
exten => 8309,3,Wait,3600
exten => 8309,4,Hangup
you can set some variables to have the recording file saved under a different name.
exten => 8309,n,Set(CALLFILENAME=${TIMESTAMP}_${EXTEN}_${CALLERIDNAME})
exten => 8309,n,Monitor(wav,${CALLFILENAME})
Try googling on the different variables available for call recording file name. Most probably you need to change the "Campaign Rec Filename: " entry in the campaign settings page .