Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,6 @@ import requests
|
|
3 |
import urllib.request
|
4 |
from pydub import AudioSegment
|
5 |
import numpy as np
|
6 |
-
import random
|
7 |
import os
|
8 |
|
9 |
def function1(prompt):
|
@@ -21,11 +20,17 @@ def function1(prompt):
|
|
21 |
data = response["data"][0]["name"]
|
22 |
data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
|
23 |
file_name, headers = urllib.request.urlretrieve(data, "speech.mp3")
|
24 |
-
code = random.randint(1,1000)
|
25 |
-
generated_file = f"output{code}"
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
os.system(command)
|
28 |
-
return f"https://tommy24-testing45.hf.space/file=
|
29 |
|
30 |
iface = gr.Interface(fn=function1, inputs="text", outputs=[gr.Audio(label="Audio",type="numpy")])
|
31 |
iface.launch()
|
|
|
3 |
import urllib.request
|
4 |
from pydub import AudioSegment
|
5 |
import numpy as np
|
|
|
6 |
import os
|
7 |
|
8 |
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 |
+
# code = random.randint(1,1000)
|
24 |
+
# generated_file = f"output{code}"
|
25 |
+
filename = "output.mp3"
|
26 |
+
|
27 |
+
if os.path.exists(filename):
|
28 |
+
os.remove(filename)
|
29 |
+
else:
|
30 |
+
pass
|
31 |
+
command = f"ffmpeg -i {file_name} -vn -ar 44100 -ac 2 -b:a 192k output.mp3"
|
32 |
os.system(command)
|
33 |
+
return f"https://tommy24-testing45.hf.space/file=output.mp3"
|
34 |
|
35 |
iface = gr.Interface(fn=function1, inputs="text", outputs=[gr.Audio(label="Audio",type="numpy")])
|
36 |
iface.launch()
|