|
@@ -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"
|
|
|
|
|
|
|