Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,18 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
-
def
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
iface = gr.Interface(fn=
|
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()
|