Spaces:
Running
Running
Nông Văn Thắng
commited on
Commit
•
71a8039
1
Parent(s):
81ecc52
main
Browse files
app.py
CHANGED
@@ -14,7 +14,8 @@ def text_to_speech(text, voice):
|
|
14 |
# Đọc nội dung từ file và chuyển đổi thành giọng nói
|
15 |
text_content = read_text_from_file(text_file_path)
|
16 |
output_path = "./exports/output.mp3"
|
17 |
-
|
|
|
18 |
print(f"HELLO {text_content, voice, 0, output_path}")
|
19 |
run_tts_script(text_content, voice, 0, output_path)
|
20 |
return output_path if os.path.exists(output_path) else None
|
|
|
14 |
# Đọc nội dung từ file và chuyển đổi thành giọng nói
|
15 |
text_content = read_text_from_file(text_file_path)
|
16 |
output_path = "./exports/output.mp3"
|
17 |
+
if voice == None:
|
18 |
+
voice = "vi-VN-HoaiMyNeural"
|
19 |
print(f"HELLO {text_content, voice, 0, output_path}")
|
20 |
run_tts_script(text_content, voice, 0, output_path)
|
21 |
return output_path if os.path.exists(output_path) else None
|