web-audio-recorder
Reactive icon

Web Audio Recorder

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 22 April 2024
 by 
0.0
 (0 ratings)
web-audio-recorder

Web Audio Recorder

Documentation
1.0.0

Web Audio Recorder is very easy to use.

You just need to take dependency of two client actions - 

StartRecording - Call this action to start Recording.
StopRecording - Call this action to stop Recording.

You can call these action from your own screen actions or events, it'll not have any specific interface and work with your own interface.

How to use -

1. Call StartRecording action to start recording.
2. It'll ask for Microphone access, If already have Microphone access then it'll start recording.
3 StartRecording action has an Output parameter (MediaRecorderObject) of type object.
4.Create a screen local variable of type Object (i.e. MediaRecorderObjectLocal) and assign MediaRecorderObject output parameter to your local variable.  

                                            MediaRecorderObjectLocal = MediaRecorderObject 

5. To stop recording call StopRecording action, it'll take 3 input parameter.

        MediaRecorderObject - Pass the MediaRecorderObject you got from StartRecording action output parameter.

                                           (i.e. Pass MediaRecorderObjectLocal variable as mentioned above)

        IsPlayAfterStop - Recording will play automatically after recording stopped..

        IsDownloadAfterStop - Recording file will download automatically after recording stopped..