Code Monkey home page Code Monkey logo

linguarecorder's Introduction

Description

LinguaRecorder is a fast cross-browser voice recording JS library.

Features

  • Easily record your users directly from their browser (no software/plugin/whatsoever needed)
  • Both desktop and mobile friendly
  • Fully configurable
  • Intelligent cutting to avoid blanks at the start/end of a record
  • Saturation control to cancel/discard bad records
  • Whole bunch of events allowing you to asynchronousely manage your user's actions
  • Wide possibilities for exporting your records, including:
    • Play in browser
    • Direct download
    • WAV-encoded Blob (to send to an API for exemple)
    • URL object
  • ...

Browser Compatibility

Tested in the following browsers/versions:

  • Firefox 25+
  • Chrome 22+
  • Firefox for android* 57+
  • Chrome for android* 63+
  • Microsoft Edge 12+
  • Safari 11+
  • Opera 18+

It may work on older versions of the browsers marked with *, but it has not been tested.

Live demos

The LinguaRecorder sandbox allows you to get familiar with (hardly) all features of the library, and to play with it's configuration possibilities.

The demo folder contain several other implementation examples.

Documentation

Contents

Quick Start

Get the code:

  • Clone github repository: git clone https://github.com/lingua-libre/LinguaRecorder.git
  • Install with npm: npm install lingua-recorder
  • Use a CDN: todo

Then include the two files stored in the src folder in your HTML page:

<script src="/path/to/AudioRecord.js"></script>
<script src="/path/to/LinguaRecorder.js"></script>
<script>
    var recorder = new LinguaRecorder();
    ...
</script>

Examples

to do

LinguaRecorder

Configurations

autoStart boolean false

Set to true to wait for voice detection before effectively starting the record when calling the start() method.

autoStop boolean false

Set to true to stop the record when there is a silence.

bufferSize number 4096

Set the size of the samples buffers. Could be 0 (let the browser choose the best one) or one of the following values: 256, 512, 1024, 2048, 4096, 8192, 16384; the less the more precise, the higher the more efficient.

timeLimit number 0

Maximum time (in seconds) after which it is necessary to stop recording. Set to 0 (default) for no time limit.

onSaturate string 'none'

Tell what to do when a record is saturated. Accepted values are 'none' (default), 'cancel' and 'discard'.

saturationThreshold number 0.99

Amplitude value between 0 and 1 included. Only used if onSaturate is different from 'none'. Threshold above which a record should be flagged as saturated.

startThreshold number 0.1

Amplitude value between 0 and 1 included. Only used if autoStart is set to true. Amplitude to reach to auto-start the recording.

stopThreshold number 0.05

Amplitude value between 0 and 1 included. Only used if autoStop is set to true. Amplitude not to exceed in a stopDuration interval to auto-stop recording.

stopDuration number 0.3

Duration value in seconds. Only used if autoStop is set to true. Duration during which not to exceed the stopThreshold in order to auto-stop recording.

marginBefore number 0.25

Duration value in seconds. Only used if autoStart is set to true.

marginAfter number 0.25

Duration value in seconds. Only used if autoStop is set to true.

minDuration number 0.15

Duration value in seconds. Discard the record if it last less than minDuration. Default value to 0.15, use 0 to disable.

Methods

start()

Start to record.

If autoStart is set to true, enter in listening state and postpone the start of the recording when a voice will be detected.

  • boolean Has the record being started or not. If false, that means either the recorder is not initialized yet, or a record is already in progress.

pause()

Switch the record to the pause state.

While in pause, all the inputs comming from the microphone will be ignored. To resume to the recording state, just call the start() method again. It is also still possible to stop() or cancel() a record, and you have to do so upstream if you wish to start a new one.

  • boolean Has the record being paused or not.

stop([cancelRecord])

Stop the recording process and fire the record to the user.

Depending of the configuration, this method could discard the record if it fails some quality controls (duration and saturation).

To start a new record afterwards, just call the start() method again.

  • cancelRecord: boolean optional If set to true, cancel and discard the record in any cases.
  • boolean Has the record being stopped or not.

cancel()

Stop a recording, but without saving the record. This is an alias for stop( true ).

  • boolean Has the record being stopped or not.

toggle()

Toggle between the recording and stopped state.

on(event, handler)

Attach a handler function to a given event.

  • event: string Name of an event. See the dedicated section for a list of all the events available.
  • handler: function A function to execute when the event is triggered.
  • this

off(event)

Remove all the handler function from an event.

  • event: string Name of an event. See the dedicated section for a list of all the events available.
  • this

connectAudioNode(node)

Add an extra AudioNode

This can be used to draw a live visualisation of the sound, or to perform some live editing tasks on the stream before it is recorded. See https://developer.mozilla.org/fr/docs/Web/API/AudioNode

Note that it can produce a little interrupt in the record if you are in listening or recording state.

  • node: AudioNode Node to connect inside the recording context.
  • this

disconnectAudioNode(node)

Remove an extra AudioNode previously added with connectAudioNode.

Note that it can produce a little interrupt in the record if you are in listening or recording state.

  • node: AudioNode Node to disconnect from the recording context.
  • this

getRecordingTime()

Return the current duration of the record.

  • number The duration in seconds

getState()

Return the current state of the recorder.

  • string One of the following: 'stop', 'listening', 'recording', 'paused'

getAudioContext()

Return the audioContext initialised and used by the recorder.

see https://developer.mozilla.org/fr/docs/Web/API/AudioContext

  • AudioContext The AudioContext object used by the recorder.

Events

  • ready: MediaStream The user has allowed your script to use the microphone, the recorder is ready to start a record.
  • readyFail: DOMException Something got wrong during the initialisation; maybe the user has no microphone, or he has not allowed you to use it. For the full exceptions list, see https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia#Exceptions.
  • started: A record has just started; or to say it differently the recorder switched to the record state.
  • recording: Float32Array Firered when in the record state, each time it has N new samples available (N = bufferSize); the given parameter is an array containing those new samples.
  • listening: Float32Array Same as the recording event, but when the recorder is in the listen state.
  • saturated: Fired each time the record get saturated.
  • paused: The record has just being paused; or to say it differently the recorder switched to the pause state.
  • stoped: AudioRecord The record has just being stopped; or to say it differently the recorder switched to the stop state. It includes a reference to an AudioRecord, containing the stopped record.
  • canceled: string The record has just being canceled, the string contains the reason of the cancelation, one of the following: 'asked', 'saturated' (when onSaturate is set to 'cancel'), 'tooShort' (when minDuration is not reached).

States

  • stop: default Not recording yet, what are you waiting?
  • listen: You've hit start, but you've not sepaken yet, it's time to do so! (only when autoStart is true)
  • record: Currently recording. That's amazing, isn't it?
  • pause: It was recording, but a dog just walked in so you paused the record the time to kick it away, but you wish to finish it later.

AudioRecord

to do

Licence

The LinguaRecorder was originaly a part of LinguaLibre, developped by Nicolas Vion (@zmoostik), but has then been splitted out and completely rewritten by Antoine Lamielle (@0x010C).

Released under the GPL v3 License.

linguarecorder's People

Contributors

0x010c avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.