scenedetect-headless 0.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. scenedetect_headless-0.7/LICENSE +28 -0
  2. scenedetect_headless-0.7/PKG-INFO +99 -0
  3. scenedetect_headless-0.7/README.md +130 -0
  4. scenedetect_headless-0.7/docs/LATEST_VERSION +1 -0
  5. scenedetect_headless-0.7/docs/Makefile +20 -0
  6. scenedetect_headless-0.7/docs/_static/favicon.ico +0 -0
  7. scenedetect_headless-0.7/docs/_static/pyscenedetect.css +34 -0
  8. scenedetect_headless-0.7/docs/_static/pyscenedetect_logo.png +0 -0
  9. scenedetect_headless-0.7/docs/_static/pyscenedetect_logo_small.png +0 -0
  10. scenedetect_headless-0.7/docs/_templates/navigation.html +10 -0
  11. scenedetect_headless-0.7/docs/api/backends.rst +18 -0
  12. scenedetect_headless-0.7/docs/api/common.rst +9 -0
  13. scenedetect_headless-0.7/docs/api/detector.rst +9 -0
  14. scenedetect_headless-0.7/docs/api/detectors.rst +24 -0
  15. scenedetect_headless-0.7/docs/api/migration_guide.rst +290 -0
  16. scenedetect_headless-0.7/docs/api/output.rst +36 -0
  17. scenedetect_headless-0.7/docs/api/platform.rst +9 -0
  18. scenedetect_headless-0.7/docs/api/scene_manager.rst +9 -0
  19. scenedetect_headless-0.7/docs/api/stats_manager.rst +9 -0
  20. scenedetect_headless-0.7/docs/api/video_stream.rst +9 -0
  21. scenedetect_headless-0.7/docs/api.rst +121 -0
  22. scenedetect_headless-0.7/docs/cli/backends.rst +50 -0
  23. scenedetect_headless-0.7/docs/cli/config_file.rst +66 -0
  24. scenedetect_headless-0.7/docs/cli.rst +897 -0
  25. scenedetect_headless-0.7/docs/conf.py +169 -0
  26. scenedetect_headless-0.7/docs/generate_cli_docs.py +284 -0
  27. scenedetect_headless-0.7/docs/index.rst +64 -0
  28. scenedetect_headless-0.7/docs/make.bat +36 -0
  29. scenedetect_headless-0.7/packaging/package-info.rst +48 -0
  30. scenedetect_headless-0.7/pyproject.toml +157 -0
  31. scenedetect_headless-0.7/scenedetect/__init__.py +196 -0
  32. scenedetect_headless-0.7/scenedetect/__main__.py +60 -0
  33. scenedetect_headless-0.7/scenedetect/_cli/__init__.py +1855 -0
  34. scenedetect_headless-0.7/scenedetect/_cli/commands.py +354 -0
  35. scenedetect_headless-0.7/scenedetect/_cli/config.py +831 -0
  36. scenedetect_headless-0.7/scenedetect/_cli/context.py +567 -0
  37. scenedetect_headless-0.7/scenedetect/_cli/controller.py +223 -0
  38. scenedetect_headless-0.7/scenedetect/_thirdparty/__init__.py +14 -0
  39. scenedetect_headless-0.7/scenedetect/_thirdparty/simpletable.py +326 -0
  40. scenedetect_headless-0.7/scenedetect/backends/__init__.py +116 -0
  41. scenedetect_headless-0.7/scenedetect/backends/moviepy.py +295 -0
  42. scenedetect_headless-0.7/scenedetect/backends/opencv.py +538 -0
  43. scenedetect_headless-0.7/scenedetect/backends/pyav.py +386 -0
  44. scenedetect_headless-0.7/scenedetect/common.py +780 -0
  45. scenedetect_headless-0.7/scenedetect/detector.py +224 -0
  46. scenedetect_headless-0.7/scenedetect/detectors/__init__.py +72 -0
  47. scenedetect_headless-0.7/scenedetect/detectors/adaptive_detector.py +143 -0
  48. scenedetect_headless-0.7/scenedetect/detectors/content_detector.py +243 -0
  49. scenedetect_headless-0.7/scenedetect/detectors/hash_detector.py +151 -0
  50. scenedetect_headless-0.7/scenedetect/detectors/histogram_detector.py +172 -0
  51. scenedetect_headless-0.7/scenedetect/detectors/threshold_detector.py +191 -0
  52. scenedetect_headless-0.7/scenedetect/detectors/transnet_v2.py +210 -0
  53. scenedetect_headless-0.7/scenedetect/frame_timecode.py +22 -0
  54. scenedetect_headless-0.7/scenedetect/output/__init__.py +660 -0
  55. scenedetect_headless-0.7/scenedetect/output/image.py +535 -0
  56. scenedetect_headless-0.7/scenedetect/output/video.py +389 -0
  57. scenedetect_headless-0.7/scenedetect/platform.py +410 -0
  58. scenedetect_headless-0.7/scenedetect/scene_detector.py +22 -0
  59. scenedetect_headless-0.7/scenedetect/scene_manager.py +703 -0
  60. scenedetect_headless-0.7/scenedetect/stats_manager.py +314 -0
  61. scenedetect_headless-0.7/scenedetect/video_splitter.py +22 -0
  62. scenedetect_headless-0.7/scenedetect/video_stream.py +212 -0
  63. scenedetect_headless-0.7/scenedetect.cfg +382 -0
  64. scenedetect_headless-0.7/scenedetect_headless.egg-info/PKG-INFO +99 -0
  65. scenedetect_headless-0.7/scenedetect_headless.egg-info/SOURCES.txt +80 -0
  66. scenedetect_headless-0.7/scenedetect_headless.egg-info/dependency_links.txt +1 -0
  67. scenedetect_headless-0.7/scenedetect_headless.egg-info/entry_points.txt +2 -0
  68. scenedetect_headless-0.7/scenedetect_headless.egg-info/requires.txt +24 -0
  69. scenedetect_headless-0.7/scenedetect_headless.egg-info/top_level.txt +1 -0
  70. scenedetect_headless-0.7/setup.cfg +4 -0
  71. scenedetect_headless-0.7/tests/test_api.py +183 -0
  72. scenedetect_headless-0.7/tests/test_backend_opencv.py +53 -0
  73. scenedetect_headless-0.7/tests/test_backend_pyav.py +31 -0
  74. scenedetect_headless-0.7/tests/test_cli.py +1435 -0
  75. scenedetect_headless-0.7/tests/test_detectors.py +248 -0
  76. scenedetect_headless-0.7/tests/test_output.py +517 -0
  77. scenedetect_headless-0.7/tests/test_platform.py +40 -0
  78. scenedetect_headless-0.7/tests/test_scene_manager.py +212 -0
  79. scenedetect_headless-0.7/tests/test_stats_manager.py +198 -0
  80. scenedetect_headless-0.7/tests/test_timecode.py +500 -0
  81. scenedetect_headless-0.7/tests/test_vfr.py +426 -0
  82. scenedetect_headless-0.7/tests/test_video_stream.py +375 -0
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (C) 2014, Brandon Castellano
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,99 @@
1
+ Metadata-Version: 2.4
2
+ Name: scenedetect-headless
3
+ Version: 0.7
4
+ Summary: Video scene cut/shot detection program and Python library.
5
+ Author-email: Brandon Castellano <brandon248@gmail.com>
6
+ License-Expression: BSD-3-Clause
7
+ Project-URL: Homepage, https://www.scenedetect.com
8
+ Project-URL: Documentation, https://www.scenedetect.com/docs/
9
+ Project-URL: Source, https://github.com/Breakthrough/PySceneDetect
10
+ Project-URL: Issues, https://github.com/Breakthrough/PySceneDetect/issues
11
+ Keywords: video,computer-vision,analysis
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Environment :: Console
14
+ Classifier: Environment :: Console :: Curses
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: End Users/Desktop
17
+ Classifier: Intended Audience :: System Administrators
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Topic :: Multimedia :: Video
25
+ Classifier: Topic :: Multimedia :: Video :: Conversion
26
+ Classifier: Topic :: Multimedia :: Video :: Non-Linear Editor
27
+ Classifier: Topic :: Utilities
28
+ Requires-Python: >=3.10
29
+ Description-Content-Type: text/x-rst
30
+ License-File: LICENSE
31
+ Requires-Dist: click!=8.3.0,~=8.0
32
+ Requires-Dist: numpy
33
+ Requires-Dist: opencv-python-headless
34
+ Requires-Dist: platformdirs
35
+ Requires-Dist: tqdm
36
+ Provides-Extra: pyav
37
+ Requires-Dist: av>=9.2; extra == "pyav"
38
+ Provides-Extra: moviepy
39
+ Requires-Dist: moviepy; extra == "moviepy"
40
+ Provides-Extra: dev
41
+ Requires-Dist: av>=9.2; extra == "dev"
42
+ Requires-Dist: moviepy; extra == "dev"
43
+ Requires-Dist: pytest>=7.0; extra == "dev"
44
+ Provides-Extra: docs
45
+ Requires-Dist: Sphinx==7.0.1; extra == "docs"
46
+ Requires-Dist: sphinx-copybutton==0.5.2; extra == "docs"
47
+ Provides-Extra: website
48
+ Requires-Dist: mkdocs==1.5.2; extra == "website"
49
+ Requires-Dist: jinja2>=3.1.6; extra == "website"
50
+ Dynamic: license-file
51
+
52
+
53
+ PySceneDetect
54
+ ==========================================================
55
+
56
+ Video Scene Cut Detection and Analysis Tool
57
+ ----------------------------------------------------------
58
+
59
+ .. image:: https://img.shields.io/pypi/status/scenedetect.svg
60
+ :target: https://github.com/Breakthrough/PySceneDetect
61
+
62
+ .. image:: https://img.shields.io/github/release/Breakthrough/PySceneDetect.svg
63
+ :target: https://github.com/Breakthrough/PySceneDetect
64
+
65
+ .. image:: https://img.shields.io/pypi/l/scenedetect.svg
66
+ :target: https://www.scenedetect.com/copyright/
67
+
68
+ .. image:: https://img.shields.io/github/stars/Breakthrough/PySceneDetect.svg?style=social&label=View%20on%20Github
69
+ :target: https://github.com/Breakthrough/PySceneDetect
70
+
71
+ ----------------------------------------------------------
72
+
73
+ Documentation: https://www.scenedetect.com/docs
74
+
75
+ Github Repo: https://github.com/Breakthrough/PySceneDetect/
76
+
77
+ Install: ``pip install --upgrade scenedetect`` (or ``scenedetect-headless`` for servers)
78
+
79
+ ----------------------------------------------------------
80
+
81
+ **PySceneDetect** is a tool for detecting shot changes in videos, and can automatically split videos into separate clips. PySceneDetect is free and open-source software, and has several detection methods to find fast-cuts and threshold-based fades.
82
+
83
+ For example, to split a video: ``scenedetect -i video.mp4 split-video``
84
+
85
+ You can also use the Python API (`docs <https://www.scenedetect.com/docs/latest/>`_) to do the same:
86
+
87
+ .. code-block:: python
88
+
89
+ from scenedetect import detect, AdaptiveDetector, split_video_ffmpeg
90
+ scene_list = detect('my_video.mp4', AdaptiveDetector())
91
+ split_video_ffmpeg('my_video.mp4', scene_list)
92
+
93
+ ----------------------------------------------------------
94
+
95
+ Licensed under BSD 3-Clause (see the ``LICENSE`` file for details).
96
+
97
+ Copyright (C) 2014 Brandon Castellano.
98
+ All rights reserved.
99
+
@@ -0,0 +1,130 @@
1
+
2
+ ![PySceneDetect](https://raw.githubusercontent.com/Breakthrough/PySceneDetect/main/website/pages/img/pyscenedetect_logo_small.png)
3
+ ==========================================================
4
+ Video Cut Detection and Analysis Tool
5
+ ----------------------------------------------------------
6
+
7
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/Breakthrough/PySceneDetect/build.yml)](https://github.com/Breakthrough/PySceneDetect/actions)
8
+ [![PyPI Status](https://img.shields.io/pypi/status/scenedetect.svg)](https://pypi.python.org/pypi/scenedetect/)
9
+ [![PyPI Version](https://img.shields.io/pypi/v/scenedetect?color=blue)](https://pypi.python.org/pypi/scenedetect/)
10
+ [![PyPI License](https://img.shields.io/pypi/l/scenedetect.svg)](https://scenedetect.com/copyright/)
11
+
12
+ ----------------------------------------------------------
13
+
14
+ ### Latest Release: v0.7 (May 3, 2026)
15
+
16
+ **Website**: [scenedetect.com](https://www.scenedetect.com)
17
+
18
+ **Quickstart Example**: [scenedetect.com/cli/](https://www.scenedetect.com/cli/)
19
+
20
+ **Documentation**: [scenedetect.com/docs/](https://www.scenedetect.com/docs/)
21
+
22
+ **Discord**: https://discord.gg/H83HbJngk7
23
+
24
+ ----------------------------------------------------------
25
+
26
+ **Quick Install**:
27
+
28
+ pip install scenedetect --upgrade # standard (depends on opencv-python)
29
+ pip install scenedetect-headless --upgrade # headless servers (depends on opencv-python-headless)
30
+
31
+ Requires ffmpeg/mkvmerge for video splitting support. Windows builds (MSI installer/portable ZIP) can be found on [the download page](https://scenedetect.com/download/).
32
+
33
+ ----------------------------------------------------------
34
+
35
+ **Quick Start (Command Line)**:
36
+
37
+ Split input video on each fast cut using `ffmpeg`:
38
+
39
+ scenedetect -i video.mp4 split-video
40
+
41
+ Save some frames from each cut:
42
+
43
+ scenedetect -i video.mp4 save-images
44
+
45
+ Skip the first 10 seconds of the input video:
46
+
47
+ scenedetect -i video.mp4 time -s 10s
48
+
49
+ More examples can be found throughout [the documentation](https://www.scenedetect.com/docs/latest/cli.html).
50
+
51
+ **Quick Start (Python API)**:
52
+
53
+ To get started, there is a high level function in the library that performs content-aware scene detection on a video (try it from a Python prompt):
54
+
55
+ ```python
56
+ from scenedetect import detect, ContentDetector
57
+ scene_list = detect('my_video.mp4', ContentDetector())
58
+ ```
59
+
60
+ `scene_list` will now be a list containing the start/end times of all scenes found in the video. There also exists a two-pass version `AdaptiveDetector` which handles fast camera movement better, and `ThresholdDetector` for handling fade out/fade in events.
61
+
62
+ Try calling `print(scene_list)`, or iterating over each scene:
63
+
64
+ ```python
65
+ from scenedetect import detect, ContentDetector
66
+ scene_list = detect('my_video.mp4', ContentDetector())
67
+ for i, scene in enumerate(scene_list):
68
+ print(' Scene %2d: Start %s / Frame %d, End %s / Frame %d' % (
69
+ i+1,
70
+ scene[0].get_timecode(), scene[0].frame_num,
71
+ scene[1].get_timecode(), scene[1].frame_num,))
72
+ ```
73
+
74
+ We can also split the video into each scene if `ffmpeg` is installed (`mkvmerge` is also supported):
75
+
76
+ ```python
77
+ from scenedetect import detect, ContentDetector, split_video_ffmpeg
78
+ scene_list = detect('my_video.mp4', ContentDetector())
79
+ split_video_ffmpeg('my_video.mp4', scene_list)
80
+ ```
81
+
82
+ For more advanced usage, the API is highly configurable, and can easily integrate with any pipeline. This includes using different detection algorithms, splitting the input video, and much more. The following example shows how to implement a function similar to the above, but using [the `scenedetect` API](https://www.scenedetect.com/docs/latest/api.html):
83
+
84
+ ```python
85
+ from scenedetect import open_video, SceneManager, split_video_ffmpeg
86
+ from scenedetect.detectors import ContentDetector
87
+ from scenedetect.video_splitter import split_video_ffmpeg
88
+
89
+ def split_video_into_scenes(video_path, threshold=27.0):
90
+ # Open our video, create a scene manager, and add a detector.
91
+ video = open_video(video_path)
92
+ scene_manager = SceneManager()
93
+ scene_manager.add_detector(
94
+ ContentDetector(threshold=threshold))
95
+ scene_manager.detect_scenes(video, show_progress=True)
96
+ scene_list = scene_manager.get_scene_list()
97
+ split_video_ffmpeg(video_path, scene_list, show_progress=True)
98
+ ```
99
+
100
+ See [the documentation](https://www.scenedetect.com/docs/latest/api.html) for more examples.
101
+
102
+ **Benchmark**:
103
+
104
+ We evaluate the performance of different detectors in terms of accuracy and processing speed. See the [benchmark report](benchmark/README.md) for details.
105
+
106
+ ## Reference
107
+
108
+ - [Documentation](https://www.scenedetect.com/docs/) (covers application and Python API)
109
+ - [CLI Example](https://www.scenedetect.com/cli/)
110
+ - [Config File](https://www.scenedetect.com/docs/0.6.4/cli/config_file.html)
111
+
112
+ ## Help & Contributing
113
+
114
+ Please submit any bugs/issues or feature requests to [the Issue Tracker](https://github.com/Breakthrough/PySceneDetect/issues). Before submission, ensure you search through existing issues (both open and closed) to avoid creating duplicate entries.
115
+ Pull requests are welcome and encouraged. PySceneDetect is released under the BSD 3-Clause license, and submitted code should be compliant.
116
+
117
+ For help or other issues, you can join [the official PySceneDetect Discord Server](https://discord.gg/H83HbJngk7), submit an issue/bug report [here on Github](https://github.com/Breakthrough/PySceneDetect/issues), or contact me via [my website](http://www.bcastell.com/about/).
118
+
119
+ ## Code Signing
120
+
121
+ This program uses free code signing provided by [SignPath.io](https://signpath.io?utm_source=foundation&utm_medium=github&utm_campaign=PySceneDetect), and a free code signing certificate by the [SignPath Foundation](https://signpath.org?utm_source=foundation&utm_medium=github&utm_campaign=PySceneDetect)
122
+
123
+ ## License
124
+
125
+ BSD-3-Clause; see [`LICENSE`](LICENSE) and [`THIRD-PARTY.md`](THIRD-PARTY.md) for details.
126
+
127
+ ----------------------------------------------------------
128
+
129
+ Copyright (C) 2014 Brandon Castellano.
130
+ All rights reserved.
@@ -0,0 +1 @@
1
+ 0.7
@@ -0,0 +1,20 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line.
5
+ SPHINXOPTS =
6
+ SPHINXBUILD = sphinx-build
7
+ SPHINXPROJ = PySceneDetect
8
+ SOURCEDIR = .
9
+ BUILDDIR = _build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ .PHONY: help Makefile
16
+
17
+ # Catch-all target: route all unknown targets to Sphinx using the new
18
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
+ %: Makefile
20
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@@ -0,0 +1,34 @@
1
+ .sig {
2
+ padding-bottom: 8px;
3
+ }
4
+ .field-list {
5
+ padding-bottom: 8px;
6
+ }
7
+ .class {
8
+ padding-bottom: 12px;
9
+ padding-top: 4px;
10
+ }
11
+ .function {
12
+ padding-bottom: 12px;
13
+ padding-top: 12px;
14
+ }
15
+ .data {
16
+ padding-bottom: 12px;
17
+ padding-top: 12px;
18
+ }
19
+ .method {
20
+ padding-bottom: 12px;
21
+ padding-top: 12px;
22
+ }
23
+ .attribute {
24
+ padding-bottom: 12px;
25
+ padding-top: 12px;
26
+ }
27
+ .exception {
28
+ padding-bottom: 12px;
29
+ padding-top: 12px;
30
+ }
31
+ .property {
32
+ padding-bottom: 12px;
33
+ padding-top: 12px;
34
+ }
@@ -0,0 +1,10 @@
1
+ <h3>{{ _('Navigation') }}</h3>
2
+ {{ toctree(maxdepth=2, includehidden=theme_sidebar_includehidden, collapse=theme_sidebar_collapse) }}
3
+ {% if theme_extra_nav_links %}
4
+ <hr />
5
+ <ul>
6
+ {% for text, uri in theme_extra_nav_links.items() %}
7
+ <li class="toctree-l1"><a href="{{ uri }}">{{ text }}</a></li>
8
+ {% endfor %}
9
+ </ul>
10
+ {% endif %}
@@ -0,0 +1,18 @@
1
+
2
+ .. _scenedetect-backends:
3
+
4
+ ----------------------------------------
5
+ Video Backends
6
+ ----------------------------------------
7
+
8
+ .. automodule:: scenedetect.backends
9
+ :members:
10
+
11
+ .. automodule:: scenedetect.backends.opencv
12
+ :members:
13
+
14
+ .. automodule:: scenedetect.backends.pyav
15
+ :members:
16
+
17
+ .. automodule:: scenedetect.backends.moviepy
18
+ :members:
@@ -0,0 +1,9 @@
1
+
2
+ .. _scenedetect-common:
3
+
4
+ ---------------------------------------------------------------
5
+ Common
6
+ ---------------------------------------------------------------
7
+
8
+ .. automodule:: scenedetect.common
9
+ :members:
@@ -0,0 +1,9 @@
1
+
2
+ .. _scenedetect-detector:
3
+
4
+ -------------------------------------------------
5
+ Detector Interface
6
+ -------------------------------------------------
7
+
8
+ .. automodule:: scenedetect.detector
9
+ :members:
@@ -0,0 +1,24 @@
1
+
2
+ .. _scenedetect-detectors:
3
+
4
+ ----------------------------------------
5
+ Detectors
6
+ ----------------------------------------
7
+
8
+ .. automodule:: scenedetect.detectors
9
+ :members:
10
+
11
+ .. automodule:: scenedetect.detectors.adaptive_detector
12
+ :members:
13
+
14
+ .. automodule:: scenedetect.detectors.content_detector
15
+ :members:
16
+
17
+ .. automodule:: scenedetect.detectors.hash_detector
18
+ :members:
19
+
20
+ .. automodule:: scenedetect.detectors.histogram_detector
21
+ :members:
22
+
23
+ .. automodule:: scenedetect.detectors.threshold_detector
24
+ :members: