-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ by [KITT.AI](http://kitt.ai). | |
[Full Documentation](https://snowboy.kitt.ai/docs) | ||
|
||
|
||
Version: 1.0.0 (5/10/2016) | ||
Version: 1.0.1 (5/16/2016) | ||
|
||
Snowboy is a customizable hotword detection engine for you to create your own | ||
hotword like "OK Google" or "Alexa". It is powered by deep neural networks and has the following properties: | ||
|
@@ -31,6 +31,14 @@ It ships in the form of a **C library** with **Python** wrappers generated by SW | |
|
||
If you want support on other hardware/OS, please send your request to [[email protected]](mailto:snowboy.kitt.ai) | ||
|
||
## Precompiled Binaries | ||
* 64 bit Ubuntu [12.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1204-x86_64-1.0.1.tar.bz2) | ||
/ [14.04](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/ubuntu1404-x86_64-1.0.1.tar.bz2) | ||
* [MacOS X](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/osx-x86_64-1.0.1.tar.bz2) | ||
* Raspberry Pi with Raspbian 8.0, all versions | ||
([1/2/3/Zero](https://s3-us-west-2.amazonaws.com/snowboy/snowboy-releases/rpi-arm-raspbian-8.0-1.0.1.tar.bz2)) | ||
|
||
If you want to compile a version against your own environment/language, read on. | ||
|
||
## Dependencies | ||
|
||
|
@@ -49,7 +57,7 @@ Make sure that you can record audio with your microphone: | |
|
||
rec t.wav | ||
|
||
### Ubuntu | ||
### Ubuntu/Raspberry Pi | ||
|
||
First `apt-get` install `swig`, `sox`, `portaudio` and its Python binding `pyaudio`: | ||
|
||
|
@@ -112,6 +120,11 @@ See [Full Documentation](https://snowboy.kitt.ai/docs). | |
|
||
## Change Log | ||
|
||
**5/10/2016** | ||
**v1.0.1, 5/16/2016** | ||
|
||
* VAD now returns -2 on silence, -1 on error, 0 on voice and >0 on triggered models | ||
* added static library for Raspberry Pi in case people want to compile themselves instead of using the binary version | ||
|
||
**v1.0.0, 5/10/2016** | ||
|
||
* initial release |