We have a zip code "94582" which is being pronounced "Ninety four thousand five hundred eighty two". Is it possible to have it pronounced as "Nine Four Five Eight Two" in bixby?
Asked
Active
Viewed 104 times
2 Answers
3
As an update to the previous answer: Bixby now supports SSML
https://bixbydevelopers.com/dev/docs/reference/type/template.speech

Bernd Kampl
- 4,837
- 4
- 21
- 26
2
While there is no SSML support in Bixby at this time, we can define an optional speech channel.
template("This gets read.") {
speech("This is spoken.")
}
https://bixbydevelopers.com/dev/docs/reference/type/template.speech

dogethis
- 519
- 6
- 15
-
3Currently there is no built-in sneaky way to change the speech if property zip is "94582", however, if in your JS, you can create a property zipSpeech to hold the text as "9 4 5 8 2", then template(zip) and speech(zipSpeech) would display text as "94582" but speech would be digit by digit. – BixbyDevSupport-Tokonyan Jun 26 '19 at 21:44
-
Thanks @BixbyDevSupport-Tokonyan, this was useful to know. : ) – Abhishek Mittal Jun 27 '19 at 11:19