the-walking-fish commited on
Commit
67f4cd9
·
verified ·
1 Parent(s): e53525d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -20,9 +20,9 @@ async def text_to_speech_edge(text, language_code):
20
 
21
  new_temp_path = tmp_path.replace(".mp3", ".wav")
22
  (
23
- ffmpeg.input(tmp_path)
24
- .output(new_temp_path)
25
- .run()
26
  )
27
  return new_temp_path
28
 
 
20
 
21
  new_temp_path = tmp_path.replace(".mp3", ".wav")
22
  (
23
+ ffmpeg.input(tmp_path)
24
+ .output(new_temp_path)
25
+ .run()
26
  )
27
  return new_temp_path
28