瀏覽代碼

add swap face test

ming 3 年之前
父節點
當前提交
2727154b32
共有 2 個文件被更改,包括 18 次插入8 次删除
  1. 3 6
      main.py
  2. 15 2
      util/swap_face.py

+ 3 - 6
main.py

@@ -111,14 +111,11 @@ async def progress_page():
 
 @app.post("/swapFace")
 async def swapFace(req:swap_req):
-    x = threading.Thread(target=runswap, arg=(req.imgurl))
-    x.start()
-    return {'msg':'ok'}
-
-def runswap(imgurl):
-    sf = swap_face(imgurl)
+    sf = swap_face(req.imgurl)
     result = sf.run()
     #notify_group(result)
+    return result
+    
 
 @app.post("/make_anchor_video_v2")
 async def make_anchor_video_v2(req:request):

+ 15 - 2
util/swap_face.py

@@ -18,7 +18,11 @@ class swap_face():
         except:
             return '圖片錯誤'
         
-
+        x = threading.Thread(target=runthreadswap, args=(src_img,sv_path)))
+        x.start()
+        
+        return '生成中請稍候'
+    def runthreadswap(self.src_img,sv_path):
         os.system('python3 FaceSwap/main_video.py --src_img '+src_img+' --video_path FaceSwap/nina_noGesture_adj.mp4 --correct_color --save_path '+sv_path)    
         while True:
             print('waiting...')
@@ -26,7 +30,16 @@ class swap_face():
                 break
             time.sleep(5)
             print('waiting...')
+        notify_group('成功,影片在:www.choozmo.com:8168/swap_save/'+name_hash+'.avi')
+        
+    def notify_group(self,msg):
+        headers = {
+                "Authorization": "Bearer " + "WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD",
+                "Content-Type": "application/x-www-form-urlencoded"
+        }
+        params = {"message": msg}   
+        r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+        #print(r)
 
-        return "人物生成完成 at : www.choozmo.com:8168/swap_save/"+name_hash+".avi"