-
Notifications
You must be signed in to change notification settings - Fork 2
Video Processing Tasks
Don Kackman edited this page Jan 6, 2025
·
4 revisions
- Description: Retrieves the first frame of the video.
-
Arguments:
-
video: A list ofImage.Imageobjects representing the video frames.
-
- Description: Retrieves a specific frame from the video.
-
Arguments:
-
video: A list ofImage.Imageobjects representing the video frames. -
kwargs:-
frame_index(optional): The index of the frame to retrieve. Defaults to 0 if not provided.
-
-
- Description: Retrieves the last frame of the video.
-
Arguments:
-
video: A list ofImage.Imageobjects representing the video frames.
-
- Each processor requires the
videoargument, which should be a list of frames in the form ofImage.Imageobjects. - Ensure that the
frame_indexprovided inkwargsis within the bounds of the video frame list to avoid index errors.