CoolFace
Apppublic

thaint2901/talking-head-generation-deploy

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
tmp.py14 linesDownload Raw Back to TPSMM
1import cv22 3 4cap = cv2.VideoCapture("/research/GAN/git/CVPR2022-DaGAN/assets/video1.mp4")5while True:6    ret, frame = cap.read()7    if frame is None:8        break9    cv2.imshow("output", frame)10    key = cv2.waitKey(1) & 0xff11    if key == ord("q"):12        break13 14cv2.destroyAllWindows()