tommy24 commited on
Commit
cbee267
·
1 Parent(s): 8970db3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
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
- mp3_file = "speech.mp3"
23
- sound.export(mp3_file, format="mp3")
24
- return data
25
 
26
- iface = gr.Interface(fn=function1, inputs="text", outputs=[gr.Audio(label="Generated Speech", type="numpy")])
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()