Currently, we can get keyframes for videos via Document.load_uri_to_video_tensor(only_keyframes=True). However, use-cases typically require us to be able to link keyframes back to the source video. It would be very helpful to be able to:
- Load the video using
load_uri_to_video_tensor
- Then extract keyframes in a way that retains or outputs the frame number of the keyframes.
This is so that we can access the video at keyframes and extract snippets of film.
Currently, we can get keyframes for videos via
Document.load_uri_to_video_tensor(only_keyframes=True). However, use-cases typically require us to be able to link keyframes back to the source video. It would be very helpful to be able to:load_uri_to_video_tensorThis is so that we can access the video at keyframes and extract snippets of film.