瀏覽代碼

add avatar gui

ming 3 年之前
父節點
當前提交
36f3baf69d
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      util/swap_face.py

+ 2 - 2
util/swap_face.py

@@ -16,7 +16,7 @@ class swap_face():
             im= im.convert("RGB")
             im.save(src_img)
         except:
-            return '圖片錯誤'
+            return {'msg':'圖片錯誤'}
         
         x = threading.Thread(target=self.runthreadswap, args=(src_img,sv_path))
         x.start()
@@ -28,7 +28,7 @@ class swap_face():
             time.sleep(5)
             print('waiting...')
         self.notify_group('人物生成成功,在:www.choozmo.com:8168/swap_save/'+name_hash+'.avi')
-        return '生成中請稍候,成果會在line中展示'
+        return {'msg':'生成中請稍候,成果會在line中展示'}
 
     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)