File size: 1,182 Bytes
be52395 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
[CLOUD]
# Which TTS service will you use?
# Possble Values: azure / google
tts_service = azure
# Which translation service will you use? DeepL is slower but more accurate
# Possble Values: google / deepl
# Note: If you will be skipping translation, this doesn't matter
translate_service = google
# In case the translation language is not supported by DeepL, use Google Translate as a fallback
# Ignored if translate_service is set to google
use_fallback_google_translate = True
# The project name / project ID in the Google Cloud console. Required for translating
google_project_id = your-project-name
# API Key for your DeepL account. Required for translating if translate_service = deepl
deepl_api_key = yourkeyxxxxxx
# API Key for your Speech resource in Azure (cognitive speech)
azure_speech_key = 9d05b045bd8e4477acfb9b9dd58be65c
# The Location/Region of the speech resource. This should be listed on the same page as the API keys.
# Example: eastus
azure_speech_region = brazilsouth
# Sends request to TTS service to create multiple audio clips simultaneously. MUCH faster.
# Currently only supported when using azure
batch_tts_synthesize = False
|