├── .gitignore ├── LICENSE ├── README.md ├── media_download.py ├── release └── media_download.py ├── src ├── camera_sdk.py ├── log_printer.py ├── log_wrapper.py ├── logger.py ├── time_interval.py ├── track.py └── utils.py ├── tests ├── test_camera_sdk.py ├── test_logging.py ├── test_time_interval.py ├── test_track.py └── test_utils.py └── utils └── build.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | video 3 | media 4 | __pycache__ 5 | *.mp4 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/README.md -------------------------------------------------------------------------------- /media_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/media_download.py -------------------------------------------------------------------------------- /release/media_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/release/media_download.py -------------------------------------------------------------------------------- /src/camera_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/camera_sdk.py -------------------------------------------------------------------------------- /src/log_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/log_printer.py -------------------------------------------------------------------------------- /src/log_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/log_wrapper.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/time_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/time_interval.py -------------------------------------------------------------------------------- /src/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/track.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/src/utils.py -------------------------------------------------------------------------------- /tests/test_camera_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/tests/test_camera_sdk.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_time_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/tests/test_time_interval.py -------------------------------------------------------------------------------- /tests/test_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/tests/test_track.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /utils/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-downloader/HEAD/utils/build.py --------------------------------------------------------------------------------