tommy24 commited on
Commit
303db20
·
1 Parent(s): e695abb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -3
app.py CHANGED
@@ -1,7 +1,18 @@
1
  import gradio as gr
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()
 
1
  import gradio as gr
2
+ import requests
3
+ # from pydub import AudioSegment
4
 
5
+ def function1(prompt):
6
+ response = requests.post("https://matthijs-speecht5-tts-demo.hf.space/run/predict", json={
7
+ "data": [
8
+ prompt,
9
+ "KSP (male)",
10
+ ]
11
+ }).json()
12
+ data = response["data"][0]["name"]
13
+ data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
14
+ # audio = AudioSegment.from_wav(data).export("output.mp3", format="mp3")
15
+ return data
16
 
17
+ iface = gr.Interface(fn=function1, inputs="text", outputs="text")
18
  iface.launch()