├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── docs ├── index.html ├── scenecut_extractor.html └── search.js ├── pyproject.toml ├── src └── scenecut_extractor │ ├── __init__.py │ ├── __main__.py │ ├── _log.py │ ├── _scenecut_extractor.py │ └── py.typed ├── tests ├── test.mp4 └── test_scenecut_extractor.py └── uv.lock /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/scenecut_extractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/docs/scenecut_extractor.html -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/docs/search.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/scenecut_extractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/src/scenecut_extractor/__init__.py -------------------------------------------------------------------------------- /src/scenecut_extractor/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/src/scenecut_extractor/__main__.py -------------------------------------------------------------------------------- /src/scenecut_extractor/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/src/scenecut_extractor/_log.py -------------------------------------------------------------------------------- /src/scenecut_extractor/_scenecut_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/src/scenecut_extractor/_scenecut_extractor.py -------------------------------------------------------------------------------- /src/scenecut_extractor/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/tests/test.mp4 -------------------------------------------------------------------------------- /tests/test_scenecut_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/tests/test_scenecut_extractor.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/scenecut-extractor/HEAD/uv.lock --------------------------------------------------------------------------------