|
@@ -683,10 +683,12 @@ def call_voice(text):
|
|
|
src_path = '/home/ming/AI_Anchor/OpenshotService/speech.mp3'
|
|
|
shutil.copy(src_path,'/home/ming/speech.mp3')
|
|
|
os.remove(src_path)
|
|
|
-
|
|
|
-@app.get("/make_voice")
|
|
|
-async def make_voice(text):
|
|
|
- x = threading.Thread(target=call_voice, args=(text))
|
|
|
+
|
|
|
+class text_in(BaseModel):
|
|
|
+ text: str
|
|
|
+@app.post("/make_voice")
|
|
|
+async def make_voice(in_text:text_in):
|
|
|
+ x = threading.Thread(target=call_voice, args=(in_text.text))
|
|
|
x.start()
|
|
|
|
|
|
|