Name
Record() — Records channel audio to a file
Synopsis
Record(filename.format[,silence[,maxduration[,options]]])
Records audio from the channel in to the given
filename. If the file already exists, it
will be overwritten.
Optional arguments include:
formatSpecifies the format of the file type to be recorded.
silenceSpecifies the number of seconds of silence to allow before ending the recording and continuing on with the next priority in the dialplan.
maxdurationSpecifies the maximum recording duration, in seconds. If not specified or
0, there is no maximum.optionsMay contain any of the following letters:
aAppend to the recording, instead of overwriting it.
nDo not answer, but record anyway if the line is not yet answered.
qQuiet mode; do not play a beep tone at the beginning of the recording.
sSkip recording if the line is not yet answered.
tUse the alternate
*terminator key instead of the default#.xIgnore all termination keys and keep recording until hangup.
If the filename contains %d, these characters will be replaced with a
number incremented by one each time the file is recorded.
The user can press # to
terminate the recording and continue to the next priority in the
dialplan.
; record the caller's name
exten => 123,1,Playback(pls-rcrd-name-at-tone)
exten => 123,n,Record(/tmp/name.gsm,3,30)
exten => 123,n,Playback(/tmp/name)