swap_face.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import os
  2. import time
  3. import requests
  4. from PIL import Image
  5. import threading
  6. class swap_face():
  7. def __init__(self, imgurl):
  8. self.imgurl = imgurl
  9. def run(self):
  10. name_hash = str(time.time()).replace('.','')
  11. src_img = 'FaceSwap/src_img/'+name_hash+'.jpg'
  12. sv_path = '/var/www/html/swap_save/'+name_hash+'.avi'
  13. try:
  14. im = Image.open(requests.get(self.imgurl, stream=True).raw)
  15. im= im.convert("RGB")
  16. im.save(src_img)
  17. except:
  18. return {'msg':'圖片錯誤'}
  19. x = threading.Thread(target=self.runthreadswap, args=(src_img,sv_path))
  20. x.start()
  21. time.sleep(20)
  22. load_time = 0
  23. while True:
  24. print('waiting...')
  25. if os.path.exists(sv_path):
  26. break
  27. time.sleep(10)
  28. load_time+=10
  29. if load_time > 30:
  30. break
  31. print('waiting...')
  32. self.notify_group('人物生成成功,在:www.choozmo.com:8168/swap_save/'+name_hash+'.avi')
  33. return {'msg':'生成中,成果會在line中展示'}
  34. def runthreadswap(self,src_img,sv_path):
  35. os.system('python3 FaceSwap/main_video.py --src_img '+src_img+' --video_path ./FaceSwap/nina_noGesture_adj.mp4 --correct_color --save_path '+sv_path)
  36. def notify_group(self,msg):
  37. headers = {
  38. "Authorization": "Bearer " + "WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD",
  39. "Content-Type": "application/x-www-form-urlencoded"
  40. }
  41. params = {"message": msg}
  42. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  43. #print(r)