ConferenceRecorderParameters
ConferenceRecorder parameters. Can be passed as arguments to the VoxEngine.createRecorder method.
Props
expire
expire:
Storage time for recorded files. The default value is 3 months; see possible values in the RecordExpireTime list.
hd_audio
hd_audio: false
| undefined
| true
Whether to use the HD audio. If set to false (default), 8 KHz / 32 kbps mp3 file is generated. Otherwise, "wideband audio" 48 KHz / 192 kbps mp3 file is generated. Note that transcription's quality does not depend on this parameter. The property is not compatible with lossless: true property.
language
language:
Transcription language. The parameter uses ASRLanguage from the ASR Module as possible values. Note that it is necessary to include the ASR module in the scenario to use the language constants. The parameter is not available for the Recorder module.
lossless
lossless: false
| undefined
| true
Whether to save the record in flac format. The default value is false. The property is not compatible with hd_audio: true property.
recordNamePrefix
recordNamePrefix: string
| undefined
The prefix to add to the record names when storing to your S3 storage.
secure
secure: false
| undefined
| true
Whether to restrict access to the record without management API authorization (available only in VoxEngine.createRecorder).
transcribe
transcribe: false
| undefined
| true
Whether to create the call record transcription. Note that transcription is not available for the Recorder module. See the details in the article.
video
video: false
| undefined
| true
Whether to record video. The default value is false. For video recording use the Call.record method call ({video: true}). The parameter is not available for the Recorder module because it could only record an audio.