Skip to content

Commit

Permalink
[docs] Update detector docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Breakthrough committed Jun 9, 2024
1 parent ef47b0f commit 78b130b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion docs/api/detectors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ Detection Algorithms
.. automodule:: scenedetect.detectors
:members:

.. automodule:: scenedetect.detectors.adaptive_detector
:members:

.. automodule:: scenedetect.detectors.content_detector
:members:

.. automodule:: scenedetect.detectors.adaptive_detector
.. automodule:: scenedetect.detectors.hash_detector
:members:

.. automodule:: scenedetect.detectors.histogram_detector
:members:

.. automodule:: scenedetect.detectors.threshold_detector
Expand Down
2 changes: 1 addition & 1 deletion scenedetect/_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ def detect_threshold_command(
@click.pass_context
def detect_hist_command(ctx: click.Context, threshold: Optional[float], bins: Optional[int],
min_scene_len: Optional[str]):
"""Finds fast cuts by differencing YUV histograms.
"""Find fast cuts by differencing YUV histograms.
Uses Y channel after converting each frame to YUV to create a histogram of each frame.
Histograms between frames are compared to determine a score for how similar they are.
Expand Down
1 change: 1 addition & 0 deletions website/pages/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Includes new histogram and perceptual hash based detectors (thanks @wjs018 and @
- [feature] Add more templates for `save-images` filename customization: `$TIMECODE`, `$FRAME_NUMBER`, `$TIMESTAMP_MS` (thanks @Veldhoen0) [#395](https://github.com/Breakthrough/PySceneDetect/pull/395)
- [bugfix] Remove extraneous console output when using `--drop-short-scenes`
- [bugfix] Fix scene lengths being smaller than `min-scene-len` when using `detect-adaptive` / `AdaptiveDetector` with large values of `--frame-window`
- [bugfix] Fix crash when decoded frames have incorrect resolution and log error instead [#319](https://github.com/Breakthrough/PySceneDetect/issues/319)
- [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)


Expand Down

0 comments on commit 78b130b

Please sign in to comment.