├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── demo └── test.js ├── index.js ├── package.json ├── pocketsphinx └── CMakeLists.txt └── sphinxbase └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/README.md -------------------------------------------------------------------------------- /demo/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/demo/test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/package.json -------------------------------------------------------------------------------- /pocketsphinx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/pocketsphinx/CMakeLists.txt -------------------------------------------------------------------------------- /sphinxbase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/node-pocketsphinx/HEAD/sphinxbase/CMakeLists.txt --------------------------------------------------------------------------------