Skip to content

Commit 0e440e0

Browse files
committed
More examples in readme
1 parent 14ca6a4 commit 0e440e0

File tree

1 file changed

+30
-6
lines changed

1 file changed

+30
-6
lines changed

Diff for: README.md

+30-6
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,46 @@ Auto-Editor can also export to:
9595

9696
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.
9797

98+
### Naming Timelines
99+
By default, auto-editor will name the timeline to "Auto-Editor Media Group" if the export supports naming.
100+
101+
```
102+
auto-editor example.mp4 --export 'premiere:name="Your name here"'
103+
104+
auto-editor example.mp4 --export 'resolve:name="Your name here"'
105+
106+
auto-editor example.mp4 --export 'final-cut-pro:name="Your name here"'
107+
108+
# No other export options support naming
109+
```
110+
111+
### Split by Clip
112+
113+
If you want to split the clips, but don't want auto-editor to do any more editing. There's a simple command.
114+
```
115+
auto-editor example.mp4 --silent-speed 1 --video-speed 1 --export premiere
116+
```
117+
98118
<h2 align="center">Manual Editing</h2>
99119

100120
Use the `--cut-out` option to always remove a section.
101121

102122
```
103123
# Cut out the first 30 seconds.
104-
auto-editor example.mp4 --cut-out start,30sec
124+
auto-editor example.mp4 --cut-out 0,30sec
105125
106126
# Cut out the first 30 frames.
107-
auto-editor example.mp4 --cut-out start,30
127+
auto-editor example.mp4 --cut-out 0,30
128+
129+
# Always leave in the first 30 seconds.
130+
auto-editor example.mp4 --add-in 0,30sec
108131
109132
# Cut out the last 10 seconds.
110133
auto-editor example.mp4 --cut-out -10sec,end
111134
112-
# Cut out the first 10 seconds and cut out the range from 15 seconds to 20 seconds.
113-
auto-editor example.mp4 --cut-out start,10sec 15sec,20sec
135+
# You can do multiple at once.
136+
auto-editor example.mp4 --cut-out 0,10 15sec,20sec
137+
auto-editor example.mp4 --add-in 30sec,40sec 120,150sec
114138
```
115139

116140
And of course, you can use any `--edit` configuration.
@@ -119,10 +143,10 @@ If you don't want **any automatic cuts**, you can use `--edit none` or `--edit a
119143

120144
```
121145
# Cut out the first 5 seconds, leave the rest untouched.
122-
auto-editor example.mp4 --edit none --cut-out start,5sec
146+
auto-editor example.mp4 --edit none --cut-out 0,5sec
123147
124148
# Leave in the first 5 seconds, cut everything else out.
125-
auto-editor example.mp4 --edit all/e --add-in start,5sec
149+
auto-editor example.mp4 --edit all/e --add-in 0,5sec
126150
```
127151

128152
<h2 align="center">More Options</h2>

0 commit comments

Comments
 (0)