Reputation: 97
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?
Upvotes: 2
Views: 110
Reputation: 6299
As an update to the previous answer: Bixby now supports SSML
https://bixbydevelopers.com/dev/docs/reference/type/template.speech
Upvotes: 3
Reputation: 519
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
How to control speech output on Bixby
Upvotes: 2