Jessiesj commited on
Commit
cb06615
·
verified ·
1 Parent(s): 04b5672

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ from transformers import pipeline
24
 
25
  # text2audio
26
  def text2audio(story_text):
27
- text_to_audio = pipeline("text-to-speech", model="facebook/mms-tts-vie")
28
  audio_data = text_to_audio(story_text)
29
  return audio_data
30
 
 
24
 
25
  # text2audio
26
  def text2audio(story_text):
27
+ text_to_audio = pipeline("text-to-speech", model="facebook/mms-tts-eng")
28
  audio_data = text_to_audio(story_text)
29
  return audio_data
30