Skip to content

Commit 1e2db8c

Browse files
committed
Fixed typo & clarified command line argument ordering
Signed-off-by: Joshua Minor <[email protected]>
1 parent e8e3044 commit 1e2db8c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/tutorials/otiotool.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
`otiotool` is included with several other command line utilities as part of the
88
OpenTimelineIO Python module. You can install it via typical Python utilities
9-
like `pip`, etc. See [Quickstart](./quickstart]) for details.
9+
like `pip`, etc. See [Quickstart](./quickstart) for details.
1010

1111
> [!TIP]
1212
> If you have
@@ -56,14 +56,17 @@ For a complete listing of all options use `otiotool -h`.
5656

5757
## Phases
5858

59-
Unlike some other command line tools, the order in which options appear on
59+
Unlike some other command line tools, the order in which most options appear on
6060
the command line does not matter. For example these two commands do the same thing:
6161

6262
```bash
6363
otiotool -i input.otio --flatten -o output.otio
6464
otiotool --flatten -o output.otio -i input.otio
6565
```
6666

67+
The only time that command line argument ordering matters is when multiple input files are specified and operations like `--stack` and `--concat` combine them
68+
together.
69+
6770
Instead, the features of this tool work in phases, as follows:
6871

6972
1. Input

0 commit comments

Comments
 (0)