echogarden 2.0.1 → 2.0.2
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/tests/Test.js +3 -0
- package/dist/tests/Test.js.map +1 -1
- package/package.json +2 -3
- package/src/tests/Test.ts +3 -0
package/dist/tests/Test.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { readFileAsBinary } from '../utilities/FileSystem.js';
|
|
1
2
|
import { logToStderr, setupProgramTerminationListeners } from '../utilities/Utilities.js';
|
|
2
3
|
const log = logToStderr;
|
|
3
4
|
setupProgramTerminationListeners();
|
|
4
5
|
//process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
|
|
5
6
|
//process.env.http_proxy = 'http://localhost:8080'
|
|
7
|
+
const test = await readFileAsBinary(`/C:\\Rotem\\Development\\echogarden\\echogarden\\node_modules\\@echogarden\\espeak-ng-emscripten\\espeak-ng.data`);
|
|
8
|
+
//C:\Rotem\Development\echogarden\echogarden\node_modules\\@echogarden\\espeak-ng-emscripten
|
|
6
9
|
process.exit(0);
|
|
7
10
|
//# sourceMappingURL=Test.js.map
|
package/dist/tests/Test.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Test.js","sourceRoot":"","sources":["../../src/tests/Test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gCAAgC,EAAE,MAAM,2BAA2B,CAAA;AAEzF,MAAM,GAAG,GAAG,WAAW,CAAA;AAEvB,gCAAgC,EAAE,CAAA;AAElC,gDAAgD;AAChD,kDAAkD;AAElD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"Test.js","sourceRoot":"","sources":["../../src/tests/Test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,gCAAgC,EAAE,MAAM,2BAA2B,CAAA;AAEzF,MAAM,GAAG,GAAG,WAAW,CAAA;AAEvB,gCAAgC,EAAE,CAAA;AAElC,gDAAgD;AAChD,kDAAkD;AAElD,MAAM,IAAI,GAAG,MAAM,gBAAgB,CAAC,kHAAkH,CAAC,CAAA;AACvJ,4FAA4F;AAC5F,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echogarden",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@aws-sdk/client-polly": "^3.687.0",
|
|
56
56
|
"@aws-sdk/client-transcribe-streaming": "^3.687.0",
|
|
57
57
|
"@echogarden/audio-io": "^0.2.3",
|
|
58
|
-
"@echogarden/espeak-ng-emscripten": "^0.3.
|
|
58
|
+
"@echogarden/espeak-ng-emscripten": "^0.3.1",
|
|
59
59
|
"@echogarden/fasttext-wasm": "^0.1.0",
|
|
60
60
|
"@echogarden/flite-wasi": "^0.1.1",
|
|
61
61
|
"@echogarden/fvad-wasm": "^0.2.0",
|
|
@@ -111,7 +111,6 @@
|
|
|
111
111
|
"@types/jsdom": "^21.1.7",
|
|
112
112
|
"@types/msgpack-lite": "^0.1.11",
|
|
113
113
|
"@types/node": "^22.9.0",
|
|
114
|
-
"@types/recursive-readdir": "^2.2.4",
|
|
115
114
|
"@types/tar": "^6.1.13",
|
|
116
115
|
"@types/ws": "^8.5.13",
|
|
117
116
|
"ts-json-schema-generator": "^2.3.0",
|
package/src/tests/Test.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { readFileAsBinary } from '../utilities/FileSystem.js'
|
|
1
2
|
import { logToStderr, setupProgramTerminationListeners } from '../utilities/Utilities.js'
|
|
2
3
|
|
|
3
4
|
const log = logToStderr
|
|
@@ -7,4 +8,6 @@ setupProgramTerminationListeners()
|
|
|
7
8
|
//process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
|
|
8
9
|
//process.env.http_proxy = 'http://localhost:8080'
|
|
9
10
|
|
|
11
|
+
const test = await readFileAsBinary(`/C:\\Rotem\\Development\\echogarden\\echogarden\\node_modules\\@echogarden\\espeak-ng-emscripten\\espeak-ng.data`)
|
|
12
|
+
//C:\Rotem\Development\echogarden\echogarden\node_modules\\@echogarden\\espeak-ng-emscripten
|
|
10
13
|
process.exit(0)
|