echogarden 0.5.2 → 0.6.1
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/README.md +1 -1
- package/data/lexicons/heteronyms.en.json +2063 -2061
- package/data/schemas/options.json +43 -0
- package/dist/api/Synthesis.d.ts +6 -0
- package/dist/api/Synthesis.js +51 -7
- package/dist/api/Synthesis.js.map +1 -1
- package/dist/cli/CLI.js +48 -18
- package/dist/cli/CLI.js.map +1 -1
- package/dist/cli/CLIConfigFile.js +7 -2
- package/dist/cli/CLIConfigFile.js.map +1 -1
- package/dist/nlp/CompromiseNLP.js +19 -10
- package/dist/nlp/CompromiseNLP.js.map +1 -1
- package/dist/nlp/Lexicon.d.ts +7 -4
- package/dist/nlp/Lexicon.js +11 -3
- package/dist/nlp/Lexicon.js.map +1 -1
- package/dist/nlp/Segmentation.d.ts +2 -1
- package/dist/nlp/Segmentation.js +16 -2
- package/dist/nlp/Segmentation.js.map +1 -1
- package/dist/synthesis/SapiTTS.js +0 -47
- package/dist/synthesis/SapiTTS.js.map +1 -1
- package/dist/synthesis/VitsTTS.js +4 -4
- package/dist/synthesis/VitsTTS.js.map +1 -1
- package/dist/utilities/Locale.d.ts +9 -0
- package/dist/utilities/Locale.js +8 -3
- package/dist/utilities/Locale.js.map +1 -1
- package/dist/utilities/Timeline.js +4 -4
- package/dist/utilities/Timeline.js.map +1 -1
- package/dist/utilities/WikipediaReader.js +1 -3
- package/dist/utilities/WikipediaReader.js.map +1 -1
- package/docs/CLI.md +9 -3
- package/docs/Development.md +14 -8
- package/docs/Options.md +17 -12
- package/docs/Tasklist.md +17 -28
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Echogarden is an integrated speech system that provides a range of speech genera
|
|
|
12
12
|
|
|
13
13
|
* Fast, high-quality offline text-to-speech voices based on the [VITS](https://github.com/jaywalnut310/vits) neural architecture
|
|
14
14
|
* Accurate offline speech recognition using [OpenAI Whisper](https://openai.com/research/whisper) models
|
|
15
|
-
*
|
|
15
|
+
* Provides synthesis and recognition via a [variety of offline and cloud engines](docs/Engines.md), including services by Google, Microsoft, Amazon and others
|
|
16
16
|
* Word-level timestamps for all synthesis and recognition outputs
|
|
17
17
|
* Speech-to-transcript alignment using dynamic time warping (DTW), and dynamic time warping with recognition assist (DTW-RA) methods
|
|
18
18
|
* Advanced subtitle generation, accounting for sentence and phrase boundaries
|