echogarden 2.8.4 → 2.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/recognition/WhisperSTT.d.ts +1 -1
- package/package.json +57 -57
|
@@ -82,7 +82,7 @@ export declare class Whisper {
|
|
|
82
82
|
languageTokenToLanguageIndex(languageToken: number): void;
|
|
83
83
|
get isEnglishOnlyModel(): boolean;
|
|
84
84
|
get isLargeModel(): boolean;
|
|
85
|
-
get filterbankCount():
|
|
85
|
+
get filterbankCount(): 128 | 80;
|
|
86
86
|
get filterbanks(): Filterbank[];
|
|
87
87
|
get alignmentHeadIndexes(): number[];
|
|
88
88
|
get defaultTimestampAccuracy(): "medium" | "high";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echogarden",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.5",
|
|
4
4
|
"description": "An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.",
|
|
5
5
|
"author": "Rotem Dan",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -52,54 +52,54 @@
|
|
|
52
52
|
"echogarden": "./dist/cli/CLILauncher.js"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@aws-sdk/client-polly": "
|
|
56
|
-
"@aws-sdk/client-transcribe-streaming": "
|
|
57
|
-
"@echogarden/audio-io": "
|
|
58
|
-
"@echogarden/espeak-ng-emscripten": "
|
|
59
|
-
"@echogarden/fasttext-wasm": "
|
|
60
|
-
"@echogarden/flite-wasi": "
|
|
61
|
-
"@echogarden/fvad-wasm": "
|
|
62
|
-
"@echogarden/gnuspeech-wasm": "
|
|
63
|
-
"@echogarden/icu-segmentation-wasm": "
|
|
64
|
-
"@echogarden/pffft-wasm": "
|
|
65
|
-
"@echogarden/rnnoise-wasm": "
|
|
66
|
-
"@echogarden/rubberband-wasm": "
|
|
67
|
-
"@echogarden/sonic-wasm": "
|
|
68
|
-
"@echogarden/speex-resampler-wasm": "
|
|
69
|
-
"@echogarden/svoxpico-wasm": "
|
|
70
|
-
"@echogarden/text-segmentation": "
|
|
71
|
-
"@echogarden/transformers-nodejs-lite": "
|
|
72
|
-
"@echogarden/wave-codec": "
|
|
73
|
-
"@mozilla/readability": "
|
|
74
|
-
"chalk": "
|
|
75
|
-
"command-exists": "
|
|
76
|
-
"fs-extra": "
|
|
77
|
-
"gaxios": "
|
|
78
|
-
"graceful-fs": "
|
|
79
|
-
"html-to-text": "
|
|
80
|
-
"import-meta-resolve": "
|
|
81
|
-
"jieba-wasm": "
|
|
82
|
-
"jsdom": "
|
|
83
|
-
"json5": "
|
|
84
|
-
"kuromoji": "
|
|
85
|
-
"microsoft-cognitiveservices-speech-sdk": "
|
|
86
|
-
"msgpack-lite": "
|
|
87
|
-
"onnxruntime-node": "
|
|
88
|
-
"openai": "
|
|
89
|
-
"regexp-composer": "
|
|
90
|
-
"sam-js": "
|
|
91
|
-
"strip-ansi": "
|
|
92
|
-
"tar": "
|
|
93
|
-
"tiktoken": "
|
|
94
|
-
"tinyld": "
|
|
95
|
-
"wasm-feature-detect": "
|
|
96
|
-
"wasm-heap-manager": "
|
|
97
|
-
"ws": "
|
|
98
|
-
"wtf_wikipedia": "
|
|
55
|
+
"@aws-sdk/client-polly": "~3.812.0",
|
|
56
|
+
"@aws-sdk/client-transcribe-streaming": "~3.812.0",
|
|
57
|
+
"@echogarden/audio-io": "~0.4.1",
|
|
58
|
+
"@echogarden/espeak-ng-emscripten": "~0.3.3",
|
|
59
|
+
"@echogarden/fasttext-wasm": "~0.1.0",
|
|
60
|
+
"@echogarden/flite-wasi": "~0.1.1",
|
|
61
|
+
"@echogarden/fvad-wasm": "~0.2.0",
|
|
62
|
+
"@echogarden/gnuspeech-wasm": "~0.2.1",
|
|
63
|
+
"@echogarden/icu-segmentation-wasm": "~0.2.1",
|
|
64
|
+
"@echogarden/pffft-wasm": "~0.4.2",
|
|
65
|
+
"@echogarden/rnnoise-wasm": "~0.2.0",
|
|
66
|
+
"@echogarden/rubberband-wasm": "~0.2.0",
|
|
67
|
+
"@echogarden/sonic-wasm": "~0.2.0",
|
|
68
|
+
"@echogarden/speex-resampler-wasm": "~0.3.0",
|
|
69
|
+
"@echogarden/svoxpico-wasm": "~0.2.0",
|
|
70
|
+
"@echogarden/text-segmentation": "~0.3.1",
|
|
71
|
+
"@echogarden/transformers-nodejs-lite": "~2.17.1-lite.4",
|
|
72
|
+
"@echogarden/wave-codec": "~0.3.3",
|
|
73
|
+
"@mozilla/readability": "~0.6.0",
|
|
74
|
+
"chalk": "~5.4.1",
|
|
75
|
+
"command-exists": "~1.2.9",
|
|
76
|
+
"fs-extra": "~11.3.0",
|
|
77
|
+
"gaxios": "~6.7.1",
|
|
78
|
+
"graceful-fs": "~4.2.11",
|
|
79
|
+
"html-to-text": "~9.0.5",
|
|
80
|
+
"import-meta-resolve": "~4.1.0",
|
|
81
|
+
"jieba-wasm": "~2.2.0",
|
|
82
|
+
"jsdom": "~26.1.0",
|
|
83
|
+
"json5": "~2.2.3",
|
|
84
|
+
"kuromoji": "~0.1.2",
|
|
85
|
+
"microsoft-cognitiveservices-speech-sdk": "~1.43.1",
|
|
86
|
+
"msgpack-lite": "~0.1.26",
|
|
87
|
+
"onnxruntime-node": "~1.21.1",
|
|
88
|
+
"openai": "~4.100.0",
|
|
89
|
+
"regexp-composer": "~0.3.0",
|
|
90
|
+
"sam-js": "~0.3.1",
|
|
91
|
+
"strip-ansi": "~7.1.0",
|
|
92
|
+
"tar": "~7.4.3",
|
|
93
|
+
"tiktoken": "~1.0.21",
|
|
94
|
+
"tinyld": "~1.3.4",
|
|
95
|
+
"wasm-feature-detect": "~1.8.0",
|
|
96
|
+
"wasm-heap-manager": "~0.2.2",
|
|
97
|
+
"ws": "~8.18.2",
|
|
98
|
+
"wtf_wikipedia": "~10.4.0"
|
|
99
99
|
},
|
|
100
100
|
"peerDependencies": {
|
|
101
|
-
"@echogarden/vosk": "
|
|
102
|
-
"winax": "
|
|
101
|
+
"@echogarden/vosk": "~0.3.39-patched.1",
|
|
102
|
+
"winax": "~3.4.2"
|
|
103
103
|
},
|
|
104
104
|
"peerDependenciesMeta": {
|
|
105
105
|
"@echogarden/vosk": {
|
|
@@ -110,17 +110,17 @@
|
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
|
-
"@types/fs-extra": "
|
|
114
|
-
"@types/graceful-fs": "
|
|
115
|
-
"@types/jsdom": "
|
|
116
|
-
"@types/msgpack-lite": "
|
|
117
|
-
"@types/node": "
|
|
118
|
-
"@types/tar": "
|
|
119
|
-
"@types/ws": "
|
|
120
|
-
"ts-json-schema-generator": "
|
|
121
|
-
"typescript": "
|
|
113
|
+
"@types/fs-extra": "~11.0.4",
|
|
114
|
+
"@types/graceful-fs": "~4.1.9",
|
|
115
|
+
"@types/jsdom": "~21.1.7",
|
|
116
|
+
"@types/msgpack-lite": "~0.1.11",
|
|
117
|
+
"@types/node": "~22.15.18",
|
|
118
|
+
"@types/tar": "~6.1.13",
|
|
119
|
+
"@types/ws": "~8.18.1",
|
|
120
|
+
"ts-json-schema-generator": "~2.4.0",
|
|
121
|
+
"typescript": "~5.8.3"
|
|
122
122
|
},
|
|
123
123
|
"overrides": {
|
|
124
|
-
"whatwg-url": "
|
|
124
|
+
"whatwg-url": "~14.0.0"
|
|
125
125
|
}
|
|
126
126
|
}
|