Update audio_processing.py
Browse files- audio_processing.py +1 -10
audio_processing.py
CHANGED
@@ -23,13 +23,4 @@ async def async_text_to_speech(text, voice, language):
|
|
23 |
Chuyển đổi văn bản thành giọng nói (bất đồng bộ).
|
24 |
"""
|
25 |
loop = asyncio.get_event_loop()
|
26 |
-
return await loop.run_in_executor(None, text_to_speech, text, voice, language)
|
27 |
-
|
28 |
-
if __name__ == "__main__":
|
29 |
-
# Ví dụ sử dụng
|
30 |
-
text = "Chào mừng bạn đến với công nghệ AI!"
|
31 |
-
voice = "en-US-JennyNeural" # Vôices available can be found at https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support
|
32 |
-
language = "en-US"
|
33 |
-
|
34 |
-
output_file = async_text_to_speech(text, voice, language)
|
35 |
-
print(f"Tệp âm thanh đã được lưu tại: {output_file}")
|
|
|
23 |
Chuyển đổi văn bản thành giọng nói (bất đồng bộ).
|
24 |
"""
|
25 |
loop = asyncio.get_event_loop()
|
26 |
+
return await loop.run_in_executor(None, text_to_speech, text, voice, language)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|