Spaces:
Running
on
L40S
Running
on
L40S
File size: 252 Bytes
6f199b8 |
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
|