File size: 359 Bytes
938e515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) Facebook, Inc. and its affiliates.

from .frame_selector import (
    FrameSelectionStrategy,
    RandomKFramesSelector,
    FirstKFramesSelector,
    LastKFramesSelector,
    FrameTsList,
    FrameSelector,
)

from .video_keyframe_dataset import (
    VideoKeyframeDataset,
    video_list_from_file,
    list_keyframes,
    read_keyframes,
)