Update app.py
Browse files
app.py
CHANGED
@@ -20,9 +20,11 @@ def function1(prompt):
|
|
20 |
data = response["data"][0]["name"]
|
21 |
data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
|
22 |
file_name, headers = urllib.request.urlretrieve(data, "speech.mp3")
|
23 |
-
|
|
|
|
|
24 |
os.system(command)
|
25 |
-
return "
|
26 |
|
27 |
iface = gr.Interface(fn=function1, inputs="text", outputs=[gr.Audio(label="Audio",type="numpy")])
|
28 |
iface.launch()
|
|
|
20 |
data = response["data"][0]["name"]
|
21 |
data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
|
22 |
file_name, headers = urllib.request.urlretrieve(data, "speech.mp3")
|
23 |
+
code = random.randint(1,1000)
|
24 |
+
generated_file = f"output{code}"
|
25 |
+
command = f"ffmpeg -i {file_name} -vn -ar 44100 -ac 2 -b:a 192k {generated_file}.mp3"
|
26 |
os.system(command)
|
27 |
+
return f"https://tommy24-testing45.hf.space/file={generated_file}"
|
28 |
|
29 |
iface = gr.Interface(fn=function1, inputs="text", outputs=[gr.Audio(label="Audio",type="numpy")])
|
30 |
iface.launch()
|