JerryYen commited on
Commit
dc9b46b
1 Parent(s): 4105c49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ async def text_to_speech_edge(text, language_code):
18
 
19
  new_temp_path = tmp_path.replace(".mp3", ".wav")
20
  (
21
- await ffmpeg.input(tmp_path)
22
  .output(new_temp_path)
23
  .run()
24
  )
 
18
 
19
  new_temp_path = tmp_path.replace(".mp3", ".wav")
20
  (
21
+ ffmpeg.input(tmp_path)
22
  .output(new_temp_path)
23
  .run()
24
  )