Abhishek Mittal
Abhishek Mittal

Reputation: 97

SSML support for Bixby

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

Answers (2)

Bernd Kampl
Bernd Kampl

Reputation: 6299

As an update to the previous answer: Bixby now supports SSML

https://bixbydevelopers.com/dev/docs/reference/type/template.speech

Upvotes: 3

dogethis
dogethis

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

Related Questions