SceneDetect:按场景切割视频
安装场景检测所需模块
#安装场景检测所需模块
pip install scenedetect[opencv] -i https://pypi.tuna.tsinghua.edu.cn/simple
#检验是否已安装场景检测所需模块
pip list
click
colorama
numpy
opencv-python
scenedetect 0.5.5
tqdm
使用
参考:https://blog.csdn.net/weixin_33127753/article/details/85167321
scenedetect --input ^
my_video.mp4 ^
--output ^
my_video_scenes ^
--stats my_video.stats.csv ^
time --start 00:05:00 --end 00:06:00 ^
detect-content ^#对输入视频执行内容检测算法
list-scenes ^# 打印场景列表并输出到CSV文件
split-video # 使用ffmpeg或mkvMerge分割输入视频
TEST
scenedetect --input ^
D:\AH_DATA\ShuoShu\美人鱼:什么不要钱,你就是想要更多.mp4 ^
--output ^
D:\AH_DATA\ShuoShu\my_video_scenes ^
time --start 00:00:00 --end 00:01:00 ^
detect-content ^
split-video
标签:视频,00,场景,scenedetect,SceneDetect,--,video,my
From: https://www.cnblogs.com/tigerlion/p/17066241.html