Audio input

The audio-recorder. It is used to record snippets of audio and send them.

An example on how to use it is:

form_groups = {
    'Audio recorder': [
        {
            'mapping': 'voice',
            'fieldName': 'Audio recorder',
            'inputType': 'audio',
        }
    ]
}
s.plt.generate_input_form_groups(
    order=0, form_groups=form_groups
)

results in:

To begin recording, the user just has to press the button with the microphone symbol:

And press it again to stop recording:

Multiple audios can be recorded:

Last updated