Auto Editor
Auto Editor
Before doing the real editing, you first cut out the "dead space" which is
typically silence. This is known as a "first pass". Cutting these is a boring
task, especially if the video is very long.
auto-editor path/to/your/video.mp4
Installing
pip install auto-editor
Cutting
Change the pace of the edited video by using --margin.
--margin adds in some "silent" sections to make the editing feel nicer.
# Add 0.2 seconds of padding before and after to make the edit nicer.
# `0.2s` is the default value for `--margin`
auto-editor example.mp4 --margin 0.2sec
Exporting to Editors
Create an XML file that can be imported to Adobe Premiere Pro using this
command:
Other editors, like Sony Vegas, can understand the premiere format. If your
favorite editor doesn't, you can use --export clip-sequence which creates
many video clips that can be imported and manipulated like normal.
Naming Timelines
By default, auto-editor will name the timeline to "Auto-Editor Media Group"
if the export supports naming.
Split by Clip
If you want to split the clips, but don't want auto-editor to do any more
editing. There's a simple command.
Manual Editing
Use the --cut-out option to always remove a section.
# Cut out the first 30 seconds.
auto-editor example.mp4 --cut-out 0,30sec
More Options
List all available options:
auto-editor --help