Skip to content

Commit 78b130b

Browse files
committed
[docs] Update detector docs.
1 parent ef47b0f commit 78b130b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/api/detectors.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ Detection Algorithms
88
.. automodule:: scenedetect.detectors
99
:members:
1010

11+
.. automodule:: scenedetect.detectors.adaptive_detector
12+
:members:
13+
1114
.. automodule:: scenedetect.detectors.content_detector
1215
:members:
1316

14-
.. automodule:: scenedetect.detectors.adaptive_detector
17+
.. automodule:: scenedetect.detectors.hash_detector
18+
:members:
19+
20+
.. automodule:: scenedetect.detectors.histogram_detector
1521
:members:
1622

1723
.. automodule:: scenedetect.detectors.threshold_detector

scenedetect/_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ def detect_threshold_command(
756756
@click.pass_context
757757
def detect_hist_command(ctx: click.Context, threshold: Optional[float], bins: Optional[int],
758758
min_scene_len: Optional[str]):
759-
"""Finds fast cuts by differencing YUV histograms.
759+
"""Find fast cuts by differencing YUV histograms.
760760
761761
Uses Y channel after converting each frame to YUV to create a histogram of each frame.
762762
Histograms between frames are compared to determine a score for how similar they are.

website/pages/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Includes new histogram and perceptual hash based detectors (thanks @wjs018 and @
2323
- [feature] Add more templates for `save-images` filename customization: `$TIMECODE`, `$FRAME_NUMBER`, `$TIMESTAMP_MS` (thanks @Veldhoen0) [#395](https://github.com/Breakthrough/PySceneDetect/pull/395)
2424
- [bugfix] Remove extraneous console output when using `--drop-short-scenes`
2525
- [bugfix] Fix scene lengths being smaller than `min-scene-len` when using `detect-adaptive` / `AdaptiveDetector` with large values of `--frame-window`
26+
- [bugfix] Fix crash when decoded frames have incorrect resolution and log error instead [#319](https://github.com/Breakthrough/PySceneDetect/issues/319)
2627
- [bugfix] Update default ffmpeg stream mapping from `-map 0` to `-map 0:v:0 -map 0:a? -map 0:s?` [#392](https://github.com/Breakthrough/PySceneDetect/issues/392)
2728

2829

0 commit comments

Comments
 (0)