File size: 17,775 Bytes
ac29381 | 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | import json
import subprocess
import av
import cv2
import numpy as np
import torchvision
# Import decord with graceful fallback
try:
import decord
DECORD_AVAILABLE = True
except ImportError:
DECORD_AVAILABLE = False
try:
import torchcodec
TORCHCODEC_AVAILABLE = True
except (ImportError, RuntimeError):
TORCHCODEC_AVAILABLE = False
def _get_video_info_ffmpeg(video_path: str) -> dict:
"""Get video metadata using ffprobe."""
cmd = [
"ffprobe",
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=nb_frames,duration,r_frame_rate",
"-of",
"json",
video_path,
]
try:
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT).decode("utf-8")
probe_data = json.loads(output)
stream = probe_data["streams"][0]
# Parse frame rate (comes as fraction like "15/1")
if "/" in stream["r_frame_rate"]:
num, den = map(int, stream["r_frame_rate"].split("/"))
fps = num / den
else:
fps = float(stream["r_frame_rate"])
# Get frame count and duration
nb_frames = int(stream.get("nb_frames", 0))
duration = float(stream.get("duration", 0))
# If nb_frames is not available, estimate from duration and fps
if nb_frames == 0 and duration > 0:
nb_frames = int(duration * fps)
return {
"nb_frames": nb_frames,
"fps": fps,
"duration": duration,
}
except (subprocess.CalledProcessError, json.JSONDecodeError, KeyError) as e:
raise ValueError(f"Failed to get video info for {video_path}: {e}")
def _extract_frames_ffmpeg(video_path: str, frame_indices: list[int]) -> np.ndarray:
"""Extract specific frames using ffmpeg."""
frames = []
for idx in frame_indices:
# Use ffmpeg to extract a specific frame
cmd = [
"ffmpeg",
"-i",
video_path,
"-vf",
f"select=eq(n\\,{idx})",
"-vframes",
"1",
"-f",
"image2pipe",
"-pix_fmt",
"rgb24",
"-vcodec",
"rawvideo",
"-",
]
try:
output = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
# Check if output is empty (frame doesn't exist)
if len(output) == 0:
raise subprocess.CalledProcessError(1, cmd)
# Get frame dimensions by probing first
if len(frames) == 0:
info_cmd = [
"ffprobe",
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=width,height",
"-of",
"json",
video_path,
]
info_output = subprocess.check_output(info_cmd).decode("utf-8")
info_data = json.loads(info_output)
width = info_data["streams"][0]["width"]
height = info_data["streams"][0]["height"]
# Decode raw RGB data
frame_data = np.frombuffer(output, dtype=np.uint8)
frame = frame_data.reshape((height, width, 3))
frames.append(frame)
except subprocess.CalledProcessError:
# Frame might not exist, create a black frame
if len(frames) > 0:
frames.append(np.zeros_like(frames[0]))
else:
# Default fallback frame
frames.append(np.zeros((480, 640, 3), dtype=np.uint8))
return np.array(frames)
def _extract_frames_at_timestamps_ffmpeg(video_path: str, timestamps: list[float]) -> np.ndarray:
"""Extract frames at specific timestamps using ffmpeg."""
frames = []
for timestamp in timestamps:
cmd = [
"ffmpeg",
"-ss",
str(timestamp),
"-i",
video_path,
"-vframes",
"1",
"-f",
"image2pipe",
"-pix_fmt",
"rgb24",
"-vcodec",
"rawvideo",
"-",
]
try:
output = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
# Check if output is empty (timestamp doesn't exist)
if len(output) == 0:
raise subprocess.CalledProcessError(1, cmd)
# Get frame dimensions
if len(frames) == 0:
info_cmd = [
"ffprobe",
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=width,height",
"-of",
"json",
video_path,
]
info_output = subprocess.check_output(info_cmd).decode("utf-8")
info_data = json.loads(info_output)
width = info_data["streams"][0]["width"]
height = info_data["streams"][0]["height"]
# Decode raw RGB data
frame_data = np.frombuffer(output, dtype=np.uint8)
frame = frame_data.reshape((height, width, 3))
frames.append(frame)
except subprocess.CalledProcessError:
# Timestamp might be out of bounds, use last frame or black frame
if len(frames) > 0:
frames.append(frames[-1])
else:
frames.append(np.zeros((480, 640, 3), dtype=np.uint8))
return np.array(frames)
def _extract_all_frames_ffmpeg(video_path: str) -> tuple[np.ndarray, np.ndarray]:
"""Extract all frames and their timestamps using ffmpeg."""
# Get video info
info = _get_video_info_ffmpeg(video_path)
fps = info["fps"]
# Extract all frames
cmd = [
"ffmpeg",
"-i",
video_path,
"-f",
"image2pipe",
"-pix_fmt",
"rgb24",
"-vcodec",
"rawvideo",
"-",
]
try:
output = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
# Get frame dimensions
info_cmd = [
"ffprobe",
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=width,height",
"-of",
"json",
video_path,
]
info_output = subprocess.check_output(info_cmd).decode("utf-8")
info_data = json.loads(info_output)
width = info_data["streams"][0]["width"]
height = info_data["streams"][0]["height"]
# Decode all frames
frame_data = np.frombuffer(output, dtype=np.uint8)
total_pixels = len(frame_data) // 3
actual_frames = total_pixels // (width * height)
frames = frame_data[: actual_frames * width * height * 3].reshape(
(actual_frames, height, width, 3)
)
# Generate timestamps
timestamps = np.arange(actual_frames) / fps
return frames, timestamps
except subprocess.CalledProcessError as e:
raise ValueError(f"Failed to extract frames from {video_path}: {e}")
def get_frames_by_indices(
video_path: str,
indices: list[int] | np.ndarray,
video_backend: str = "ffmpeg",
video_backend_kwargs: dict = {},
) -> np.ndarray:
if video_backend == "decord":
if not DECORD_AVAILABLE:
raise ImportError("decord is not available. Install it with: pip install decord")
vr = decord.VideoReader(video_path, **video_backend_kwargs)
frames = vr.get_batch(indices)
return frames.asnumpy()
elif video_backend == "torchcodec":
if not TORCHCODEC_AVAILABLE:
raise ImportError("torchcodec is not available.")
decoder = torchcodec.decoders.VideoDecoder(
video_path, device="cpu", dimension_order="NHWC", num_ffmpeg_threads=0
)
return decoder.get_frames_at(indices=indices).data.numpy()
elif video_backend == "ffmpeg":
return _extract_frames_ffmpeg(video_path, list(indices))
elif video_backend == "opencv":
frames = []
cap = cv2.VideoCapture(video_path, **video_backend_kwargs)
for idx in indices:
cap.set(cv2.CAP_PROP_POS_FRAMES, idx)
ret, frame = cap.read()
if not ret:
raise ValueError(f"Unable to read frame at index {idx}")
frames.append(frame)
cap.release()
frames = np.array(frames)
return frames
else:
raise NotImplementedError
def get_frames_by_timestamps(
video_path: str,
timestamps: list[float] | np.ndarray,
video_backend: str = "ffmpeg",
video_backend_kwargs: dict = {},
fps: None | float = None,
) -> np.ndarray:
"""Get frames from a video at specified timestamps.
Args:
video_path (str): Path to the video file.
timestamps (list[int] | np.ndarray): Timestamps to retrieve frames for, in seconds.
video_backend (str, optional): Video backend to use. Defaults to "ffmpeg".
fps (float, optional): FPS of the video. Defaults to 30.
Returns:
np.ndarray: Frames at the specified timestamps.
"""
if video_backend == "decord":
if not DECORD_AVAILABLE:
raise ImportError("decord is not available. Install it with: pip install decord")
vr = decord.VideoReader(video_path, **video_backend_kwargs)
num_frames = len(vr)
# Retrieve the timestamps for each frame in the video
frame_ts: np.ndarray = vr.get_frame_timestamp(range(num_frames))
# Map each requested timestamp to the closest frame index
# Only take the first element of the frame_ts array which corresponds to start_seconds
indices = np.abs(frame_ts[:, :1] - timestamps).argmin(axis=0)
frames = vr.get_batch(indices)
return frames.asnumpy()
elif video_backend == "torchcodec":
if not TORCHCODEC_AVAILABLE:
raise ImportError("torchcodec is not available.")
decoder = torchcodec.decoders.VideoDecoder(
video_path, device="cpu", dimension_order="NHWC", num_ffmpeg_threads=0
)
# https://docs.pytorch.org/torchcodec/stable/generated/torchcodec.decoders.VideoStreamMetadata.html#torchcodec.decoders.VideoStreamMetadata
# Temporary fix: use 30 fps as the fps of the video (agibot)
# TODO: get fps as parameter
if fps is None:
fps = decoder.metadata.average_fps
interval = 1 / fps
timestamps = np.array(timestamps).astype(np.float64)
if np.all(timestamps == 0):
timestamps = np.arange(len(timestamps)) / fps
# Get video duration range from first and last frames
# This is a robust way to get valid timestamp range without depending on specific metadata attributes
first_frame = decoder.get_frames_at(indices=[0])
last_frame = decoder.get_frames_at(indices=[len(decoder) - 1])
min_pts = float(first_frame.pts_seconds[0])
max_pts = float(last_frame.pts_seconds[0])
# Clamp timestamps to valid range to avoid RuntimeError
timestamps = np.clip(timestamps, min_pts, max_pts)
# Correct float precision issues in timestamps
# E.g. for 5fps video: [1.0, 1.20000005, 1.39999998] -> [1.0, 1.2, 1.4]
# Without this, the torchcodec will read the delayed frame (e.g. 1.39999998 -> 1.2)
# Round to nearest frame interval to prevent torchcodec from reading wrong frames
# Allow max 1% error from expected interval
if fps is None:
closest_timestamps = np.round(timestamps / interval) * interval
# Re-clamp after rounding to ensure still in valid range
closest_timestamps = np.clip(closest_timestamps, min_pts, max_pts)
timestamp_errors = np.abs(closest_timestamps - timestamps) / interval
invalid_mask = timestamp_errors >= 0.01
if np.any(invalid_mask):
invalid_indices = np.where(invalid_mask)[0]
invalid_timestamps = timestamps[invalid_indices]
raise ValueError(
f"Try to read invalid timestamps {invalid_timestamps} from video {video_path} (FPS: {fps})"
)
timestamps = closest_timestamps
return decoder.get_frames_played_at(seconds=timestamps).data.numpy()
elif video_backend == "ffmpeg":
return _extract_frames_at_timestamps_ffmpeg(video_path, list(timestamps))
elif video_backend == "opencv":
# Open the video file
cap = cv2.VideoCapture(video_path, **video_backend_kwargs)
if not cap.isOpened():
raise ValueError(f"Unable to open video file: {video_path}")
# Retrieve the total number of frames
num_frames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
# Calculate timestamps for each frame
fps = cap.get(cv2.CAP_PROP_FPS)
frame_ts = np.arange(num_frames) / fps
frame_ts = frame_ts[:, np.newaxis] # Reshape to (num_frames, 1) for broadcasting
# Map each requested timestamp to the closest frame index
indices = np.abs(frame_ts - timestamps).argmin(axis=0)
frames = []
for idx in indices:
cap.set(cv2.CAP_PROP_POS_FRAMES, idx)
ret, frame = cap.read()
if not ret:
raise ValueError(f"Unable to read frame at index {idx}")
frames.append(frame)
cap.release()
frames = np.array(frames)
return frames
elif video_backend == "torchvision_av":
# set backend
torchvision.set_video_backend("pyav")
# set a video stream reader
reader = torchvision.io.VideoReader(video_path, "video")
# set the first and last requested timestamps
# Note: previous timestamps are usually loaded, since we need to access the previous key frame
first_ts = timestamps[0]
last_ts = timestamps[-1]
# access closest key frame of the first requested frame
# Note: closest key frame timestamp is usally smaller than `first_ts` (e.g. key frame can be the first frame of the video)
# for details on what `seek` is doing see: https://pyav.basswood-io.com/docs/stable/api/container.html?highlight=inputcontainer#av.container.InputContainer.seek
reader.seek(first_ts, keyframes_only=True)
# Decode frames sequentially, storing the ones we need in a dictionary
# to map timestamps to frame data. This allows for easy re-ordering later.
found_frames_map = {}
tolerance = 0.001 # 1ms tolerance for timestamp matching
for frame in reader:
current_ts = frame["pts"]
# Use tolerance-based matching instead of exact match
for ts in timestamps:
if ts not in found_frames_map and abs(current_ts - ts) < tolerance:
found_frames_map[ts] = frame["data"]
break
if current_ts >= last_ts + tolerance or len(found_frames_map) == len(timestamps):
break
reader.container.close()
reader = None
# Debug: print timestamp matching results
print(f"[video_utils] Requested {len(timestamps)} timestamps: {timestamps[:4]}{'...' if len(timestamps) > 4 else ''}")
print(f"[video_utils] Found {len(found_frames_map)} frames with tolerance={tolerance}s")
if len(found_frames_map) < len(timestamps):
missing = [ts for ts in timestamps if ts not in found_frames_map]
print(f"[video_utils] WARNING: Missing timestamps: {missing[:4]}{'...' if len(missing) > 4 else ''}")
frames = np.array(list(found_frames_map.values()))
return frames.transpose(0, 2, 3, 1)
else:
raise NotImplementedError
def get_all_frames(
video_path: str,
video_backend: str = "ffmpeg",
video_backend_kwargs: dict = {},
) -> tuple[np.ndarray, np.ndarray]:
"""Get all frames from a video.
Returns:
tuple[np.ndarray, np.ndarray]: Frames and timestamps.
"""
if video_backend == "decord":
if not DECORD_AVAILABLE:
raise ImportError("decord is not available. Install it with: pip install decord")
vr = decord.VideoReader(video_path, **video_backend_kwargs)
frames = vr.get_batch(range(len(vr))).asnumpy()
return frames, vr.get_frame_timestamp(range(len(vr)))[:, 0]
elif video_backend == "torchcodec":
if not TORCHCODEC_AVAILABLE:
raise ImportError("torchcodec is not available.")
decoder = torchcodec.decoders.VideoDecoder(
video_path, device="cpu", dimension_order="NHWC", num_ffmpeg_threads=0
)
frames = decoder.get_frames_at(indices=range(len(decoder)))
return frames.data.numpy(), frames.pts_seconds.numpy()
elif video_backend == "ffmpeg":
return _extract_all_frames_ffmpeg(video_path)
elif video_backend == "pyav":
container = av.open(video_path)
stream = container.streams.video[0]
assert stream.time_base is not None
frames = []
timestamps = []
for frame in container.decode(video=0):
frames.append(frame.to_ndarray(format="rgb24"))
timestamps.append(frame.pts * stream.time_base)
container.close()
return np.stack(frames), np.array(timestamps)
else:
raise NotImplementedError
|