@readium/speech 0.5.0 → 0.7.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 +4 -1
- package/build/index.cjs +28 -28
- package/build/index.d.ts +1 -0
- package/build/index.js +3067 -2419
- package/build/navigator.d.ts +6 -7
- package/build/preferences/Configurable.d.ts +12 -0
- package/build/preferences/Preference.d.ts +74 -0
- package/build/preferences/PreferencesEditor.d.ts +5 -0
- package/build/preferences/SpeechDefaults.d.ts +29 -0
- package/build/preferences/SpeechPreferences.d.ts +34 -0
- package/build/preferences/SpeechPreferencesEditor.d.ts +22 -0
- package/build/preferences/SpeechSettings.d.ts +19 -0
- package/build/preferences/constraints.d.ts +14 -0
- package/build/preferences/guards.d.ts +4 -0
- package/build/preferences/index.d.ts +11 -0
- package/build/preferences/verbosityTables.d.ts +4 -0
- package/build/speechNavigator.d.ts +32 -7
- package/build/utterances/extractUtterances.d.ts +9 -0
- package/build/utterances/index.d.ts +1 -1
- package/build/utterances/roles.d.ts +1 -0
- package/build/utterances/text.d.ts +1 -1
- package/build/utterances/types.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,9 @@ In the third phase, we added highlighting: content currently being spoken (e.g.
|
|
|
34
34
|
|
|
35
35
|
In the fourth phase, we extracted [Guided Navigation objects](https://readium.org/guided-navigation) from a document (or a fragment of a document), and generated utterances from these objects.
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
In the fifth phase, we added a second `ReadiumSpeechPlaybackEngine` implementation, backed by [speech-server](https://github.com/readium/speech-server) instead of the browser's Web Speech API.
|
|
38
|
+
|
|
39
|
+
We are now on the sixth phase: verbosity and prosody, in particular contextualization — synthesized announcements spoken around content based on its role (entering/leaving a chapter, a footnote, a pagebreak…). See [Preferences](docs/Preferences.md).
|
|
38
40
|
|
|
39
41
|
## Demos
|
|
40
42
|
|
|
@@ -137,6 +139,7 @@ Documentation provides guides for:
|
|
|
137
139
|
- [Voices and Filtering](docs/VoicesAndFiltering.md)
|
|
138
140
|
- [Voice Management](docs/VoiceManagement.md)
|
|
139
141
|
- [Playback API](docs/Playback.md)
|
|
142
|
+
- [Preferences](docs/Preferences.md) — verbosity and prosody settings via `SpeechPreferences`/`SpeechSettings`
|
|
140
143
|
- [Highlighting](docs/Highlighting.md)
|
|
141
144
|
- [Guided Navigation](docs/GuidedNavigation.md) — extracting [Guided Navigation objects](https://readium.org/guided-navigation) from HTML/XHTML content
|
|
142
145
|
- [Utterance Extraction](docs/UtteranceExtraction.md) — extracting utterances from Guided Navigation objects
|