File size: 258 Bytes
c83dd81
 
 
 
 
 
1
2
3
4
5
6
7
root=path_to_download_video_splits
target=path_to_save_sliced_videos
mkdir ${root}/${target}_segs
for file in $(ls ${root}/${target}/); do
  scenedetect --input ${root}/${target}/${file} --output ${root}/${target}_segs/ detect-content split-video
done