isom5240 commited on
Commit
472aed3
·
verified ·
1 Parent(s): 3a963e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def text2story(text):
20
  # text2audio function
21
  def text2audio(story_text):
22
  tts = pipeline("text-to-speech", model="Matthijs/mms-tts-eng")
23
- speech_output = tts(story_text)[0]
24
  return speech_output
25
 
26
  def main():
 
20
  # text2audio function
21
  def text2audio(story_text):
22
  tts = pipeline("text-to-speech", model="Matthijs/mms-tts-eng")
23
+ speech_output = tts(story_text)
24
  return speech_output
25
 
26
  def main():