__init__.py 478 Bytes
Newer Older
1
from .video import write_video, read_video, read_video_timestamps
Zhicheng Yan's avatar
Zhicheng Yan committed
2
3
4
5
6
7
8
from ._video_opt import (
    _read_video_from_file,
    _read_video_timestamps_from_file,
    _read_video_from_memory,
    _read_video_timestamps_from_memory,
    _HAS_VIDEO_OPT,
)
9
10
11


__all__ = [
12
    'write_video', 'read_video', 'read_video_timestamps',
Zhicheng Yan's avatar
Zhicheng Yan committed
13
14
15
    '_read_video_from_file', '_read_video_timestamps_from_file',
    '_read_video_from_memory', '_read_video_timestamps_from_memory',
    '_HAS_VIDEO_OPT',
16
]