We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f3abcb commit db64efcCopy full SHA for db64efc
scripts/nmt/s2s_mic.py
@@ -95,7 +95,13 @@ def main() -> None:
95
),
96
translation_config = riva.client.TranslationConfig(
97
target_language_code=args.target_language_code,
98
- )
+ ),
99
+ tts_config = riva.client.SynthesizeSpeechConfig(
100
+ encoding=1,
101
+ sample_rate_hz=44100,
102
+ voice_name="English-US.Female-1",
103
+ language_code="en-US",
104
105
)
106
107
#riva.client.add_word_boosting_to_config(config, args.boosted_lm_words, args.boosted_lm_score)
0 commit comments