我正在使用Twilio Java SDK,并且我想使用没有SSml对象(如SSmlSayAs等)的SSML。
是这样的:
Say say = new Say.Builder("John’s phone number is, <say-as interpret-as=\"telephone\">4155551212</say-as>")
.voice(Voice.POLLY_EMMA).build();
可能吗?因此,构建器的字符串参数可能包含SSML标签。
在Text-to-Speech中,说
根据SSML规范,SSML的根元素以开头,但是当您使用SSML时,可以跳过并在其中插入其余的SSML。
但是XML结果如下:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather>
<Say voice="Polly.Emma">John’s phone number is, <say-as interpret-
as="telephone">4155551212</say-as></Say>
</Gather>
</Response>
打个招呼,谢谢。