Deployment model

Menggunakan konsol Synthesize

Anda dapat mengintegrasikan model suara yang di-clone ke dalam aplikasi untuk sintesis audio TTS. Berikan VoiceCloningKey yang sesuai di Speech Studio untuk membuat teks menggunakan suara kustom yang di-clone.

Menggunakan command line dan Rest API

Metode HTTP dan URL:

POST https://texttospeech.googleapis.com/v1beta1/text:synthesize

Meminta isi JSON:

Ganti voice_cloning_key dengan VoiceCloningKey yang dihasilkan saat membuat model yang di-clone.

{
  "input":{
    "text":"Android is a mobile operating system developed by Google, based on the Linux kernel and designed primarily for touchscreen mobile devices such as smartphones and tablets."
  },
  "voice":{
   "language_code":"en-US", 
   "voice_clone":{
    "voice_cloning_key":"{voice_cloning_key}",
    }
  },
  "audioConfig":{
   "audioEncoding":"LINEAR16", 
   "sample_rate_hertz":24000
  }
}

Simpan isi permintaan dalam file bernama request.json dan jalankan perintah berikut, dengan mengganti PROJECT_ID dengan project ID Anda:

curl -X POST \
-H "Authorization: Bearer "$(gcloud auth print-access-token) \
-H "x-goog-user-project: PROJECT_ID" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
https://texttospeech.googleapis.com/v1beta1/text:synthesize