AudioEffectRecord

Inherits: AudioEffect < Resource < Reference < Object

Audio effect used for recording sound from a microphone.

Description

Allows the user to record sound from a microphone. It sets and gets the format in which the audio file will be recorded (8-bit, 16-bit, or compressed). It checks whether or not the recording is active, and if it is, records the sound. It then returns the recorded sample.

Tutorials

Properties

Formatformat1

Methods

AudioStreamSampleget_recording ( ) const
boolis_recording_active ( ) const
voidset_recording_active ( bool record )

Property Descriptions

Default1
Setterset_format(value)
Getterget_format()

Specifies the format in which the sample will be recorded. See Format for available formats.

Method Descriptions

Returns the recorded sample.


  • bool is_recording_active ( ) const

Returns whether the recording is active or not.


  • void set_recording_active ( bool record )

If true, the sound will be recorded. Note that restarting the recording will remove the previously recorded sample.