-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
tts_All_Message_Script_Blueprint.yaml
1190 lines (1117 loc) · 38.7 KB
/
tts_All_Message_Script_Blueprint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
blueprint:
name: TTS_say_Message-2024-06-08
author: SirGoodenough
description: >
📣 This is a script that can use any of the 11 integrated TTS Platforms
in Home Assistant to send a message to a media player. Some will require Google
Type Speakers, some will require Non-Google type speakers.
These integrations are listed here. Please refer to these pages for care and feeding
of the *tts_say method you choose. ⛓ https://www.home-assistant.io/integrations/#text-to-speech
This blueprint **WILL NOT** set-up TTS for you. You will be given the opportunity
to add the incorrect options that will **NOT** allow your TTS to function. Your
best road to success will be to add a TTS session with UI, and only after that
is successfully talking to you should you take the languages and options that
work there and apply them in this Blueprint. The safest thing to do other than
that is to start with the basic sonfiguration for the TTS_say integration that
you are using and add options one at a time.
The very basic requirements are for you to provide the *tts_say method that you
have installed and tested, the entity that you want to send it to, and the message
you want to send. Beyond that likely involves trial and error that may best be
done in the Developer Tools Services area here:
[![Open your Home Assistant instance and show your service developer tools.](https://my.home-assistant.io/badges/developer_services.svg)](https://my.home-assistant.io/redirect/developer_services/)
I have added an action statement both before and after the main TTS call. You
can choose to ignore these, or you can use them to change volume, add a
media player to play a doorbell, turn on a light, add a delay,
whatever you want to do.
The Scripts produced by this blueprint can be called from an automation & variable
values for the message and the media_player can be sent on the fly. For details
[check out the instructions here](https://github.com/SirGoodenough/HA_Blueprints/blob/master/Scripts/tts_All_Message_Script_Blueprint.md#calling).
### ⚠️ This Blueprint makes the assumption that you already have a tested & proven
TTS integration installed and you know how it works and how to use it ⚠️
You will need to verify that the name you have given to the TTS integration in
your system configuration is the Default name or you need to change this blueprint
to use the custom name you have set in the tts: section of configuration.yaml.
This will be a way to streamline your automations and scripts. It provides specific
services that can be called with a single line service call. This is contrasted
to the multiline service calls of repeating values spread throughout your configuration.
In addition it puts all your TTS specific code in 1 spot, the blueprint, and that
allows it to be called over and over. Plus it gives you one place, the blueprint,
to repair issues should they arrise. 🔚
[Community link for this blueprint](https://community.home-assistant.io/t/tts-script-blueprint-for-all-11-ha-core-tts-flavors/400700)
## 🗿Notice👮🏿♂️:
* Copies of the original Blueprint that were converted via the 'Take Control'
feature or other means are officially not supported by me.
* I may or may not be able to support you when you have a problem after you make changes
to my code, as some of the code is no longer mine.
* I & my license also require attribution as a link back to the original
should you use this code in your own creation.
* [Here is a link to my license & the original github post](https://github.com/SirGoodenough/HA_Blueprints?tab=License-1-ov-file)
expected to be followed & referenced as attribution should you use this code elsewhere.
domain: script
source_url: https://github.com/SirGoodenough/HA_Blueprints/blob/master/Scripts/tts_All_Message_Script_Blueprint.yaml
homeassistant:
min_version: 2024.6.0
input:
optional_parameters:
name: Optional parameters🤓
icon: mdi:alert-octagon-outline
collapsed: true
description: >
These inputs set optional parameters that allow you to customize the intended actions.
Read the individual descriptions for more details.
The Blueprint will work if no changes are made to this section.
input:
b4_action:
name: Action before TTS
description: >
This is intended to add a volume control action or whatever you want
to do before sending the TTS message
default: []
selector:
action: {}
after_action:
name: Action after TTS
description: >
This is intended to add a volume control action or whatever you want
to do after sending the TTS message
default: []
selector:
action: {}
required_inputs:
name: Required input 👀
icon: mdi:alert-box
collapsed: false
description: >
These inputs are required for the blueprint to function and must be filled in.
input:
TTS:
name: Text to Speech Processor
description: >
### Required on ALL platforms
Select the configured TTS engine for media_player notifications. [SEE for details](https://www.home-assistant.io/integrations/#text-to-speech)
selector:
select:
options:
- tts.amazon_polly_say
- tts.baidu_say
- tts.cloud_say
- tts.google_cloud_say
- tts.google_translate_say
- tts.marytts_say
- tts.microsoft_say
- tts.picotts_say
- Piper
- tts.voicerss_say
- tts.watson_tts_say
- tts.yandextts_say
custom_value: true
multiple: false
announcement_message:
name: Spoken Message
description: >
### Required on ALL \*_say platforms
Type your message here:
default: '{{ ("Random test one","Random test two","Random test three") | random }}'
selector:
text:
multiline: true
speaker_target:
name: Entity(s) to speak thru
description: >
### Required on ALL \*_say platforms
Be sure to select the correct type / brand of device for the TTS you are using.
Not All speakers work with all TTS engines
selector:
entity:
multiple: true
filter:
- domain: media_player
# speaker_gender:
# # The gender option for text-to-speech in the Home Assistant Cloud integration is deprecated
# # and will be removed. Please update your automations and scripts to replace the gender
# # option with an option for a supported voice instead.
# name: Speaker Gender
# description: >
# ### Required on SOME \*_say platforms
# Select speaker gender male or female.
# May not work with all TTS engines.
# default: []
# selector:
# select:
# options:
# - label: Female
# value: female
# - label: Male
# value: male
# - label: Neutral (Does not work on all flavors)
# value: neutral
# custom_value: false
# multiple: false
baidu_inputs:
name: Required input for use with tts.baidu_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
baidu_person:
name: Baidu Person Code
description: >
Used only on tts_baidu_say platform. [More Info here.](https://www.home-assistant.io/integrations/baidu/)
This is the voice code of the speaker.
default: []
selector:
select:
options:
- "0"
- "1"
- "3"
- "4"
- "5"
- "103"
- "106"
- "110"
- "111"
custom_value: true
multiple: false
nabu_inputs:
name: Required input for use with tts.cloud_say (Nabu Casa)
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
nabu_azure_language:
name: tts_cloud (nabu Casa) Language
description: >
Select Language code. [See here for Details](https://www.nabucasa.com/config/tts/)
This defaults to en-US (english/US). However all the languages available on
2023-8-17 were put into the pick list.
default: en-US
selector:
select:
options:
- af-ZA
- am-ET
- ar-AE
- ar-BH
- ar-DZ
- ar-EG
- ar-IL
- ar-IQ
- ar-JO
- ar-KW
- ar-LB
- ar-LY
- ar-MA
- ar-OM
- ar-PS
- ar-QA
- ar-SA
- ar-SY
- ar-TN
- ar-YE
- az-AZ
- bg-BG
- bn-IN
- bs-BA
- ca-ES
- cs-CZ
- cy-GB
- da-DK
- de-AT
- de-CH
- de-DE
- el-GR
- en-AU
- en-CA
- en-GB
- en-GH
- en-HK
- en-IE
- en-IN
- en-KE
- en-NG
- en-NZ
- en-PH
- en-SG
- en-TZ
- en-US
- en-ZA
- es-AR
- es-BO
- es-CL
- es-CO
- es-CR
- es-CU
- es-DO
- es-EC
- es-ES
- es-GQ
- es-GT
- es-HN
- es-MX
- es-NI
- es-PA
- es-PE
- es-PR
- es-PY
- es-SV
- es-US
- es-UY
- es-VE
- et-EE
- eu-ES
- fa-IR
- fi-FI
- fil-PH
- fr-BE
- fr-CA
- fr-CH
- fr-FR
- ga-IE
- gl-ES
- gu-IN
- he-IL
- hi-IN
- hr-HR
- hu-HU
- hy-AM
- id-ID
- is-IS
- it-CH
- it-IT
- ja-JP
- jv-ID
- ka-GE
- kk-KZ
- km-KH
- kn-IN
- ko-KR
- lo-LA
- lt-LT
- lv-LV
- mk-MK
- ml-IN
- mn-MN
- mr-IN
- ms-MY
- mt-MT
- my-MM
- nb-NO
- ne-NP
- nl-BE
- nl-NL
- pl-PL
- ps-AF
- pt-BR
- pt-PT
- ro-RO
- ru-RU
- si-LK
- sk-SK
- sl-SI
- so-SO
- sq-AL
- sr-RS
- sv-SE
- sw-KE
- sw-TZ
- ta-IN
- te-IN
- th-TH
- tr-TR
- uk-UA
- uz-UZ
- vi-VN
- wuu-CN
- yue-CN
- zh-CN
- zh-CN-shandong
- zh-CN-sichuan
- zh-HK
- zh-TW
- zu-ZA
custom_value: true
multiple: false
nabu_azure_voice:
name: tts_cloud (nabu Casa) Voice
description: >
***Here you need to be careful.***
If you are OK with the default voice then just leave this field empty.
If you want to change the voice, you need to pick from [This List, TTS_VOICES section](https://github.com/NabuCasa/hass-nabucasa/blob/master/hass_nabucasa/voice.py)
being certain to match the country code you picked above with one of
the voices available for that country code on that list.
Failure to do so will result in no voice being heard.
If you want to know what these sound like, well, you are just going to
have to try them and see what you like.
If you are en-US, you might want to paste this in there for some fun:
{{ ("JennyNeural",
"AIGenerate1Neural",
"AIGenerate2Neural",
"AmberNeural",
"AnaNeural",
"AriaNeural",
"AshleyNeural",
"BrandonNeural",
"ChristopherNeural",
"CoraNeural",
"DavisNeural",
"ElizabethNeural",
"EricNeural",
"GuyNeural",
"JacobNeural",
"JaneNeural",
"JasonNeural",
"JennyMultilingualNeural",
"MichelleNeural",
"MonicaNeural",
"NancyNeural",
"RogerNeural",
"SaraNeural",
"SteffanNeural",
"TonyNeural") | random }}
default: []
selector:
text:
multiline: true
google_cloud_inputs:
name: Required input for use with tts.google_cloud_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
cloud_language:
name: TTS Cloud Language
description: >
This is for tts.google_cloud_say. Select
Language code. [See this.](https://cloud.google.com/text-to-speech/docs/voices) This defaults
to en-US as english/US. All the languages available on 2023-8-23
were put into the pick list.
*NOTE: It is possible that not all Languages will give you both Genders.*
default: en-US
selector:
select:
options:
- af-ZA
- ar-XA
- eu-ES
- bn-IN
- bg-BG
- ca-ES
- yue-HK
- cs-CZ
- da-DK
- nl-BE
- nl-NL
- en-AU
- en-IN
- en-GB
- en-US
- fil-PH
- fi-FI
- fr-CA
- fr-FR
- gl-ES
- de-DE
- el-GR
- gu-IN
- he-IL
- hi-IN
- hu-HU
- is-IS
- id-ID
- it-IT
- ja-JP
- kn-IN
- ko-KR
- lv-LV
- lt-LT
- ms-MY
- ml-IN
- cmn-CN
- mr-IN
- nb-NO
- pl-PL
- pt-BR
- pt-PT
- pa-IN
- ro-RO
- ru-RU
- sr-RS
- sk-SK
- es-ES
- es-US
- sv-SE
- ta-IN
- te-IN
- th-TH
- tr-TR
- uk-UA
- vi-VN
custom_value: true
multiple: false
Google_Cloud_Voice:
name: Google Cloud Voice Code
description: >
Used only with tts.google_cloud_say platform. [Pick from here](https://cloud.google.com/text-to-speech/docs/voices)
This is the voice code of the speaker. The default is: "en-US-Wavenet-F".
[Refer here](https://www.home-assistant.io/integrations/google_cloud) for more information.
default: []
selector:
text:
multiline: false
Google_Cloud_Profile:
name: Google Cloud Profile
description: >
Used only on tts.google_cloud_say platform. [Pick from here](https://cloud.google.com/text-to-speech/docs/audio-profiles)
This is a parameter to match the output to the sound of the speaker. [Refer here](https://www.home-assistant.io/integrations/google_cloud)
for more information.
default: []
selector:
select:
options:
- wearable-class-device
- handset-class-device
- headphone-class-device
- small-bluetooth-speaker-class-device
- medium-bluetooth-speaker-class-device
- large-home-entertainment-class-device
- large-automotive-class-device
- telephony-class-application
custom_value: true
multiple: false
google_translate_inputs:
name: Required input for use with tts.google_translate_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
GTS_language:
name: TTS Google Translate Say Language
description: >
This is for tts.google_translate_say only. Check the complete list
of [supported languages](https://cloud.google.com/text-to-speech/docs/voices) for allowed values.
The 2 letter lead acronym [example- en for english] is all that is used
here. The >2 letter ones do not work...] All the languages available on 2023-7-17
were put into the pick list.
This defaults to ```en``` [english]
default: en
selector:
select:
options:
- af
- ak
- am
- ar
- as
- ay
- az
- be
- bg
- bm
- bn
- bs
- ca
- co
- cs
- cy
- da
- de
- dv
- ee
- el
- en
- eo
- es
- et
- eu
- fa
- fi
- fr
- fy
- ga
- gd
- gl
- gn
- gu
- ha
- hi
- hr
- ht
- hu
- hy
- id
- ig
- is
- it
- ja
- jv
- jw
- ka
- kk
- km
- kn
- ko
- ku
- ky
- la
- lb
- lg
- ln
- lo
- lt
- lv
- mg
- mi
- mk
- ml
- mn
- mr
- ms
- mt
- my
- ne
- nl
- "no"
- ny
- om
- or
- pa
- pl
- ps
- pt
- qu
- ro
- ru
- rw
- sa
- sd
- si
- sk
- sl
- sm
- sn
- so
- sq
- sr
- st
- su
- sv
- sw
- ta
- te
- tg
- th
- ti
- tk
- tl
- tr
- ts
- tt
- ug
- uk
- ur
- uz
- vi
- xh
- yi
- yo
- zu
custom_value: true
multiple: false
marytts_inputs:
name: Required input for use with tts.marytts_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
marytts_language:
name: Language option for tts.marytts_say
description: >
Used only on tts.marytts_say. [More Info Here](https://www.home-assistant.io/integrations/marytts)
All the languages available on 2023-7-17 were put into the pick list.
Select speaker Language:
default: []
selector:
select:
options:
- de
- en_GB
- en_US
- fr
- it
- lb
- ru
- sv
- te
- tr
custom_value: true
multiple: false
picotts_inputs:
name: Required input for use with tts.picotts_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
picotts_language:
name: Language option for tts.picotts_say
description: >
Used only on tts.picotts_say. [More Info Here](https://www.home-assistant.io/integrations/picotts)
All the languages available on 2023-7-17 were put into the pick list.
Select speaker Language:
default: []
selector:
select:
options:
- en-US
- en-GB
- de-DE
- es-ES
- fr-FR
- it-IT
custom_value: true
multiple: false
piper_inputs:
name: Required input for use with Piper Addon
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
piper_voice:
name: Voice option for the Piper addon played thru Wyoming
description: >
Used only on Piper.
[Voice List Here](https://huggingface.co/rhasspy/piper-voices/blob/main/voices.json)
Also available in the Add-on UI configuration dropdown.
If a new one is available you can enter it manually.
List updated here October 1, 2923.
If you speak english & want a bit of fun,
post this string in instead of picking from the list...
{{("en_US-lessac-medium","en_US-amy-low","en_US-amy-medium","en_US-arctic-medium","en_US-danny-low","en_US-joe-medium","en_US-kathleen-low","en_US-kusal-medium","en_US-l2arctic-medium","en_US-lessac-high","en_US-lessac-low","en_US-lessac-medium","en_US-libritts-high","en_US-libritts_r-medium","en_US-ryan-high","en_US-ryan-low","en_US-ryan-medium")|random}}
default: en_US-lessac-medium
selector:
select:
options:
- ar_JO-kareem-medium
- ca_ES-upc_ona-medium
- ca_ES-upc_ona-x_low
- ca_ES-upc_pau-x_low
- cs_CZ-jirka-low
- cs_CZ-jirka-medium
- da_DK-talesyntese-medium
- de_DE-eva_k-x_low
- de_DE-karlsson-low
- de_DE-kerstin-low
- de_DE-pavoque-low
- de_DE-ramona-low
- de_DE-thorsten-high
- de_DE-thorsten-low
- de_DE-thorsten-medium
- de_DE-thorsten_emotional-medium
- el_GR-rapunzelina-low
- en_GB-alan-low
- en_GB-alan-medium
- en_GB-alba-medium
- en_GB-aru-medium
- en_GB-jenny_dioco-medium
- en_GB-northern_english_male-medium
- en_GB-semaine-medium
- en_GB-southern_english_female-low
- en_GB-vctk-medium
- en_US-amy-low
- en_US-amy-medium
- en_US-arctic-medium
- en_US-danny-low
- en_US-joe-medium
- en_US-kathleen-low
- en_US-kusal-medium
- en_US-l2arctic-medium
- en_US-lessac-high
- en_US-lessac-low
- en_US-lessac-medium
- en_US-libritts-high
- en_US-libritts_r-medium
- en_US-ryan-high
- en_US-ryan-low
- en_US-ryan-medium
- es_ES-carlfm-x_low
- es_ES-davefx-medium
- es_ES-mls_10246-low
- es_ES-mls_9972-low
- es_ES-sharvard-medium
- es_MX-ald-medium
- fi_FI-harri-low
- fi_FI-harri-medium
- fr_FR-gilles-low
- fr_FR-mls_1840-low
- fr_FR-siwis-low
- fr_FR-siwis-medium
- fr_FR-upmc-medium
- hu_HU-anna-medium
- hu_HU-berta-medium
- is_IS-bui-medium
- is_IS-salka-medium
- is_IS-steinn-medium
- is_IS-ugla-medium
- it_IT-riccardo-x_low
- ka_GE-natia-medium
- kk_KZ-iseke-x_low
- kk_KZ-issai-high
- kk_KZ-raya-x_low
- lb_LU-marylux-medium
- ne_NP-google-medium
- ne_NP-google-x_low
- nl_BE-nathalie-medium
- nl_BE-nathalie-x_low
- nl_BE-rdh-medium
- nl_BE-rdh-x_low
- nl_NL-mls_5809-low
- nl_NL-mls_7432-low
- no_NO-talesyntese-medium
- pl_PL-darkman-medium
- pl_PL-gosia-medium
- pl_PL-mls_6892-low
- pt_BR-edresson-low
- pt_BR-faber-medium
- pt_PT-tugão-medium
- ro_RO-mihai-medium
- ru_RU-denis-medium
- ru_RU-dmitri-medium
- ru_RU-irina-medium
- ru_RU-ruslan-medium
- sk_SK-lili-medium
- sr_RS-serbski_institut-medium
- sv_SE-nst-medium
- sw_CD-lanfrica-medium
- tr_TR-dfki-medium
- tr_TR-fahrettin-medium
- uk_UA-lada-x_low
- uk_UA-ukrainian_tts-medium
- vi_VN-25hours_single-low
- vi_VN-vais1000-medium
- vi_VN-vivos-x_low
- zh_CN-huayan-medium
- zh_CN-huayan-x_low
custom_value: true
multiple: false
voicerss_inputs:
name: Required input for use with tts.voicerss_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
voicerss_language:
name: Language option for tts.voicerss_say
description: >
Used only on tts.voicerss_say. [More Info Here](https://www.home-assistant.io/integrations/voicerss)
All the languages available on 2023-7-17 were put into the pick list.
Select speaker Language. [SEE for details](https://www.voicerss.org/api).
default: []
selector:
select:
options:
- ar-eg
- ar-sa
- bg-bg
- ca-es
- zh-cn
- zh-hk
- zh-tw
- hr-hr
- cs-cz
- da-dk
- nl-be
- nl-nl
- en-au
- en-ca
- en-gb
- en-in
- en-ie
- en-us
- fi-fi
- fr-ca
- fr-fr
- fr-ch
- de-at
- de-de
- de-ch
- el-gr
- he-il
- hi-in
- hu-hu
- id-id
- it-it
- ja-jp
- ko-kr
- ms-my
- nb-no
- pl-pl
- pt-br
- pt-pt
- ro-ro
- ru-ru
- sk-sk
- sl-si
- es-mx
- es-es
- sv-se
- ta-in
- th-th
- tr-tr
- vi-vn
custom_value: true
multiple: false
voicerss_format:
name: Message format option for tts.voicerss_say
description: >
Used only on tts.voicerss_say. Select message format. [More Info Here](https://www.home-assistant.io/integrations/voicerss)
There were too many to do a selector. [SEE for details](https://www.voicerss.org/api).
default: []
selector:
text:
multiline: false
yandextts_inputs:
name: Required input for use with tts.yandextts_say
icon: mdi:microphone-message
collapsed: true
description: >
These inputs are required for the blueprint to function and must be filled in.
In the end, these *may* have a default value but I suggest you provide a value.
input:
yandextts_language:
name: Language option for tts.yandextts_say
description: >
Used only on tts.yandextts_say.
All the languages available on 2023-7-17 were put into the pick list.
Select speaker Language. [SEE for Details](https://www.home-assistant.io/integrations/yandextts).
default: []
selector:
select:
options:
- en-US
- ru-RU
- uk-UK
- tr-TR
custom_value: false
multiple: false
yandextts_voice:
name: Voice option for tts.yandextts_say
description: >
Used only on tts.yandextts_say. Select speaker Voice. [SEE for Details](https://www.home-assistant.io/integrations/yandextts).
default: []
selector:
select:
options:
- jane
- oksana
- alyss
- omazh
- silaerkan
- nastya
- sasha
- tanya
- tatyana_abramova
- voicesearch
- zombie
- zahar