0 purchases
scenedetect 0.6.4
Documentation: https://www.scenedetect.com/docs
Github Repo: https://github.com/Breakthrough/PySceneDetect/
Install: pip install --upgrade scenedetect[opencv]
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.
For example, to split a video: scenedetect -i video.mp4 split-video
You can also use the Python API (docs) to do the same:
from scenedetect import detect, AdaptiveDetector, split_video_ffmpeg
scene_list = detect('my_video.mp4', AdaptiveDetector())
split_video_ffmpeg('my_video.mp4', scene_list)
Licensed under BSD 3-Clause (see the LICENSE file for details).
Copyright (C) 2014-2024 Brandon Castellano.
All rights reserved.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.