echogarden 0.2.8 → 0.3.0
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 +1451 -200
- package/dist/nlp/Lexicon.d.ts +6 -0
- package/dist/nlp/Lexicon.js +37 -0
- package/dist/nlp/Lexicon.js.map +1 -1
- package/dist/nlp/Segmentation.js +1 -2
- package/dist/nlp/Segmentation.js.map +1 -1
- package/dist/nlp/TextNormalizer.d.ts +1 -2
- package/dist/nlp/TextNormalizer.js +24 -23
- package/dist/nlp/TextNormalizer.js.map +1 -1
- package/dist/synthesis/EspeakTTS.d.ts +1 -1
- package/dist/synthesis/EspeakTTS.js +27 -40
- package/dist/synthesis/EspeakTTS.js.map +1 -1
- package/package.json +11 -12
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ An integrated speech toolbox designed with end-users in mind.
|
|
|
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
|
|
19
19
|
* Can transcribe speech in any one of 98 languages, translated directly to English, and produce near word-level synchronized subtitles
|
|
20
|
-
*
|
|
20
|
+
* Attempts to improve TTS pronunciation accuracy on a few engines and languages: adds text normalization (e.g. idiomatic date and currency pronunciation), heteronym disambiguation (based on a rule-based model) and user-customizable phonetic lexicons
|
|
21
21
|
* Internal package system to auto-download and install voices, models and other resources, as needed
|
|
22
22
|
* Other features include: language detection (both for audio and text), voice activity detection and speech denoising
|
|
23
23
|
|