The FileRecorder property

class UASCallFileRecorder
class Cause

Once a record job has ended and the record state has returned to IDLE or ERROR, the cause will be one of these.

Recording termination causes:

ERROR
record has stopped due to an error.
BARGEIN
record has stopped due to the detection of a DTMF digit.
SILENCE
record has stopped due to a silence timeout.
SIZE
record has stopped due to the maximum file size being reached.
ABORTED
record has been aborted (probably because stop was called).
HANGUP
record ended due to a call hangup.
TIMEOUT
record stopped because a timer has expired.
NONE
record is in progress or record has not occurred.

Usage example:

state = channel.FileRecorder.state()
if state != channel.FileRecorder.State.RECORDING:
    # recording a call has terminated
    cause = channel.FileRecorder.cause()
    if cause == channel.FileRecorder.Cause.SILENCE:
        # recording stopped due to silence
        pass
class UASCallFileRecorder.State

The record state can be checked to determine whether a record job is in progress. When a record job ends, the record termination cause can be checked to find the reason why.

Record states:

RECORDING
recording is in progress.
IDLE
recording is not in progress.
ERROR
a record job failed

Usage example:

state = channel.FileRecorder.state()
if state == channel.FileRecorder.State.RECORDING:
    # recording a call in progress
    pass
UASCallFileRecorder.audio_detected_in_recording()

Indicates whether any audio was detected during the record job.

This function should be called only after a record job has completed. If it is called during, or before, a record job it will return None.

If this function returns False, this is an indication that the recording contains no audio. It should contain only silence.

This function will return True if audio was detected during the record job.

Usage example:

# record until finished due to two seconds of silence
cause = channel.FileRecorder.record(filename="recfile",
                                    milliseconds_max_silence=2000)
if cause == channel.FileRecorder.Cause.SILENCE:
    # the recording job was terminated because of silence
    if channel.FileRecorder.audio_detected_in_recording() is True:
        # we did record some none-silence, there is audio in the file.
        pass
UASCallFileRecorder.cause()

This function will return a cause.

When a record job terminates, the reason why can be requested by calling this function. If this function is called while a record job is still running, the cause will be NONE.

UASCallFileRecorder.record(filename, file_format='alaw', rate=8000, seconds_timeout=120, max_bytes=1920000, milliseconds_max_silence=10000, barge_in=False)

Record a media file.

Required argument:
  • filename

    the name of the file to record.

Optional argument:
  • seconds_timeout

    the amount of time allocated to the record job. Default is 120 seconds.

  • max_bytes

    the maximum size allowed for the file. Default is 1920000 bytes (two minutes if 16bit at 8kHz).

  • milliseconds_max_silence

    the amount of silence (in milliseconds) after which to stop recording. Default is 10 seconds.

  • barge_in

    option to allow DTMF barge-in. Default is False.

  • file_format

    the file format to use. Default is alaw.

  • rate

    the rate at which to record. Default is 8000.

This function is provided to allow the recording of a wav file to a filename specified in filename.

If the call state is IDLE, this function will raise a Hangup exception. If the call state is not IDLE but also not ANSWERED, this function will raise an Error exception.

If the record state is already RECORDING, this function will raise an Error exception.

The optional argument file_format is the audio codec in which to record the media. The default is alaw (G.711 A-law), other options are ulaw (G.711 mu-law), oki (OKI ADPCM), ima (IMA ADPCM) s16bit (signed 16-bit PCM) and u8bit (unsigned 8-bit PCM). Of those, G.711 A-law, G.711 mu-law and 16-bit PCM provide the best quality since the first two match those used on calls, and they can convert to the last without degradation.

The optional argument rate is the recording rate in Hz. The default is 8000, other options are 6000, 11000 and 11025. Of those, 8000 provides the best quality since it matches the sampling rate used on calls.

The recording will continue until one of the termination conditions applies. This could be that the maximum file size (max_bytes) has been reached; or the silence timeout (milliseconds_max_silence) has been triggered; or barge in has occurred; or the timeout (seconds_timeout) has expired. To turn off the termination conditions, max_bytes=0 means no limit, milliseconds_max_silence=0 means no silence timeout and seconds_timeout=None means no timout.

This function will block until the recording has finished or a timeout (seconds_timeout) has expired.

Upon return, this function will return a termination cause.

Usage example:

# record until finished due to two seconds of silence
cause = channel.FileRecorder.record(filename="recfile",
                                    milliseconds_max_silence=2000)
if cause == channel.FileRecorder.Cause.SILENCE:
    # the recording job was terminated because of two seconds of silence
    pass
UASCallFileRecorder.start(filename, file_format='alaw', rate=8000, max_bytes=1920000, milliseconds_max_silence=10000, barge_in=False)

Begin the recording of a media file.

Required argument:
  • filename

    the name of the file to record.

Optional argument:
  • max_bytes

    the maximum size allowed for the file. Default is 1920000 bytes (two minutes if 16bit at 8kHz).

  • milliseconds_max_silence

    the amount of silence after which to stop recording. Default is 10 seconds.

  • barge_in

    option to allow DTMF barge-in. Default is False.

  • file_format

    the file format to use. Default is alaw.

  • rate

    the rate at which to record. Default is 8000.

This function is provided to allow the recording of a wav file to a filename specified in filename.

If the call state is IDLE, this function will raise a Hangup exception. If the call state is not IDLE but also not ANSWERED, this function will raise an Error exception.

If the record state is already RECORDING, this function will raise an Error exception.

The optional argument file_format is the audio codec in which to record the media. The default is alaw (G.711 A-law), other options are ulaw (G.711 mu-law), oki (OKI ADPCM), ima (IMA ADPCM) s16bit (signed 16-bit PCM) and u8bit (unsigned 8-bit PCM). Of those, G.711 A-law, G.711 mu-law and 16-bit PCM provide the best quality since the first two match those used on calls, and they can convert to the last without degradation.

The optional argument rate is the recording rate in Hz. The default is 8000, other options are 6000, 11000 and 11025. Of those, 8000 provides the best quality since it matches the sampling rate used on calls.

The recording will continue until one of the termination conditions applies. This could be that the maximum file size (max_bytes) has been reached; the silence timeout (milliseconds_max_silence) has been triggered or barge in has occurred. To turn off the termination conditions, max_bytes=0 means no limit and milliseconds_max_silence=0 means no silence timeout.

This function will block until the recording has started or a timeout has expired.

Upon return, this function will return True for success, otherwise False.

Usage example:

# Start a record job that will terminate on 2 seconds of silence.
if channel.FileRecorder.start(filename="recfile", milliseconds_max_silence=2000) == True:
    # While recording, we can do something else; then wait until recording is complete.
    cause = channel.FileRecorder.wait_until_finished()
    if cause == channel.FileRecorder.Cause.SILENCE:
        # recording stopped due to 2 seconds of silence
        pass
UASCallFileRecorder.state()

This function will return the current state.

When a record job is busy, its status can be tracked by calling this function.

If this function is called while when no record job is in progress, the state will be IDLE.

UASCallFileRecorder.stop()

Stop a record job.

If the call state is IDLE, this function will raise a Hangup exception. If the call state is not IDLE but also not ANSWERED, this function will raise a Error exception.

If the record state is not RECORDING, this function will simply return True.

This function will block until the record job terminates or a timeout expires.

Upon return, this method will return True for success, otherwise False.

Usage example:

# Start a record job.
if channel.FileRecorder.start(filename="recfile") == True:
    # While recording, we can do something else; then stop the recording.
    channel.FileRecorder.stop()
UASCallFileRecorder.wait_until_finished(seconds_timeout=120)
Wait until the current media recording is complete.
Optional argument:
  • seconds_timeout

    the amount of time allocated to wait for the record job to terminate. Default is 120 seconds.

If the call state is IDLE, this function will raise a Hangup exception. If the call state is not IDLE but also not ANSWERED, this function will raise an Error exception.

This function will block until the recording terminates or the timeout expires. Giving a value of None for seconds_timeout will enable an infinite wait. If the timeout does expire, a cause of TIMEOUT will be returned.

Upon return, this function will return a termination cause.

Usage example:

# Start a record job that will terminate on 2 seconds of silence.
if channel.FileRecorder.start(filename="recfile",
                              milliseconds_max_silence=2000) == True:
    # While recording, we can do something else
    # then wait until recording is complete.
    cause = channel.FileRecorder.wait_until_finished()
    if cause == channel.FileRecorder.Cause.SILENCE:
        # the recording job was terminated because of silence
        pass

Previous topic

The FilePlayer property

Next topic

The WholeCallRecorder property