Skip to content

Commit

Permalink
feat: Generate Google.Apis.Texttospeech.v1beta1 version 1.68.0.3561
Browse files Browse the repository at this point in the history
  • Loading branch information
amanda-tarafa authored and jskeet committed Oct 2, 2024
1 parent 825511a commit 5aa4171
Show file tree
Hide file tree
Showing 3 changed files with 387 additions and 2 deletions.
181 changes: 180 additions & 1 deletion DiscoveryJson/texttospeech.v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,24 @@
},
"voices": {
"methods": {
"generateVoiceCloningKey": {
"description": "Generates voice clone key given a short voice prompt. This method validates the voice prompts with a series of checks against the voice talent statement to verify the voice clone is safe to generate.",
"flatPath": "v1beta1/voices:generateVoiceCloningKey",
"httpMethod": "POST",
"id": "texttospeech.voices.generateVoiceCloningKey",
"parameterOrder": [],
"parameters": {},
"path": "v1beta1/voices:generateVoiceCloningKey",
"request": {
"$ref": "GenerateVoiceCloningKeyRequest"
},
"response": {
"$ref": "GenerateVoiceCloningKeyResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Returns a list of Voice supported for synthesis.",
"flatPath": "v1beta1/voices",
Expand All @@ -261,9 +279,20 @@
}
}
},
"revision": "20240815",
"revision": "20241001",
"rootUrl": "https://texttospeech.googleapis.com/",
"schemas": {
"AdvancedVoiceOptions": {
"description": "Used for advanced voice options.",
"id": "AdvancedVoiceOptions",
"properties": {
"lowLatencyJourneySynthesis": {
"description": "Only for Jounrney voices. If false, the synthesis will be context aware and have higher latency.",
"type": "boolean"
}
},
"type": "object"
},
"AudioConfig": {
"description": "Description of audio data to be synthesized.",
"id": "AudioConfig",
Expand Down Expand Up @@ -320,6 +349,49 @@
},
"type": "object"
},
"CustomPronunciationParams": {
"description": "Pronunciation customization for a phrase.",
"id": "CustomPronunciationParams",
"properties": {
"phoneticEncoding": {
"description": "The phonetic encoding of the phrase.",
"enum": [
"PHONETIC_ENCODING_UNSPECIFIED",
"PHONETIC_ENCODING_IPA",
"PHONETIC_ENCODING_X_SAMPA"
],
"enumDescriptions": [
"Not specified.",
"IPA. (e.g. apple -> \u02c8\u00e6p\u0259l ) https://en.wikipedia.org/wiki/International_Phonetic_Alphabet",
"X-SAMPA (e.g. apple -> \"{p@l\" ) https://en.wikipedia.org/wiki/X-SAMPA"
],
"type": "string"
},
"phrase": {
"description": "The phrase to which the customization will be applied. The phrase can be multiple words (in the case of proper nouns etc), but should not span to a whole sentence.",
"type": "string"
},
"pronunciation": {
"description": "The pronunciation of the phrase. This must be in the phonetic encoding specified above.",
"type": "string"
}
},
"type": "object"
},
"CustomPronunciations": {
"description": "A collection of pronunciation customizations.",
"id": "CustomPronunciations",
"properties": {
"pronunciations": {
"description": "The pronunciation customizations to be applied.",
"items": {
"$ref": "CustomPronunciationParams"
},
"type": "array"
}
},
"type": "object"
},
"CustomVoiceParams": {
"description": "Description of the custom voice to be synthesized.",
"id": "CustomVoiceParams",
Expand All @@ -346,6 +418,40 @@
},
"type": "object"
},
"GenerateVoiceCloningKeyRequest": {
"description": "Request message for the `GenerateVoiceCloningKey` method.",
"id": "GenerateVoiceCloningKeyRequest",
"properties": {
"consentScript": {
"description": "Required. The script used for the voice talent statement. The script will be provided to the caller through other channels. It must be returned unchanged in this field.",
"type": "string"
},
"languageCode": {
"description": "Required. The language of the supplied audio as a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example: \"en-US\". See [Language Support](https://cloud.google.com/speech-to-text/docs/languages) for a list of the currently supported language codes.",
"type": "string"
},
"referenceAudio": {
"$ref": "InputAudio",
"description": "Required. The training audio used to create voice clone. This is currently limited to LINEAR16 PCM WAV files mono audio with 24khz sample rate. This needs to be specified in [InputAudio.audio_config], other values will be explicitly rejected."
},
"voiceTalentConsent": {
"$ref": "InputAudio",
"description": "Required. The voice talent audio used to verify consent to voice clone."
}
},
"type": "object"
},
"GenerateVoiceCloningKeyResponse": {
"description": "Response message for the `GenerateVoiceCloningKey` method.",
"id": "GenerateVoiceCloningKeyResponse",
"properties": {
"voiceCloningKey": {
"description": "The voice clone key. Use it in the SynthesizeSpeechRequest by setting [voice.voice_clone.voice_cloning_key].",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudTexttospeechV1beta1SynthesizeLongAudioMetadata": {
"description": "Metadata for response returned by the `SynthesizeLongAudio` method.",
"id": "GoogleCloudTexttospeechV1beta1SynthesizeLongAudioMetadata",
Expand All @@ -369,6 +475,56 @@
},
"type": "object"
},
"InputAudio": {
"description": "Holds audio content and config.",
"id": "InputAudio",
"properties": {
"audioConfig": {
"$ref": "InputAudioConfig",
"description": "Required. Provides information that specifies how to process content."
},
"content": {
"description": "Required. The audio data bytes encoded as specified in `InputAudioConfig`. Note: as with all bytes fields, proto buffers use a pure binary representation, whereas JSON representations use base64. Audio samples should be between 5-25 seconds in length.",
"format": "byte",
"type": "string"
}
},
"type": "object"
},
"InputAudioConfig": {
"description": "Description of inputted audio data.",
"id": "InputAudioConfig",
"properties": {
"audioEncoding": {
"description": "Required. The format of the audio byte stream.",
"enum": [
"AUDIO_ENCODING_UNSPECIFIED",
"LINEAR16",
"MP3",
"MP3_64_KBPS",
"OGG_OPUS",
"MULAW",
"ALAW"
],
"enumDescriptions": [
"Not specified. Will return result google.rpc.Code.INVALID_ARGUMENT.",
"Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.",
"MP3 audio at 32kbps.",
"MP3 at 64kbps.",
"Opus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.",
"8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law. Audio content returned as MULAW also contains a WAV header.",
"8-bit samples that compand 14-bit audio samples using G.711 PCMU/A-law. Audio content returned as ALAW also contains a WAV header."
],
"type": "string"
},
"sampleRateHertz": {
"description": "Required. The sample rate (in hertz) for this audio.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ListOperationsResponse": {
"description": "The response message for Operations.ListOperations.",
"id": "ListOperationsResponse",
Expand Down Expand Up @@ -467,6 +623,10 @@
"description": "Contains text input to be synthesized. Either `text` or `ssml` must be supplied. Supplying both or neither returns google.rpc.Code.INVALID_ARGUMENT. The input size is limited to 5000 bytes.",
"id": "SynthesisInput",
"properties": {
"customPronunciations": {
"$ref": "CustomPronunciations",
"description": "Optional. The pronunciation customizations to be applied to the input. If this is set, the input will be synthesized using the given pronunciation customizations. The initial support will be for EFIGS (English, French, Italian, German, Spanish) languages, as provided in VoiceSelectionParams. Journey and Instant Clone voices are not supported yet. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag (entirely or partially)."
},
"ssml": {
"description": "The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return google.rpc.Code.INVALID_ARGUMENT. For more information, see [SSML](https://cloud.google.com/text-to-speech/docs/ssml).",
"type": "string"
Expand Down Expand Up @@ -528,6 +688,10 @@
"description": "The top-level message sent by the client for the `SynthesizeSpeech` method.",
"id": "SynthesizeSpeechRequest",
"properties": {
"advancedVoiceOptions": {
"$ref": "AdvancedVoiceOptions",
"description": "Adnanced voice options."
},
"audioConfig": {
"$ref": "AudioConfig",
"description": "Required. The configuration of the synthesized audio."
Expand Down Expand Up @@ -636,6 +800,17 @@
},
"type": "object"
},
"VoiceCloneParams": {
"description": "The configuration of Voice Clone feature.",
"id": "VoiceCloneParams",
"properties": {
"voiceCloningKey": {
"description": "Required. Created by GenerateVoiceCloningKey.",
"type": "string"
}
},
"type": "object"
},
"VoiceSelectionParams": {
"description": "Description of which voice to use for a synthesis request.",
"id": "VoiceSelectionParams",
Expand Down Expand Up @@ -667,6 +842,10 @@
"A gender-neutral voice. This voice is not yet supported."
],
"type": "string"
},
"voiceClone": {
"$ref": "VoiceCloneParams",
"description": "Optional. The configuration for a voice clone. If [VoiceCloneParams.voice_clone_key] is set, the service will choose the voice clone matching the specified configuration."
}
},
"type": "object"
Expand Down
Loading

0 comments on commit 5aa4171

Please sign in to comment.