├── .gitignore ├── .style.yapf ├── README.md ├── fast_scene_detection ├── __init__.py ├── exceptions.py ├── scene.py ├── scene_extractor.py ├── video.py ├── video_file_handler.py └── video_library.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/.style.yapf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/README.md -------------------------------------------------------------------------------- /fast_scene_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/__init__.py -------------------------------------------------------------------------------- /fast_scene_detection/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/exceptions.py -------------------------------------------------------------------------------- /fast_scene_detection/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/scene.py -------------------------------------------------------------------------------- /fast_scene_detection/scene_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/scene_extractor.py -------------------------------------------------------------------------------- /fast_scene_detection/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/video.py -------------------------------------------------------------------------------- /fast_scene_detection/video_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/video_file_handler.py -------------------------------------------------------------------------------- /fast_scene_detection/video_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/fast_scene_detection/video_library.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyavramov/fast_scene_detection/HEAD/requirements.txt --------------------------------------------------------------------------------