text_to_speech_sync_video / pickleface.py
TDN-M's picture
Upload pickleface.py
6e4d127 verified
raw
history blame
544 Bytes
from avatar import Avatar
import pickle
# Khởi tạo Avatar
avatar = Avatar()
# Load video MC6
video_path = "ref_videos/MC6.mp4"
avatar.get_video_full_frames(video_path)
# Tạo face detection results
face_det_results = avatar.create_face_detection_results(avatar.video_full_frames, save_result=False)
# Lưu kết quả vào file pkl
output_path = "ref_videos/MC6_face_det_result.pkl"
with open(output_path, 'wb') as f:
pickle.dump(face_det_results, f)
print(f"Đã lưu face detection results vào {output_path}")