Google Cloud TTSのカスタムボイスを設定する

前提条件:

カスタムボイスを使用するには、以下の手順でGoogle Cloud TTS統合を更新してください。

  1. 管理をクリックします。
  2. 統合統合をクリックします。
  3. Google Cloud Text-to-Speech integration をクリックします。
  4. 設定 タブをクリックし、詳細 をクリックします。
  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"
              }
         ]
    }