You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorials/otiotool.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
`otiotool` is included with several other command line utilities as part of the
8
8
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.
10
10
11
11
> [!TIP]
12
12
> If you have
@@ -56,14 +56,17 @@ For a complete listing of all options use `otiotool -h`.
56
56
57
57
## Phases
58
58
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
60
60
the command line does not matter. For example these two commands do the same thing:
61
61
62
62
```bash
63
63
otiotool -i input.otio --flatten -o output.otio
64
64
otiotool --flatten -o output.otio -i input.otio
65
65
```
66
66
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
+
67
70
Instead, the features of this tool work in phases, as follows:
0 commit comments