├── .gitignore ├── LICENSE ├── README.md ├── dist.old └── webVoiceSDK-linto.min.js ├── dist └── webVoiceSDK-linto.min.js ├── hotwords ├── linto │ ├── group1-shard1of1.bin │ └── model.json └── slinfox │ ├── group1-shard1of1.bin │ └── model.json ├── package.json ├── src ├── vendor │ └── rnnoise-wasm │ │ ├── .gitmodules │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.sh │ │ ├── dist │ │ ├── index.js │ │ └── rnnoise.wasm │ │ └── package.json ├── webvoicesdk.js └── webvoicesdk │ ├── nodes │ ├── downsampler.js │ ├── error.js │ ├── features.js │ ├── hotword.js │ ├── mic.js │ ├── node.js │ ├── recorder.js │ ├── speechpreemphasis.js │ └── vad.js │ ├── rnnoise │ ├── index.js │ └── loader.js │ └── workers │ ├── downsampler.blob.js │ ├── features.blob.js │ ├── hotword.blob.js │ └── speechpreemphasis.blob.js └── tests ├── static-html ├── index.html └── index.js └── with-bundler ├── index.html └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/README.md -------------------------------------------------------------------------------- /dist.old/webVoiceSDK-linto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/dist.old/webVoiceSDK-linto.min.js -------------------------------------------------------------------------------- /dist/webVoiceSDK-linto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/dist/webVoiceSDK-linto.min.js -------------------------------------------------------------------------------- /hotwords/linto/group1-shard1of1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/hotwords/linto/group1-shard1of1.bin -------------------------------------------------------------------------------- /hotwords/linto/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/hotwords/linto/model.json -------------------------------------------------------------------------------- /hotwords/slinfox/group1-shard1of1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/hotwords/slinfox/group1-shard1of1.bin -------------------------------------------------------------------------------- /hotwords/slinfox/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/hotwords/slinfox/model.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/package.json -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/.gitmodules -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/Dockerfile -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/LICENSE -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/README.md -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/build.sh -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/dist/index.js -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/dist/rnnoise.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/dist/rnnoise.wasm -------------------------------------------------------------------------------- /src/vendor/rnnoise-wasm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/vendor/rnnoise-wasm/package.json -------------------------------------------------------------------------------- /src/webvoicesdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/downsampler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/downsampler.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/error.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/features.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/hotword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/hotword.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/mic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/mic.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/node.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/recorder.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/speechpreemphasis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/speechpreemphasis.js -------------------------------------------------------------------------------- /src/webvoicesdk/nodes/vad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/nodes/vad.js -------------------------------------------------------------------------------- /src/webvoicesdk/rnnoise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/rnnoise/index.js -------------------------------------------------------------------------------- /src/webvoicesdk/rnnoise/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/rnnoise/loader.js -------------------------------------------------------------------------------- /src/webvoicesdk/workers/downsampler.blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/workers/downsampler.blob.js -------------------------------------------------------------------------------- /src/webvoicesdk/workers/features.blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/workers/features.blob.js -------------------------------------------------------------------------------- /src/webvoicesdk/workers/hotword.blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/workers/hotword.blob.js -------------------------------------------------------------------------------- /src/webvoicesdk/workers/speechpreemphasis.blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/src/webvoicesdk/workers/speechpreemphasis.blob.js -------------------------------------------------------------------------------- /tests/static-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/tests/static-html/index.html -------------------------------------------------------------------------------- /tests/static-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/tests/static-html/index.js -------------------------------------------------------------------------------- /tests/with-bundler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/tests/with-bundler/index.html -------------------------------------------------------------------------------- /tests/with-bundler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linto-ai/WebVoiceSDK/HEAD/tests/with-bundler/index.js --------------------------------------------------------------------------------