change in documentation
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
- Download multiple models
|
- Download multiple models
|
||||||
- Model storage path management (for multiple models)
|
- Model storage path management (for multiple models)
|
||||||
- Model ID management (for model updates)
|
- Model ID management (for model updates)
|
||||||
- Smaller JS size (>5.7MB vs 3.8MB)
|
- Smaller JS size (>5.7MB vs 3.7MB)
|
||||||
- All related files (worker.js, worklet processors,...) are bundled
|
- All related files (worker.js, worklet processors,...) are bundled
|
||||||
|
|
||||||
# Basic usage
|
# Basic usage
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
1
devel/BrowserRecognizer.worker.js
Normal file
1
devel/BrowserRecognizer.worker.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
"use strict";var Module={};var initializedJS=false;function threadPrintErr(...args){var text=args.join(" ");console.error(text)}function threadAlert(...args){var text=args.join(" ");postMessage({cmd:"alert",text:text,threadId:Module["_pthread_self"]()})}var err=threadPrintErr;self.alert=threadAlert;Module["instantiateWasm"]=(info,receiveInstance)=>{var module=Module["wasmModule"];Module["wasmModule"]=null;var instance=new WebAssembly.Instance(module,info);return receiveInstance(instance)};self.onunhandledrejection=e=>{throw e.reason||e};function handleMessage(e){try{if(e.data.cmd==="load"){let messageQueue=[];self.onmessage=e=>messageQueue.push(e);self.startWorker=instance=>{Module=instance;postMessage({"cmd":"loaded"});for(let msg of messageQueue){handleMessage(msg)}self.onmessage=handleMessage};Module["wasmModule"]=e.data.wasmModule;for(const handler of e.data.handlers){Module[handler]=(...args)=>{postMessage({cmd:"callHandler",handler:handler,args:args})}}Module["wasmMemory"]=e.data.wasmMemory;Module["buffer"]=Module["wasmMemory"].buffer;Module["ENVIRONMENT_IS_PTHREAD"]=true;if(typeof e.data.urlOrBlob=="string"){importScripts(e.data.urlOrBlob)}else{var objectUrl=URL.createObjectURL(e.data.urlOrBlob);importScripts(objectUrl);URL.revokeObjectURL(objectUrl)}loadBR(Module)}else if(e.data.cmd==="run"){Module["__emscripten_thread_init"](e.data.pthread_ptr,0,0,1);Module["__emscripten_thread_mailbox_await"](e.data.pthread_ptr);Module["establishStackSpace"]();Module["PThread"].receiveObjectTransfer(e.data);Module["PThread"].threadInitTLS();if(!initializedJS){Module["__embind_initialize_bindings"]();initializedJS=true}try{Module["invokeEntryPoint"](e.data.start_routine,e.data.arg)}catch(ex){if(ex!="unwind"){throw ex}}}else if(e.data.cmd==="cancel"){if(Module["_pthread_self"]()){Module["__emscripten_thread_exit"](-1)}}else if(e.data.target==="setimmediate"){}else if(e.data.cmd==="checkMailbox"){if(initializedJS){Module["checkMailbox"]()}}else if(e.data.cmd){err(`worker.js received unknown command ${e.data.cmd}`);err(e.data)}}catch(ex){Module["__emscripten_thread_crashed"]?.();throw ex}}self.onmessage=handleMessage;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# Build the js file into this directory or the outer for release mode
|
# Build the js file into this directory, debug mode or release mode
|
||||||
|
|
||||||
cd .. &&
|
cd .. &&
|
||||||
SRC=$(realpath src) &&
|
SRC=$(realpath src) &&
|
||||||
@@ -7,7 +7,6 @@ VOSK=$(realpath vosk) &&
|
|||||||
OPENFST=$(realpath openfst) &&
|
OPENFST=$(realpath openfst) &&
|
||||||
LIBARCHIVE=$(realpath libarchive) &&
|
LIBARCHIVE=$(realpath libarchive) &&
|
||||||
CLAPACK_WASM=$(realpath clapack-wasm) &&
|
CLAPACK_WASM=$(realpath clapack-wasm) &&
|
||||||
RELEASE=0 &&
|
|
||||||
|
|
||||||
MAX_MEMORY=${MAX_MEMORY:-300mb} &&
|
MAX_MEMORY=${MAX_MEMORY:-300mb} &&
|
||||||
MAX_THREADS=${MAX_THREADS:-2} &&
|
MAX_THREADS=${MAX_THREADS:-2} &&
|
||||||
@@ -37,8 +36,9 @@ fi
|
|||||||
export PATH=:$PATH:$EMSDK/upstream/bin &&
|
export PATH=:$PATH:$EMSDK/upstream/bin &&
|
||||||
|
|
||||||
cd $SRC &&
|
cd $SRC &&
|
||||||
|
RELEASE=1 &&
|
||||||
if [ $RELEASE = 0 ]; then
|
if [ $RELEASE = 0 ]; then
|
||||||
em++ -O0 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sASSERTIONS=2 -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sINITIAL_MEMORY=$MAX_MEMORY -sPTHREAD_POOL_SIZE=$MAX_THREADS -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$LIBARCHIVE/include -I$VOSK/src -L$LIBARCHIVE/lib -larchive -L$KALDI/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$OPENFST/lib -l:libfst.a -l:libfstngram.a -L$CLAPACK_WASM -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$VOSK/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --emit-symbol-map --pre-js pre.js -o ../devel/BrowserRecognizer.js &&
|
em++ -O0 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sSAFE_HEAP -sSTACK_OVERFLOW_CHECK=2 -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sASSERTIONS=2 -sINITIAL_MEMORY=$MAX_MEMORY -sPTHREAD_POOL_SIZE=$MAX_THREADS -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sINVOKE_RUN=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$LIBARCHIVE/include -I$VOSK/src -L$LIBARCHIVE/lib -larchive -L$KALDI/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$OPENFST/lib -l:libfst.a -l:libfstngram.a -L$CLAPACK_WASM -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$VOSK/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --emit-symbol-map --pre-js pre.js -o ../devel/BrowserRecognizer.js
|
||||||
else
|
else
|
||||||
em++ -O3 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sINITIAL_MEMORY=$MAX_MEMORY -sPTHREAD_POOL_SIZE=$MAX_THREADS -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$LIBARCHIVE/include -I$VOSK/src -L$LIBARCHIVE/lib -larchive -L$KALDI/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$OPENFST/lib -l:libfst.a -l:libfstngram.a -L$CLAPACK_WASM -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$VOSK/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --pre-js pre.js -o ../devel/BrowserRecognizer.js &&
|
em++ -O3 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sINITIAL_MEMORY=$MAX_MEMORY -sPTHREAD_POOL_SIZE=$MAX_THREADS -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$LIBARCHIVE/include -I$VOSK/src -L$LIBARCHIVE/lib -larchive -L$KALDI/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$OPENFST/lib -l:libfst.a -l:libfstngram.a -L$CLAPACK_WASM -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$VOSK/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --pre-js pre.js -o ../devel/BrowserRecognizer.js
|
||||||
fi
|
fi
|
||||||
|
|||||||
25
src/Makefile
25
src/Makefile
@@ -4,7 +4,7 @@
|
|||||||
# # # # # # ## # # # # # # # # # # # #
|
# # # # # # ## # # # # # # # # # # # #
|
||||||
# #### # # ### #### # #### ##### #### # #### # # ####
|
# #### # # ### #### # #### ##### #### # #### # # ####
|
||||||
|
|
||||||
# 45 min build time
|
# 20 min build time
|
||||||
SHELL=/bin/bash
|
SHELL=/bin/bash
|
||||||
MAX_MEMORY?=300mb
|
MAX_MEMORY?=300mb
|
||||||
MAX_THREADS?=2
|
MAX_THREADS?=2
|
||||||
@@ -20,7 +20,7 @@ CLAPACK_WASM:=$(realpath clapack-wasm)
|
|||||||
|
|
||||||
BrowserRecognizer.js: | vosk libarchive
|
BrowserRecognizer.js: | vosk libarchive
|
||||||
cd $(SRC) && \
|
cd $(SRC) && \
|
||||||
em++ -O3 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sINITIAL_MEMORY=$(MAX_MEMORY) -sPTHREAD_POOL_SIZE=$(MAX_THREADS) -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$(LIBARCHIVE)/include -I$(VOSK)/src -L$(LIBARCHIVE)/lib -larchive -L$(KALDI)/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$(OPENFST)/lib -l:libfst.a -l:libfstngram.a -L$(CLAPACK_WASM) -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$(VOSK)/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --pre-js pre.js -o ../BrowserRecognizer.js && \
|
em++ -O3 global.cc genericModel.cc model.cc spkModel.cc recognizer.cc bindings.cc -sWASMFS \ -sWASM_BIGINT -sSINGLE_FILE -sMODULARIZE -sEMBIND_STD_STRING_IS_UTF8 -sPTHREAD_POOL_DELAY_LOAD -sTEXTDECODER=2 -sPTHREAD_POOL_SIZE_STRICT=2 -sINITIAL_MEMORY=$(MAX_MEMORY) -sPTHREAD_POOL_SIZE=$(MAX_THREADS) -sPOLYFILL=0 -sSUPPORT_LONGJMP=0 -sEXPORTED_FUNCTIONS=_malloc -sEXPORT_NAME=loadBR -sMALLOC=emmalloc -sEXPORTED_RUNTIME_METHODS=UTF8ToString,stringToUTF8OnStack -sENVIRONMENT=web,worker -I. -I$(LIBARCHIVE)/include -I$(VOSK)/src -L$(LIBARCHIVE)/lib -larchive -L$(KALDI)/src -l:online2/kaldi-online2.a -l:decoder/kaldi-decoder.a -l:ivector/kaldi-ivector.a -l:gmm/kaldi-gmm.a -l:tree/kaldi-tree.a -l:feat/kaldi-feat.a -l:cudamatrix/kaldi-cudamatrix.a -l:lat/kaldi-lat.a -l:lm/kaldi-lm.a -l:rnnlm/kaldi-rnnlm.a -l:hmm/kaldi-hmm.a -l:nnet3/kaldi-nnet3.a -l:transform/kaldi-transform.a -l:matrix/kaldi-matrix.a -l:fstext/kaldi-fstext.a -l:util/kaldi-util.a -l:base/kaldi-base.a -L$(OPENFST)/lib -l:libfst.a -l:libfstngram.a -L$(CLAPACK_WASM) -l:CBLAS/lib/cblas.a -l:CLAPACK-3.2.1/lapack.a -l:CLAPACK-3.2.1/libcblaswr.a -l:f2c_BLAS-3.8.0/blas.a -l:libf2c/libf2c.a -L$(VOSK)/src -l:vosk.a -lopfs.js -lembind -pthread -flto -msimd128 --pre-js pre.js -o ../BrowserRecognizer.js && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
rm -f BrowserRecognizer.worker.js && \
|
rm -f BrowserRecognizer.worker.js && \
|
||||||
sed -i 's/locateFile("BrowserRecognizer.worker.js")/pthreadUrl/g' BrowserRecognizer.js && \
|
sed -i 's/locateFile("BrowserRecognizer.worker.js")/pthreadUrl/g' BrowserRecognizer.js && \
|
||||||
@@ -39,21 +39,22 @@ prepare:
|
|||||||
[[ ! $(MAX_MEMORY) =~ "$(^[0-9]+([kmgt]b)?$$)" ]] && \
|
[[ ! $(MAX_MEMORY) =~ "$(^[0-9]+([kmgt]b)?$$)" ]] && \
|
||||||
echo "MAX_MEMORY valid suffixes are kb, mb, gb, tb, none (bytes)"; \
|
echo "MAX_MEMORY valid suffixes are kb, mb, gb, tb, none (bytes)"; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
[ $(EMSDK) = emsdk ] && \
|
[ $(EMSDK) = ../emsdk ] && \
|
||||||
echo "Installing emsdk + Emscripten..."; \
|
echo "Installing emsdk + Emscripten..."; \
|
||||||
git clone --depth=1 https://github.com/emscripten-core/emsdk.git && \
|
git clone --depth=1 https://github.com/emscripten-core/emsdk.git ../emsdk && \
|
||||||
cd emsdk && \
|
cd ../emsdk &&
|
||||||
./emsdk install 3.1.54 && \
|
./emsdk install 3.1.54 && \
|
||||||
./emsdk activate 3.1.54; \
|
./emsdk activate 3.1.54; \
|
||||||
. $(EMSDK)/emsdk_env.sh && \
|
. ./emsdk_env.sh && \
|
||||||
export PATH=:$$PATH:$(EMSDK)/upstream/bin
|
export PATH=:$$PATH:$(realpath $(EMSDK))/upstream/bin && \
|
||||||
|
cd ../src
|
||||||
|
|
||||||
libarchive: prepare
|
libarchive: prepare
|
||||||
rm -rf /tmp/libarchive && \
|
rm -rf /tmp/libarchive && \
|
||||||
git clone -b v3.7.2 --depth=1 https://github.com/libarchive/libarchive /tmp/libarchive && \
|
git clone -b v3.7.2 --depth=1 https://github.com/libarchive/libarchive /tmp/libarchive && \
|
||||||
cd /tmp/libarchive && \
|
cd /tmp/libarchive && \
|
||||||
build/autogen.sh && \
|
build/autogen.sh && \
|
||||||
CPPFLAGS="-O3 -flto" LDFLAGS="-O3 -flto" emconfigure ./configure --prefix=$(LIBARCHIVE) --without-lz4 --without-lzma --without-zlib --without-bz2lib --without-xml2 --without-expat --without-cng --without-openssl --without-libb2 --without-zstd --disable-bsdunzip --disable-xattr --disable-acl --disable-bsdcpio --disable-bsdcat --disable-rpath --disable-maintainer-mode --disable-dependency-tracking --enable-static --disable-shared && \
|
CPPFLAGS="-O3 -flto -msimd128" LDFLAGS="-O3 -flto" emconfigure ./configure --prefix=$(LIBARCHIVE) --without-lz4 --without-lzma --without-zlib --without-bz2lib --without-xml2 --without-expat --without-cng --without-openssl --without-libb2 --without-zstd --disable-bsdunzip --disable-xattr --disable-acl --disable-bsdcpio --disable-bsdcat --disable-rpath --disable-maintainer-mode --disable-dependency-tracking --enable-static --disable-shared && \
|
||||||
emmake make -j$(COMPILE_JOBS) install && \
|
emmake make -j$(COMPILE_JOBS) install && \
|
||||||
rm -rf /tmp/libarchive
|
rm -rf /tmp/libarchive
|
||||||
|
|
||||||
@@ -61,14 +62,14 @@ clapack-wasm: prepare
|
|||||||
git clone --depth=1 https://gitlab.inria.fr/multispeech/kaldi.web/clapack-wasm.git $(CLAPACK_WASM) && \
|
git clone --depth=1 https://gitlab.inria.fr/multispeech/kaldi.web/clapack-wasm.git $(CLAPACK_WASM) && \
|
||||||
cd $(CLAPACK_WASM) && \
|
cd $(CLAPACK_WASM) && \
|
||||||
git apply $(SRC)/clapack-wasm.patch &&
|
git apply $(SRC)/clapack-wasm.patch &&
|
||||||
bash ./install_repo.sh emcc
|
bash install_repo.sh emcc
|
||||||
|
|
||||||
openfst: prepare
|
openfst: prepare
|
||||||
rm -rf /tmp/openfst && \
|
rm -rf /tmp/openfst && \
|
||||||
git clone --depth=1 https://github.com/alphacep/openfst /tmp/openfst && \
|
git clone --depth=1 https://github.com/alphacep/openfst /tmp/openfst && \
|
||||||
cd /tmp/openfst && \
|
cd /tmp/openfst && \
|
||||||
autoreconf -i && \
|
autoreconf -i && \
|
||||||
CXXFLAGS="-pthread -r -O3 -flto" LDFLAGS="-O3 -pthread -flto" emconfigure ./configure --prefix=$(OPENFST) --enable-static --disable-shared --enable-ngram-fsts --enable-lookahead-fsts --disable-bin --with-pic && \
|
CXXFLAGS="-pthread -r -O3 -flto -msimd128" LDFLAGS="-O3 -pthread -flto" emconfigure ./configure --prefix=$(OPENFST) --enable-static --disable-shared --enable-ngram-fsts --enable-lookahead-fsts --disable-bin --with-pic && \
|
||||||
emmake make -j$(COMPILE_JOBS) install && \
|
emmake make -j$(COMPILE_JOBS) install && \
|
||||||
echo "PACKAGE_VERSION = 1.8.0" >> $(OPENFST)/Makefile && \
|
echo "PACKAGE_VERSION = 1.8.0" >> $(OPENFST)/Makefile && \
|
||||||
rm -rf /tmp/openfst
|
rm -rf /tmp/openfst
|
||||||
@@ -77,7 +78,7 @@ kaldi: | openfst clapack-wasm
|
|||||||
git clone -b vosk --depth=1 https://github.com/alphacep/kaldi $(KALDI) && \
|
git clone -b vosk --depth=1 https://github.com/alphacep/kaldi $(KALDI) && \
|
||||||
cd $(KALDI)/src && \
|
cd $(KALDI)/src && \
|
||||||
git apply $(SRC)/kaldi.patch && \
|
git apply $(SRC)/kaldi.patch && \
|
||||||
CXXFLAGS="-O3 -msimd128 -UHAVE_EXECINFO_H -pthread -flto" LDFLAGS="-O3 -sERROR_ON_UNDEFINED_SYMBOLS=0 -lembind -pthread -flto" emconfigure ./configure --use-cuda=no --with-cudadecoder=no --static --static-math=yes --static-fst=yes --debug-level=0 --double-precision=yes --fst-root=$(OPENFST) --clapack-root=$(CLAPACK_WASM) --host=WASM && \
|
CXXFLAGS="-O3 -UHAVE_EXECINFO_H -pthread -flto -msimd128" LDFLAGS="-O3 -sERROR_ON_UNDEFINED_SYMBOLS=0 -lembind -pthread -flto" emconfigure ./configure --use-cuda=no --with-cudadecoder=no --static --static-math=yes --static-fst=yes --debug-level=0 --double-precision=yes --fst-root=$(OPENFST) --clapack-root=$(CLAPACK_WASM) --host=WASM && \
|
||||||
emmake make -j$(COMPILE_JOBS) online2 lm rnnlm
|
emmake make -j$(COMPILE_JOBS) online2 lm rnnlm
|
||||||
|
|
||||||
vosk: | kaldi
|
vosk: | kaldi
|
||||||
@@ -85,7 +86,7 @@ vosk: | kaldi
|
|||||||
cd $(VOSK)/src && \
|
cd $(VOSK)/src && \
|
||||||
git apply $(SRC)/vosk.patch && \
|
git apply $(SRC)/vosk.patch && \
|
||||||
VOSK_FILES="recognizer.cc language_model.cc model.cc spk_model.cc vosk_api.cc" && \
|
VOSK_FILES="recognizer.cc language_model.cc model.cc spk_model.cc vosk_api.cc" && \
|
||||||
em++ -pthread -O3 -flto -Wno-deprecated -I. -I$(KALDI)/src -I$(OPENFST)/include $(VOSK_FILES) -c && \
|
em++ -pthread -O3 -flto -msimd128 -Wno-deprecated -I. -I$(KALDI)/src -I$(OPENFST)/include $(VOSK_FILES) -c && \
|
||||||
emar -rcs vosk.a $(VOSK_FILES:.cc=.o)
|
emar -rcs vosk.a $(VOSK_FILES:.cc=.o)
|
||||||
|
|
||||||
.PHONY: prepare
|
.PHONY: prepare
|
||||||
@@ -7,7 +7,7 @@ index bf7eda6..5fedaf6 100644
|
|||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
-CFLAGS = -DADD_ -O3
|
-CFLAGS = -DADD_ -O3
|
||||||
+CFLAGS = -DADD_ -O3 -flto
|
+CFLAGS = -DADD_ -O3 -flto -msimd128
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Archive programs and flags
|
# Archive programs and flags
|
||||||
@@ -20,7 +20,7 @@ index 80037d0..a964b2d 100644
|
|||||||
# if no wrapping of the blas library is needed, uncomment next line
|
# if no wrapping of the blas library is needed, uncomment next line
|
||||||
CC = emcc # -DNO_BLAS_WRAP
|
CC = emcc # -DNO_BLAS_WRAP
|
||||||
-CFLAGS = -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c -O3
|
-CFLAGS = -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c -O3
|
||||||
+CFLAGS = -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c -O3 -flto
|
+CFLAGS = -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c -O3 -flto -msimd128
|
||||||
LOADER = $(CC)
|
LOADER = $(CC)
|
||||||
LOADOPTS =
|
LOADOPTS =
|
||||||
NOOPT = -O0 -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c
|
NOOPT = -O0 -I$(TOPDIR)/INCLUDE -I$(TOPDIR)/../libf2c
|
||||||
@@ -33,7 +33,7 @@ index e071614..4647c2b 100644
|
|||||||
#
|
#
|
||||||
CC = emcc
|
CC = emcc
|
||||||
-CFLAGS = -I../libf2c -O3
|
-CFLAGS = -I../libf2c -O3
|
||||||
+CFLAGS = -I../libf2c -O3 -flto
|
+CFLAGS = -I../libf2c -O3 -flto -msimd128
|
||||||
DRVOPTS = $(OPTS)
|
DRVOPTS = $(OPTS)
|
||||||
NOOPT =
|
NOOPT =
|
||||||
LOADER = emcc
|
LOADER = emcc
|
||||||
@@ -46,7 +46,7 @@ index 6221401..d93b87f 100644
|
|||||||
CC = emcc
|
CC = emcc
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
-CFLAGS = -DNON_UNIX_STDIO -O3
|
-CFLAGS = -DNON_UNIX_STDIO -O3
|
||||||
+CFLAGS = -DNON_UNIX_STDIO -O3 -flto
|
+CFLAGS = -DNON_UNIX_STDIO -O3 -flto -msimd128
|
||||||
|
|
||||||
LD = wasm-ld
|
LD = wasm-ld
|
||||||
RANLIB = emranlib
|
RANLIB = emranlib
|
||||||
|
|||||||
@@ -32,18 +32,28 @@ void genericModel::checkModel() {
|
|||||||
fireEv("_checkMdl", "fetch", index);
|
fireEv("_checkMdl", "fetch", index);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
std::ifstream file {"id", std::ifstream::in};
|
FILE* idFile {fopen("id", "r")};
|
||||||
if(!file.is_open()) {
|
if(idFile == nullptr) {
|
||||||
fireEv("_checkMdl", "Couldn't open id file", index);
|
fireEv("_checkMdl", "Couldn't open id file", index);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
long long size {file.seekg(0, std::ios::end).tellg()};
|
if(fseek(idFile, 0, SEEK_END) != 0) {
|
||||||
std::string oldid(size, ' ');
|
fireEv("_checkMdl", "Id file end seeking fail", index);
|
||||||
file.seekg(0);
|
fclose(idFile);
|
||||||
file.read(&oldid[0], size);
|
return;
|
||||||
if(id.compare(oldid) == 0) fireEv("_checkMdl", nullptr, index);
|
};
|
||||||
else fireEv("_checkMdl", "fetch", index);
|
long long oldsize{ftell(idFile)};
|
||||||
file.close();
|
char* oldid {new char[oldsize]};
|
||||||
|
if(fseek(idFile, 0L, SEEK_SET) != 0) {
|
||||||
|
fireEv("_checkMdl", "Id file start seeking fail", index);
|
||||||
|
fclose(idFile);
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
fread(oldid, 1, oldsize, idFile);
|
||||||
|
fclose(idFile);
|
||||||
|
if(strcmp(oldid, id.c_str()) != 0) fireEv("_checkMdl", "fetch", index);
|
||||||
|
else fireEv("_checkMdl", nullptr, index);
|
||||||
|
delete[] oldid;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
void genericModel::afterFetch() {
|
void genericModel::afterFetch() {
|
||||||
@@ -58,18 +68,16 @@ void genericModel::afterFetch() {
|
|||||||
fs::remove("/opfs/m0dEl.tar",tank);
|
fs::remove("/opfs/m0dEl.tar",tank);
|
||||||
fs::remove("README",tank);
|
fs::remove("README",tank);
|
||||||
if(!checkModelFiles()) {
|
if(!checkModelFiles()) {
|
||||||
fireEv("_continue", "URL contains invalid model files", index);
|
fireEv("_continue", "URL points to invalid model files", index);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
std::ofstream idFile{"id"};
|
int idFd {open("id", O_WRONLY | O_TRUNC)};
|
||||||
if(!idFile.is_open()) {
|
if(write(idFd, id.c_str(), id.size()) == -1) {
|
||||||
fs::current_path("/opfs", tank);
|
fireEv("_continue", "Unable to write new ID", index);
|
||||||
fs::remove_all(storepath, tank);
|
close(idFd);
|
||||||
fireEv("_continue", "Unable to write model ID", index);
|
|
||||||
return;
|
return;
|
||||||
}
|
};
|
||||||
idFile << id;
|
close(idFd);
|
||||||
idFile.close();
|
|
||||||
load(false);
|
load(false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,9 +3,9 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <fstream>
|
#include <cstring>
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
||||||
#include <vosk_api.h>
|
#include <vosk_api.h>
|
||||||
#include <archive.h>
|
#include <archive.h>
|
||||||
#include <archive_entry.h>
|
#include <archive_entry.h>
|
||||||
|
|||||||
177
src/pre.js
177
src/pre.js
@@ -1,12 +1,9 @@
|
|||||||
let objs = []
|
let objs = []
|
||||||
let dStream = new DecompressionStream("gzip")
|
let dStream = new DecompressionStream("gzip")
|
||||||
Module.revokeURLs = () => {
|
|
||||||
URL.revokeObjectURL(pthreadUrl)
|
|
||||||
URL.revokeObjectURL(processorUrl)
|
|
||||||
}
|
|
||||||
Module.cleanUp = () => {
|
Module.cleanUp = () => {
|
||||||
objs.forEach(obj => obj.delete())
|
objs.forEach(obj => obj.delete())
|
||||||
Module.revokeURLs()
|
URL.revokeObjectURL(pthreadUrl)
|
||||||
|
URL.revokeObjectURL(processorUrl)
|
||||||
}
|
}
|
||||||
Module.locateFile = (path, scriptDir) => {
|
Module.locateFile = (path, scriptDir) => {
|
||||||
if(path === "BrowserRecognizer.worker.js") return pthreadUrl
|
if(path === "BrowserRecognizer.worker.js") return pthreadUrl
|
||||||
@@ -27,13 +24,12 @@ class genericModel extends EventTarget {
|
|||||||
mdl.delete()
|
mdl.delete()
|
||||||
reject(ev.detail)
|
reject(ev.detail)
|
||||||
}, {once : true})
|
}, {once : true})
|
||||||
mdl.addEventListener("_checkMdl", (ev) => {
|
mdl.addEventListener("_checkMdl", async (ev) => {
|
||||||
switch(ev.detail) {
|
switch(ev.detail) {
|
||||||
case "0":
|
case "0":
|
||||||
mdl.load(true);
|
mdl.load(true);
|
||||||
break;
|
break;
|
||||||
case "fetch":
|
case "fetch":
|
||||||
(async () => {
|
|
||||||
let res = await fetch(url)
|
let res = await fetch(url)
|
||||||
if(!res.ok) {
|
if(!res.ok) {
|
||||||
return reject("Unable to download model")
|
return reject("Unable to download model")
|
||||||
@@ -47,7 +43,6 @@ class genericModel extends EventTarget {
|
|||||||
}
|
}
|
||||||
await wStream.close()
|
await wStream.close()
|
||||||
mdl.obj.afterFetch()
|
mdl.obj.afterFetch()
|
||||||
})()
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
reject(ev.detail)
|
reject(ev.detail)
|
||||||
@@ -92,7 +87,7 @@ class Recognizer extends EventTarget {
|
|||||||
let msgChannel = new MessageChannel()
|
let msgChannel = new MessageChannel()
|
||||||
await ctx.audioWorklet.addModule(processorUrl)
|
await ctx.audioWorklet.addModule(processorUrl)
|
||||||
this.node = new AudioWorkletNode(ctx, 'BRProcessor', { channelCountMode: "max", numberOfInputs: 1, numberOfOutputs: 1, processorOptions: { ptr: this.ptr, channel: channelIndex, recognizerPort: msgChannel.port1 } })
|
this.node = new AudioWorkletNode(ctx, 'BRProcessor', { channelCountMode: "max", numberOfInputs: 1, numberOfOutputs: 1, processorOptions: { ptr: this.ptr, channel: channelIndex, recognizerPort: msgChannel.port1 } })
|
||||||
msgChannel.port1.onmessage = (ev) => {
|
msgChannel.port1.onmessage = () => {
|
||||||
this.obj.acceptWaveForm()
|
this.obj.acceptWaveForm()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -104,7 +99,7 @@ class Recognizer extends EventTarget {
|
|||||||
}
|
}
|
||||||
delete() {
|
delete() {
|
||||||
if (this.obj) this.obj.delete()
|
if (this.obj) this.obj.delete()
|
||||||
if(this.node) this.node.postMessage("0")
|
if(this.node) this.node.postMessage(0)
|
||||||
}
|
}
|
||||||
setWords(words) {
|
setWords(words) {
|
||||||
this.obj.setWords(words)
|
this.obj.setWords(words)
|
||||||
@@ -150,6 +145,166 @@ let processorUrl = URL.createObjectURL(new Blob(['(',
|
|||||||
, ')()'], {type : "text/javascript"}))
|
, ')()'], {type : "text/javascript"}))
|
||||||
let pthreadUrl = URL.createObjectURL(new Blob(['(',
|
let pthreadUrl = URL.createObjectURL(new Blob(['(',
|
||||||
(() => {
|
(() => {
|
||||||
// FIXME: Copy content of worker.js with -O0 here
|
/**
|
||||||
|
* @license
|
||||||
|
* Copyright 2015 The Emscripten Authors
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Pthread Web Worker startup routine:
|
||||||
|
// This is the entry point file that is loaded first by each Web Worker
|
||||||
|
// that executes pthreads on the Emscripten application.
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var Module = {};
|
||||||
|
|
||||||
|
// Thread-local guard variable for one-time init of the JS state
|
||||||
|
var initializedJS = false;
|
||||||
|
|
||||||
|
function assert(condition, text) {
|
||||||
|
if (!condition) abort('Assertion failed: ' + text);
|
||||||
|
}
|
||||||
|
|
||||||
|
function threadPrintErr(...args) {
|
||||||
|
var text = args.join(' ');
|
||||||
|
console.error(text);
|
||||||
|
}
|
||||||
|
function threadAlert(...args) {
|
||||||
|
var text = args.join(' ');
|
||||||
|
postMessage({cmd: 'alert', text, threadId: Module['_pthread_self']()});
|
||||||
|
}
|
||||||
|
// We don't need out() for now, but may need to add it if we want to use it
|
||||||
|
// here. Or, if this code all moves into the main JS, that problem will go
|
||||||
|
// away. (For now, adding it here increases code size for no benefit.)
|
||||||
|
var out = () => { throw 'out() is not defined in worker.js.'; }
|
||||||
|
var err = threadPrintErr;
|
||||||
|
self.alert = threadAlert;
|
||||||
|
var dbg = threadPrintErr;
|
||||||
|
|
||||||
|
Module['instantiateWasm'] = (info, receiveInstance) => {
|
||||||
|
// Instantiate from the module posted from the main thread.
|
||||||
|
// We can just use sync instantiation in the worker.
|
||||||
|
var module = Module['wasmModule'];
|
||||||
|
// We don't need the module anymore; new threads will be spawned from the main thread.
|
||||||
|
Module['wasmModule'] = null;
|
||||||
|
var instance = new WebAssembly.Instance(module, info);
|
||||||
|
// TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193,
|
||||||
|
// the above line no longer optimizes out down to the following line.
|
||||||
|
// When the regression is fixed, we can remove this if/else.
|
||||||
|
return receiveInstance(instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Turn unhandled rejected promises into errors so that the main thread will be
|
||||||
|
// notified about them.
|
||||||
|
self.onunhandledrejection = (e) => {
|
||||||
|
throw e.reason || e;
|
||||||
|
};
|
||||||
|
|
||||||
|
function handleMessage(e) {
|
||||||
|
try {
|
||||||
|
if (e.data.cmd === 'load') { // Preload command that is called once per worker to parse and load the Emscripten code.
|
||||||
|
|
||||||
|
// Until we initialize the runtime, queue up any further incoming messages.
|
||||||
|
let messageQueue = [];
|
||||||
|
self.onmessage = (e) => messageQueue.push(e);
|
||||||
|
|
||||||
|
// And add a callback for when the runtime is initialized.
|
||||||
|
self.startWorker = (instance) => {
|
||||||
|
Module = instance;
|
||||||
|
// Notify the main thread that this thread has loaded.
|
||||||
|
postMessage({ 'cmd': 'loaded' });
|
||||||
|
// Process any messages that were queued before the thread was ready.
|
||||||
|
for (let msg of messageQueue) {
|
||||||
|
handleMessage(msg);
|
||||||
|
}
|
||||||
|
// Restore the real message handler.
|
||||||
|
self.onmessage = handleMessage;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Module and memory were sent from main thread
|
||||||
|
Module['wasmModule'] = e.data.wasmModule;
|
||||||
|
|
||||||
|
// Use `const` here to ensure that the variable is scoped only to
|
||||||
|
// that iteration, allowing safe reference from a closure.
|
||||||
|
for (const handler of e.data.handlers) {
|
||||||
|
Module[handler] = (...args) => {
|
||||||
|
postMessage({ cmd: 'callHandler', handler, args: args });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Module['wasmMemory'] = e.data.wasmMemory;
|
||||||
|
|
||||||
|
Module['buffer'] = Module['wasmMemory'].buffer;
|
||||||
|
|
||||||
|
Module['workerID'] = e.data.workerID;
|
||||||
|
|
||||||
|
Module['ENVIRONMENT_IS_PTHREAD'] = true;
|
||||||
|
|
||||||
|
if (typeof e.data.urlOrBlob == 'string') {
|
||||||
|
importScripts(e.data.urlOrBlob);
|
||||||
|
} else {
|
||||||
|
var objectUrl = URL.createObjectURL(e.data.urlOrBlob);
|
||||||
|
importScripts(objectUrl);
|
||||||
|
URL.revokeObjectURL(objectUrl);
|
||||||
|
}
|
||||||
|
loadBR(Module);
|
||||||
|
} else if (e.data.cmd === 'run') {
|
||||||
|
// Pass the thread address to wasm to store it for fast access.
|
||||||
|
Module['__emscripten_thread_init'](e.data.pthread_ptr, /*is_main=*/0, /*is_runtime=*/0, /*can_block=*/1);
|
||||||
|
|
||||||
|
// Await mailbox notifications with `Atomics.waitAsync` so we can start
|
||||||
|
// using the fast `Atomics.notify` notification path.
|
||||||
|
Module['__emscripten_thread_mailbox_await'](e.data.pthread_ptr);
|
||||||
|
|
||||||
|
assert(e.data.pthread_ptr);
|
||||||
|
// Also call inside JS module to set up the stack frame for this pthread in JS module scope
|
||||||
|
Module['establishStackSpace']();
|
||||||
|
Module['PThread'].receiveObjectTransfer(e.data);
|
||||||
|
Module['PThread'].threadInitTLS();
|
||||||
|
|
||||||
|
if (!initializedJS) {
|
||||||
|
// Embind must initialize itself on all threads, as it generates support JS.
|
||||||
|
// We only do this once per worker since they get reused
|
||||||
|
Module['__embind_initialize_bindings']();
|
||||||
|
initializedJS = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Module['invokeEntryPoint'](e.data.start_routine, e.data.arg);
|
||||||
|
} catch(ex) {
|
||||||
|
if (ex != 'unwind') {
|
||||||
|
// The pthread "crashed". Do not call `_emscripten_thread_exit` (which
|
||||||
|
// would make this thread joinable). Instead, re-throw the exception
|
||||||
|
// and let the top level handler propagate it back to the main thread.
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (e.data.cmd === 'cancel') { // Main thread is asking for a pthread_cancel() on this thread.
|
||||||
|
if (Module['_pthread_self']()) {
|
||||||
|
Module['__emscripten_thread_exit'](-1);
|
||||||
|
}
|
||||||
|
} else if (e.data.target === 'setimmediate') {
|
||||||
|
// no-op
|
||||||
|
} else if (e.data.cmd === 'checkMailbox') {
|
||||||
|
if (initializedJS) {
|
||||||
|
Module['checkMailbox']();
|
||||||
|
}
|
||||||
|
} else if (e.data.cmd) {
|
||||||
|
// The received message looks like something that should be handled by this message
|
||||||
|
// handler, (since there is a e.data.cmd field present), but is not one of the
|
||||||
|
// recognized commands:
|
||||||
|
err(`worker.js received unknown command ${e.data.cmd}`);
|
||||||
|
err(e.data);
|
||||||
|
}
|
||||||
|
} catch(ex) {
|
||||||
|
err(`worker.js onmessage() captured an uncaught exception: ${ex}`);
|
||||||
|
if (ex?.stack) err(ex.stack);
|
||||||
|
Module['__emscripten_thread_crashed']?.();
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
self.onmessage = handleMessage;
|
||||||
}).toString()
|
}).toString()
|
||||||
, ')()'], {type : "text/javascript"}))
|
, ')()'], {type : "text/javascript"}))
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
| ```Promise<Model> makeModel(path: string, url: string, id: string)```<br><br>```Promise<SpkModel> makeSpkModel(path: string, url: string, id: string)``` | Make a ```Model``` or ```SpkModel```, model files must be directly under the model root, and compressed model must be in .tgz format. If:<br>- **path** contains valid model files and **id** is the same, there will not be a fetch from **url**.<br>- **path** doesn't contain valid model files, or if it contains valid model files but **id** is different, there will be a fetch from **url**, and the model is stored with **id**. |
|
| ```Promise<Model> makeModel(path: string, url: string, id: string)```<br><br>```Promise<SpkModel> makeSpkModel(path: string, url: string, id: string)``` | Make a ```Model``` or ```SpkModel```, model files must be directly under the model root, and compressed model must be in .tgz format. If:<br>- **path** contains valid model files and **id** is the same, there will not be a fetch from **url**.<br>- **path** doesn't contain valid model files, or if it contains valid model files but **id** is different, there will be a fetch from **url**, and the model is stored with **id**. |
|
||||||
| ```Promise<Recognizer> makeRecognizer(model: Model, sampleRate: float)``` | Make a ```Recognizer```, it will use **model**'s thread if it's the first user of **model**, else it will use a new thread.
|
| ```Promise<Recognizer> makeRecognizer(model: Model, sampleRate: float)``` | Make a ```Recognizer```, it will use **model**'s thread if it's the first user of **model**, else it will use a new thread.
|
||||||
| ```setLogLevel(lvl: int)``` | Set Vosk's log level (default: ```0```: Info) <br>```-2```: Error<br>```-1```: Warning<br>```1```: Verbose<br>```2```: More verbose<br>```3```: Debug |
|
| ```setLogLevel(lvl: int)``` | Set Vosk's log level (default: ```0```: Info) <br>```-2```: Error<br>```-1```: Warning<br>```1```: Verbose<br>```2```: More verbose<br>```3```: Debug |
|
||||||
| ```revokeURLs()``` | Revoke the Blob URLs of pthread worker and worklet processor |
|
| ```cleanUp()``` | A convenience function that call ```delete()``` on all objects and revoke all URLs. You should put this at the end of your program! |
|
||||||
| ```cleanUp()``` | A convenience function that call ```revokeURLs()``` and ```delete()``` on all objects. You should put this at the end of your program! |
|
|
||||||
|
|
||||||
## ```Recognizer``` object
|
## ```Recognizer``` object
|
||||||
| Function signature | Description |
|
| Function signature | Description |
|
||||||
|
|||||||
Reference in New Issue
Block a user