tommy24 commited on
Commit
8d68f6b
·
1 Parent(s): 9269376

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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
- command = f"ffmpeg -i {file_name} -vn -ar 44100 -ac 2 -b:a 192k output.mp3"
 
 
24
  os.system(command)
25
- return "output.mp3"
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()