echogarden 0.8.7 → 0.8.9
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/alignment/SpeechAlignment.d.ts +1 -1
- package/dist/alignment/SpeechAlignment.js +1 -1
- package/dist/alignment/SpeechAlignment.js.map +1 -1
- package/dist/cli/CLI.d.ts +2 -2
- package/dist/cli/CLI.js +46 -38
- package/dist/cli/CLI.js.map +1 -1
- package/dist/codecs/FFMpegTranscoder.js.map +1 -1
- package/dist/recognition/WhisperSTT.js +1 -1
- package/dist/recognition/WhisperSTT.js.map +1 -1
- package/dist/synthesis/EspeakTTS.js +1 -1
- package/dist/synthesis/EspeakTTS.js.map +1 -1
- package/dist/synthesis/GoogleCloudTTS.d.ts +1 -0
- package/dist/tests/Test.js +2 -2
- package/dist/tests/Test.js.map +1 -1
- package/dist/utilities/FileSystem.d.ts +1 -1
- package/dist/utilities/FileSystem.js +1 -1
- package/dist/utilities/FileSystem.js.map +1 -1
- package/dist/utilities/Utilities.d.ts +3 -2
- package/dist/utilities/Utilities.js +19 -2
- package/dist/utilities/Utilities.js.map +1 -1
- package/docs/CLI.md +6 -12
- package/docs/Options.md +1 -1
- package/docs/Tasklist.md +1 -1
- package/package.json +3 -3
package/docs/Tasklist.md
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
* Support compressed audio in response
|
|
48
48
|
|
|
49
49
|
### CLI
|
|
50
|
-
* Restrict input media file extensions to
|
|
50
|
+
* Restrict input media file extensions to ensure that invalid files are not passed to FFMpeg.
|
|
51
51
|
* Mode to print IPA words when speaking
|
|
52
52
|
* Ignore non-supported templates like `[hello]`
|
|
53
53
|
* Show a message when a new version is available
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echogarden",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.9",
|
|
4
4
|
"description": "An integrated speech system, providing a set of synthesis, recognition, alignment, and other processing tools, designed to be directly accessible to end-users.",
|
|
5
5
|
"author": "Rotem Dan",
|
|
6
6
|
"license": "GPL-3.0-only",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"echogarden": "./dist/cli/CLILauncher.js"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@aws-sdk/client-polly": "^3.
|
|
57
|
-
"@aws-sdk/client-transcribe-streaming": "^3.
|
|
56
|
+
"@aws-sdk/client-polly": "^3.379.1",
|
|
57
|
+
"@aws-sdk/client-transcribe-streaming": "^3.379.1",
|
|
58
58
|
"@echogarden/espeak-ng-emscripten": "^0.1.2",
|
|
59
59
|
"@echogarden/fasttext-wasm": "^0.1.0",
|
|
60
60
|
"@echogarden/flite-wasi": "^0.1.1",
|