:loudspeaker: A JavaScript library to add voice commands to your sites, apps or games.
A JavaScript library to add voice commands to your sites, apps or games.
NOTE: At this time, this library is only compatible with Google Chrome.
$ component install pazguille/voix
See: https://github.com/component/component
You can use the standalone version:
<script src="voix.js"></script>
Create a new instance of Voix.
var voix = new Voix('en-US');
Create a new instance of Voix
.
lang
: A given language.var voix = new Voix('en-US');
Sets a new command
with a listener
to the collection.
command
- A given command
.listener
- A given listener
.voix.setCommand('play', playVideo);
Removes a given command
or its listener
from the collection.
command
- A given command
to remove.listener
[optional] - A given listener
to remove.voix.removeCommand('play', playVideo);
// or
voix.removeCommand('play');
Starts the recognition.
voix.start();
Stops the recognition.
voix.stop();
## Maintained by
Licensed under the MIT license.
Copyright © 2013 @pazguille.