Spaces:
Runtime error
Runtime error
artificialguybr
commited on
Commit
β’
43edaa1
1
Parent(s):
578e8ab
Update app.py
Browse files
app.py
CHANGED
@@ -57,9 +57,9 @@ def process_video(video, high_quality, target_language):
|
|
57 |
try:
|
58 |
translated_text = translator.translate(whisper_text, src=whisper_language, dest=target_language_code).text
|
59 |
except AttributeError as e:
|
60 |
-
print("Failed to translate text.
|
61 |
-
|
62 |
-
|
63 |
|
64 |
|
65 |
tts = TTS("tts_models/multilingual/multi-dataset/xtts_v1")
|
|
|
57 |
try:
|
58 |
translated_text = translator.translate(whisper_text, src=whisper_language, dest=target_language_code).text
|
59 |
except AttributeError as e:
|
60 |
+
print("Failed to translate text. Likely an issue with token extraction in the Google Translate API.")
|
61 |
+
translated_text = "Translation failed due to API issue."
|
62 |
+
|
63 |
|
64 |
|
65 |
tts = TTS("tts_models/multilingual/multi-dataset/xtts_v1")
|