Configuration des voix personnalisées de Google Cloud TTS

Conditions préalables:

Pour utiliser des voix personnalisées, procédez comme suit pour mettre à jour l'intégration de Google Cloud TTS.

  1. Cliquez sur Admin. 
  2. Sous Intégrationscliquez sur Intégrations.
  3. Cliquez sur l'intégration Google Cloud Text-to-Speech.
  4. Cliquez sur l'onglet Configuration puis sur Avancé.
  5. Copy the JSON example below and paste it into the Advanced Configuration field. This example configuration uses two custom Google TTS voices. If you only use one voice, then you can omit the section after "en-US" }.
    {
         "customVoices": [
              {
                   "displayName": "My-Custom-Voices-1",
                    "model": "projects/112345678901234/locations/us-central1/models/XXXXXXX-XXXX-XXXX-XXXX-XXXXXX",
                    "language": "en-US"
              },
              {
                   "displayName": "My-Custom-Voices-2",
                   "model": "projects/12345678901234/locations/us-central1/models/XXXXXXX-XXXX-XXXX-XXXX-XXXXXX",
                   "language": "en-gb"
              }
         ]
    }