voix.js alternatives and similar libraries
Based on the "Voice Command" category.
Alternatively, view voix.js alternatives based on common mentions on social networks and blogs.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of voix.js or a related project?
Popular Comparisons
README
Voix JS
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.
Installation
$ component install pazguille/voix
See: https://github.com/component/component
Standalone
You can use the standalone version:
<script src="voix.js"></script>
How-to
Create a new instance of Voix.
var voix = new Voix('en-US');
API
Voix(lang)
Create a new instance of Voix
.
lang
: A given language.
var voix = new Voix('en-US');
Voix#setCommand(command, listener)
Sets a new command
with a listener
to the collection.
command
- A givencommand
.listener
- A givenlistener
.
voix.setCommand('play', playVideo);
Voix#removeCommand(command, listener)
Removes a given command
or its listener
from the collection.
command
- A givencommand
to remove.listener
[optional] - A givenlistener
to remove.
voix.removeCommand('play', playVideo);
// or
voix.removeCommand('play');
Voix#start()
Starts the recognition.
voix.start();
Voix#stop()
Stops the recognition.
voix.stop();
Maintained by
- Guille Paz (Front-end developer | Web standards lover)
- E-mail: [email protected]
- Twitter: @pazguille
- Web: http://pazguille.me
License
Licensed under the MIT license.
Copyright (c) 2013 @pazguille.
*Note that all licence references and agreements mentioned in the voix.js README section above
are relevant to that project's source code only.