MicrophoneRecorderOptions interface

Options for creating a microphone recorder.

Signature:

export interface MicrophoneRecorderOptions 

Properties

PropertyModifiersTypeDescription
uncompressed?readonlyboolean(Optional) Set this to true to record to an uncompressed audio format. Default is false.

MicrophoneRecorderOptions.uncompressed property

Set this to true to record to an uncompressed audio format. Default is false.

Signature:

readonly uncompressed?: boolean;

Remarks

Using an uncompressed format can improve the performance of your module while recording by avoiding encoding, but it will also result in a larger file size and so should not be used for long recordings.