Leo Liu commited on
Commit
76b5990
·
verified ·
1 Parent(s): 26ecd57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def text2story(text):
17
 
18
  # text2audio
19
  def text2audio(story_text):
20
- pipe = pipeline("text-to-audio", model="myshell-ai/MeloTTS")
21
  audio_data = pipe(story_text)
22
  return audio_data
23
 
 
17
 
18
  # text2audio
19
  def text2audio(story_text):
20
+ pipe = pipeline("text-to-audio", model="Matthijs/mms-tts-eng")
21
  audio_data = pipe(story_text)
22
  return audio_data
23