node-red-contrib-tts-ultimate 2.0.6 → 2.0.7
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/CHANGELOG.md +4 -0
- package/README.md +7 -0
- package/package.json +1 -1
- package/ttsultimate/ttsultimate.html +415 -414
- package/ttsultimate/ttsultimate.js +1118 -1113
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.paypal.me/techtoday)
|
|
4
4
|
|
|
5
|
+
<p>
|
|
6
|
+
<b>Version 2.0.7</b> January 2024<br/>
|
|
7
|
+
- NEW: input messages can override selected voice.<br/>
|
|
8
|
+
</p>
|
|
5
9
|
<p>
|
|
6
10
|
<b>Version 2.0.6</b> January 2024<br/>
|
|
7
11
|
- Minor fixes.<br/>
|
package/README.md
CHANGED
|
@@ -157,6 +157,13 @@ msg.payload = "I won't disturb with my hailing, this time.";
|
|
|
157
157
|
return msg;
|
|
158
158
|
```
|
|
159
159
|
|
|
160
|
+
```js
|
|
161
|
+
// Play a message with custom voice ID
|
|
162
|
+
msg.payload = "Hello, the current temperature is 12°";
|
|
163
|
+
msg.voiceId = 2
|
|
164
|
+
return msg;
|
|
165
|
+
```
|
|
166
|
+
|
|
160
167
|
```js
|
|
161
168
|
// Play smoke detection
|
|
162
169
|
msg.sonoshailing = "SmokeAlert";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-tts-ultimate",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Transforms the text in speech and hear it using Sonos player or generate an audio file to be used with third parties nodes. Works with voices from Amazon, Google (without credentials as well), Microsoft TTS Azure, ElevenLabs.io TTS or your own voice. You can also only create a TTS file to be read by third party nodes. Update of the popular SonosPollyTTS node.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|