GMU:Procedural Cut/Assignment Sequence: Difference between revisions

From Medien Wiki
No edit summary
No edit summary
Line 2: Line 2:


# Pick and download a video with a lot of edits. New coverage is good.
# Pick and download a video with a lot of edits. New coverage is good.
# use the PySceneDetect tool (link on main page) to detect the scenes and extract them. (You need to install Python) <code>scenedetect -i goldeneye.mp4 -o output_dir detect-content -t 27 list-scenes save-images split-video</code>
# use the PySceneDetect tool (link on main page) to detect the scenes and extract them. (You need to install Python) <code>scenedetect -i goldeneye.mp4 -o output_dir detect-content -t 27 list-scenes split-video</code>
# reattach the clips in a different order with ffmpeg <code>ffmpeg -i "concat:part3.mp4|part1.mp4|part2.mp4" -c copy output.mp4</code>
# reattach the clips in a different order with ffmpeg <code>ffmpeg -i "concat:part3.mp4|part1.mp4|part2.mp4" -c copy output.mp4</code>



Revision as of 09:18, 18 November 2019

Let's get started with python and ffmpeg

  1. Pick and download a video with a lot of edits. New coverage is good.
  2. use the PySceneDetect tool (link on main page) to detect the scenes and extract them. (You need to install Python) scenedetect -i goldeneye.mp4 -o output_dir detect-content -t 27 list-scenes split-video
  3. reattach the clips in a different order with ffmpeg ffmpeg -i "concat:part3.mp4|part1.mp4|part2.mp4" -c copy output.mp4

Bonus learn some python to further automate the process

Keno

Code

Result