forked from guoqincode/Open-AnimateAnyone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
process_example.py
52 lines (35 loc) · 1.37 KB
/
process_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import cv2
import os
import shutil
def extract_first_frame(input_file, output_folder):
if not os.path.exists(output_folder):
os.makedirs(output_folder)
cap = cv2.VideoCapture(input_file)
if not cap.isOpened():
print(f"Error opening video file: {input_file}")
return
ret, frame = cap.read()
if ret:
output_file = os.path.join(output_folder, os.path.splitext(os.path.basename(input_file))[0] + ".png")
cv2.imwrite(output_file, frame)
print(f"First frame saved to {output_file}")
else:
print(f"Error reading the first frame from {input_file}")
cap.release()
def copy_video(input_file, target_folder):
if not os.path.exists(target_folder):
os.makedirs(target_folder)
target_file = os.path.join(target_folder, os.path.basename(input_file))
shutil.copy(input_file, target_file)
print(f"File copied to {target_file}")
output_folder = "inputs/applications/source_image"
copy_target_folder = "inputs/applications/driving/dwpose"
video_name = "91-9wEBqAlS.mp4"
video_name = "91C+rpudhdS.mp4"
video_name = "A18fOhsmJWS.mp4"
video_name = "A17AGFxllwS.mp4"
video_name = "A11UTfKe+tS.mp4"
input_video_1 = "UBC_dataset/train/" + video_name
input_video_2 = "UBC_dataset/train_dwpose/" + video_name
copy_video(input_video_2, copy_target_folder)
extract_first_frame(input_video_1, output_folder)