__init__.py 285 Bytes
Newer Older
1
from .video import write_video, read_video, read_video_timestamps
2
from ._video_opt import _read_video_from_file, _read_video_timestamps_from_file
3
4
5


__all__ = [
6
    'write_video', 'read_video', 'read_video_timestamps',
7
    '_read_video_from_file', '_read_video_timestamps_from_file',
8
]