-
Notifications
You must be signed in to change notification settings - Fork 158
/
cloud_service_settings.ini
49 lines (31 loc) · 1.71 KB
/
cloud_service_settings.ini
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
38
39
40
41
42
43
44
45
46
47
48
[CLOUD]
# Which TTS service will you use?
# Possble Values: azure / google / elevenlabs
tts_service = google
# 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
# Sends request to TTS service to create multiple audio clips simultaneously. MUCH faster.
# Currently only supported when using azure
batch_tts_synthesize = 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 = yourkeyxxxxxx
# The Location/Region of the speech resource. This should be listed on the same page as the API keys.
# Example: eastus
azure_speech_region = eastxyz
# --------- ELEVEN LABS SETTINGS (If Applicable) ---------
# API Key for your Eleven Labs account. Required if tts_service = elevenlabs
elevenlabs_api_key = yourkeyxxxxxxx
# Possible Values: eleven_monolingual_v1 | eleven_multilingual_v2 | default
elevenlabs_default_model = eleven_multilingual_v2
# Depends on your subscription tier. More concurrent jobs will be faster. Only applies if batch_tts_synthesize = True
# See: https://help.elevenlabs.io/hc/en-us/articles/14312733311761-How-many-requests-can-I-make-and-can-I-increase-it-
elevenlabs_max_concurrent = 2