Kevin676 commited on
Commit
8d62e2f
1 Parent(s): ec1133b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -4,7 +4,11 @@ import os
4
  def inference(text):
5
  os.system("paddlespeech tts --input '"+text+"' --output output.wav")
6
  return "output.wav"
7
-
 
 
 
 
8
  description = "用 PaddleSpeech-TTS 來生成電話訪問的語音內容"
9
 
10
  article = "<p style='text-align: center'><a href='https://github.com/PaddlePaddle/PaddleSpeech' target='_blank'>Github Repo</a></p>"
@@ -12,7 +16,7 @@ article = "<p style='text-align: center'><a href='https://github.com/PaddlePaddl
12
  examples=[['我比較想試試看換成自己的聲音來輸出'], ['你是不是也想試試看如果可以變成自己的聲音輸出呢'], ['這個可能會有點久']]
13
 
14
  gr.Interface(
15
- inference,
16
  gr.inputs.Textbox(label="input text",lines=10),
17
  gr.outputs.Audio(type="filepath", label="Output"),
18
  title="<p style='text-align: center'><a href='https://www.twman.org/AI' target='_blank'>電話訪問:PaddleSpeech-TTS</a>",
 
4
  def inference(text):
5
  os.system("paddlespeech tts --input '"+text+"' --output output.wav")
6
  return "output.wav"
7
+
8
+ def guess(texts):
9
+ return inference(texts + i love)
10
+
11
+
12
  description = "用 PaddleSpeech-TTS 來生成電話訪問的語音內容"
13
 
14
  article = "<p style='text-align: center'><a href='https://github.com/PaddlePaddle/PaddleSpeech' target='_blank'>Github Repo</a></p>"
 
16
  examples=[['我比較想試試看換成自己的聲音來輸出'], ['你是不是也想試試看如果可以變成自己的聲音輸出呢'], ['這個可能會有點久']]
17
 
18
  gr.Interface(
19
+ guess,
20
  gr.inputs.Textbox(label="input text",lines=10),
21
  gr.outputs.Audio(type="filepath", label="Output"),
22
  title="<p style='text-align: center'><a href='https://www.twman.org/AI' target='_blank'>電話訪問:PaddleSpeech-TTS</a>",