Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
|
|
2 |
import requests
|
3 |
import urllib.request
|
4 |
from pydub import AudioSegment
|
|
|
5 |
|
6 |
def function1(prompt):
|
7 |
response = requests.post("https://tommy24-testing3.hf.space/run/predict", json={
|
@@ -19,9 +20,9 @@ def function1(prompt):
|
|
19 |
data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
|
20 |
file_name, headers = urllib.request.urlretrieve(data, "speech.wav")
|
21 |
sound = AudioSegment.from_wav(file_name)
|
22 |
-
|
23 |
-
sound.
|
24 |
-
return
|
25 |
|
26 |
-
iface = gr.Interface(fn=function1, inputs="text", outputs=
|
27 |
iface.launch()
|
|
|
2 |
import requests
|
3 |
import urllib.request
|
4 |
from pydub import AudioSegment
|
5 |
+
import numpy as np
|
6 |
|
7 |
def function1(prompt):
|
8 |
response = requests.post("https://tommy24-testing3.hf.space/run/predict", json={
|
|
|
20 |
data = "https://matthijs-speecht5-tts-demo.hf.space/file="+data
|
21 |
file_name, headers = urllib.request.urlretrieve(data, "speech.wav")
|
22 |
sound = AudioSegment.from_wav(file_name)
|
23 |
+
sound.export("speech.mp3", format="mp3")
|
24 |
+
audio_array = np.array(sound.get_array_of_samples())
|
25 |
+
return audio_array
|
26 |
|
27 |
+
iface = gr.Interface(fn=function1, inputs="text", outputs=gr.Audio(label="Audio", type="numpy"))
|
28 |
iface.launch()
|