New here #1281
xavierthecameraguy-max
started this conversation in
3. General
New here
#1281
Replies: 1 comment
|
The most common example is removing dead space/silence from a video: auto-editor example.mp4That analyzes the audio, cuts the quiet parts, and writes an edited output file. If you want to see what would be cut before rendering: auto-editor example.mp4 --previewA few other examples: # Leave more breathing room around each kept section
auto-editor example.mp4 --margin 0.5sec
# Speed through quiet parts instead of cutting them
auto-editor example.mp4 -w:0 speed:8
# Cut still sections based on motion instead of audio
auto-editor example.mp4 --edit motion:threshold=2%
# Export a timeline for Premiere instead of rendering a final video
auto-editor example.mp4 --export premiereThe docs cookbook has more copy-paste examples here: https://auto-editor.com/docs/cookbook |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Does anyone have an example of the editing this can do?
All reactions