• This repository has been archived on 02/Sep/2020
  • Stars
    star
    138
  • Rank 264,508 (Top 6 %)
  • Language
    CoffeeScript
  • License
    Other
  • Created about 10 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Microphone in the browser using WebRTC and WebSockets

Microphone

## Quickstart

See quickstart.md

Example

Home automation demo

Demo

(Source code: https://github.com/wit-ai/house)

API

Here are the methods available on the Microphone object

Assumptions

You know how to create the microphone. See quickstart.md for instructions on how to create your microphone.

Available methods

connect(token)

connect the microphone to the Wit instance identified by the token


start()

start streaming audio to the Wit instance (also achieved by clicking on the microphone element on the page)


stop()

stop recording audio (also achieved by clicking on the microphone element on the page). Wit will send a response, received via the onresult handler.


onready(callback)

call the given callback when the microphone is ready to record


onresult(callback)

call the given callback when a response is received from the instance. The callback function takes two arguments: a string corresponding to the detected intent, and a list of entity objects.


onerror(callback)

call the given callback whenever an error occurs. An error string is passed to the callback function.


onaudiostart(callback)

call the given callback when the recording starts.


onaudioend(callback)

call the given callback when the recording stops


onconnecting(callback)

call the given callback when Microphone is waiting for the server to reply or for the user to allow access to her microphone.


ondisconnected(callback)

call the given callback when the connection is closed by the server or the client.

How to build

Dev

grunt serve

### Release

# bump version in microphone.coffee
# bump version in bower.json
./release.sh

License

The license for microphone can be found in LICENSE file in the root directory of this source tree.