lelafav502 commited on
Commit
793ae2a
1 Parent(s): f54cfde

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -48,7 +48,14 @@ pitch = gr.Slider(
48
  )
49
 
50
 
 
 
 
 
 
 
 
 
51
 
52
 
53
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
54
  iface.launch()
 
48
  )
49
 
50
 
51
+ iface = gr.Interface(
52
+ fn=text_to_speech_edge,
53
+ inputs=[input_text, language, rate, volume,pitch],
54
+ outputs=[output_text, output_audio],
55
+ title="Edge-TTS",
56
+ description="Microsoft Edge Text-To-Speech (Created by Yash Chouhan)",
57
+
58
+ )
59
 
60
 
 
61
  iface.launch()