Spaces:
Runtime error
Runtime error
Commit
·
9d85ab3
1
Parent(s):
71a657e
Update utils.py
Browse files
utils.py
CHANGED
@@ -30,9 +30,9 @@ def save_video_frames(video_path, img_size=(512,512)):
|
|
30 |
|
31 |
def video_to_frames(video_path, img_size=(512,512)):
|
32 |
video, _, video_info = read_video(video_path, output_format="TCHW")
|
33 |
-
print(video_info["fps"])
|
34 |
-
print(video_info["video_fps"])
|
35 |
print(video_info)
|
|
|
|
|
36 |
|
37 |
# rotate video -90 degree if video is .mov format. this is a weird bug in torchvision
|
38 |
if video_path.endswith('.mov'):
|
|
|
30 |
|
31 |
def video_to_frames(video_path, img_size=(512,512)):
|
32 |
video, _, video_info = read_video(video_path, output_format="TCHW")
|
|
|
|
|
33 |
print(video_info)
|
34 |
+
print(video_info["video_fps"])
|
35 |
+
|
36 |
|
37 |
# rotate video -90 degree if video is .mov format. this is a weird bug in torchvision
|
38 |
if video_path.endswith('.mov'):
|