如何在"Google 上的操作"中回复时更改语音? 是否有SSML代码可以在阅读报价时临时更改声音,例如从男性更改为女性?
您实际上可以更改语音再见,在发言标签中添加语音标签。你可以尝试这样的事情:
<speak><voice gender="female">Hello I'm Mary</voice><break time="2s"/><voice gender="male">Hey I'm John</voice><speak>
您目前无法更改语音,但可以使用语音合成标记语言 (SSML( 来获得更多可自定义的 (=audio( 响应。
有关如何将SSML与Google 上的操作一起使用的更多信息:https://medium.com/google-developers/ssml-for-actions-on-google-946117f97fd1
我希望它有所帮助。
最好的解决方案。
const request = {
// The text to synthesize
input: {
ssml:`<speak version="1.1" xmlns="http://www.w3.org/2001/10/synthesis"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/10/synthesis
http://www.w3.org/TR/speech-synthesis11/synthesis.xsd"
xml:lang="en-US">
<voice gender="female" languages="en-US" required="languages gender variant">It Maria and this is my female voice,</voice>
<!-- processor-specific voice selection -->
<voice name="Mike" required="name">Its Mike and its my male voice</voice>
</speak>`
},
// The language code and SSML Voice Gender
voice: { languageCode: 'en-US', ssmlGender: 'NEUTRAL' },
// The audio encoding type
audioConfig: { audioEncoding: 'MP3' },
};
这对我来说就像一个魅力