You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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.
@@ -70,20 +71,28 @@ Try calling `print(scene_list)`, or iterating over each scene:
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):
@@ -93,12 +102,12 @@ from scenedetect import open_video, SceneManager, split_video_ffmpeg
93
102
from scenedetect.detectors import ContentDetector
94
103
from scenedetect.video_splitter import split_video_ffmpeg
0 commit comments