mr2along commited on
Commit
304ed82
1 Parent(s): 540f4c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -29,7 +29,9 @@ def transcribe_audio(audio):
29
 
30
  # Bước 2: Tạo âm thanh phát âm cho các từ sai
31
  def create_pronunciation_audio(word):
32
- tts = pipeline("text-to-speech", model="tts_models/en/ljspeech/tacotron2") # Sử dụng pipeline TTS
 
 
33
  audio_file_path = f"audio/{word}.wav"
34
  tts(word, output_file=audio_file_path) # Tạo âm thanh từ văn bản
35
  return audio_file_path
 
29
 
30
  # Bước 2: Tạo âm thanh phát âm cho các từ sai
31
  def create_pronunciation_audio(word):
32
+ # Cập nhật hình đây nếu cần
33
+ tts = pipeline("text-to-speech", model="tts_models/en/ljspeech/fastspeech2_hifigan") # Mô hình TTS
34
+
35
  audio_file_path = f"audio/{word}.wav"
36
  tts(word, output_file=audio_file_path) # Tạo âm thanh từ văn bản
37
  return audio_file_path