echogarden 0.5.1 → 0.6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Echogarden
2
2
 
3
- Echogarden is a versatile speech processing system that attempts to address the needs of end-users:
3
+ Echogarden is an integrated speech system that provides a range of speech generation, recognition and processing tools that are designed to be directly usable by end-users:
4
4
 
5
5
  * Written in TypeScript, for the Node.js runtime
6
6
  * Easy to install, run and update
@@ -12,11 +12,11 @@ Echogarden is a versatile speech processing system that attempts to address the
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
- * Supports synthesis and recognition via major cloud providers, including Google, Microsoft and Amazon
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
19
- * Can transcribe speech in any one of 98 languages, translated directly to English, and produce near word-level synchronized subtitles for the translated transcript
19
+ * Can translate speech in any one of 98 languages, transcribe it directly to English, and produce near word-level synchronized subtitles for the translated transcript
20
20
  * Attempts to improve TTS pronunciation accuracy for a few engines and languages (currently only implemented for English dialects): adds text normalization (e.g. idiomatic date and currency pronunciation), heteronym disambiguation (based on a custom rule-based model) and user-customizable pronunciation lexicons
21
21
  * Internal package system that auto-downloads and installs 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
@@ -46,7 +46,16 @@ npm update echogarden -g
46
46
 
47
47
  Currently, the software is operated mainly through a [command-line interface](docs/CLI.md), which enables powerful customization and is especially useful for long-running bulk operations.
48
48
 
49
- Development of more graphical and interactive tooling is currently ongoing. A general roadmap is shown next.
49
+ Development of more graphical and interactive tooling is currently ongoing. A general roadmap is shown further down below.
50
+
51
+ ## Guides and resource pages
52
+
53
+ * [Using the command-line interface](docs/CLI.md)
54
+ * [Options reference](docs/Options.md)
55
+ * [Full list of supported engines](docs/Engines.md)
56
+ * [Technical overview and Q&A](docs/Technical.md)
57
+ * [Developer's task list](docs/Tasklist.md)
58
+ * [How to help](docs/Development.md)
50
59
 
51
60
  ## Development roadmap
52
61
 
@@ -56,7 +65,7 @@ _(For much more detailed information, see the [developer task list](docs/Tasklis
56
65
 
57
66
  * (**90**%) Background worker
58
67
  * (**90**%) WebSocket-based server and API
59
- * (**70**%) Browser extension, acting as a bridge to a local or self-hosted server. Also including integration with the Web Speech API, and real-time narration of page content, with live word highlighting
68
+ * (**70**%) Browser extension, acting as a bridge to a local or self-hosted server. Includes integration with the Web Speech API, and real-time narration of page content, with live word highlighting
60
69
  * (**60**%) New, high-accuracy text language identification model (own work)
61
70
 
62
71
  ### Planned, but not yet started
@@ -70,15 +79,6 @@ _(For much more detailed information, see the [developer task list](docs/Tasklis
70
79
 
71
80
  * Browser port for a subset of the API (in particular for the offline TTS models and their dependencies)
72
81
 
73
- ## Guides and resource pages
74
-
75
- * [Using the command-line interface](docs/CLI.md)
76
- * [Options reference](docs/Options.md)
77
- * [Full list of supported engines](docs/Engines.md)
78
- * [Technical overview and Q&A](docs/Technical.md)
79
- * [Developer's task list](docs/Tasklist.md)
80
- * [How to help](docs/Development.md)
81
-
82
82
  ## Credits
83
83
 
84
84
  This project consolidates, and builds upon the effort of many different individuals and companies, as well as contributing a number of original works.