4

如何在“Actions on Google”中回复时更改声音?是否有 SSML 代码可以在阅读报价时临时改变声音,例如从男性变为女性?

4

3 回答 3

6

您实际上可以通过在说话标签内添加语音标签来更改语音。你可以尝试这样的事情:

<speak><voice gender="female">Hello I'm Mary</voice><break time="2s"/><voice gender="male">Hey I'm John</voice><speak>
于 2017-08-17T19:15:01.200 回答
0

最好的解决方案。

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' },
  };

这对我来说就像一个魅力

于 2019-03-07T23:27:27.477 回答
0

您目前无法更改声音,但您可以使用语音合成标记语言 (SSML) 来获得更多可定制的(=音频)响应。

有关如何将 SSML 与 Action On Google 一起使用的更多信息:https ://medium.com/google-developers/ssml-for-actions-on-google-946117f97fd1

我希望它有帮助。

于 2017-08-02T16:58:08.330 回答