Skip to content

Commit 06eefd9

Browse files
committed
Refactoring
1 parent 3bdcf21 commit 06eefd9

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -90,22 +90,22 @@ Example command line for piping images to FFmpeg:
9090
toucan-render Transition.otio - -raw rgba | ffmpeg -y -f rawvideo -pix_fmt rgba -s 1280x720 -r 24 -i pipe: output.mov
9191
```
9292
* `Transition.otio`: The input timeline file.
93-
* "-": Write to standard out instead of a file.
94-
* "-raw rgba": Set the pixel format of the output frames. This should
95-
match the "-pix_fmt" option given to FFmpeg. One exception is that toucan
93+
* `-`: Write to standard out instead of a file.
94+
* `-raw rgba`: Set the pixel format of the output frames. This should
95+
match the `-pix_fmt` option given to FFmpeg. One exception is that toucan
9696
options do not specify the endian, the endian of the current machine is used.
97-
So for example the toucan option "-raw rgbaf16" might match the FFmpeg option
98-
"-pix_fmt rgbaf16le" on the current machine. Check the toucan-render command
97+
So for example the toucan option `-raw rgbaf16` might match the FFmpeg option
98+
`-pix_fmt rgbaf16le` on the current machine. Check the `toucan-render` command
9999
line help for the list of available formats.
100-
* "-y": Overwrite the output file if it already exists.
101-
* "-f rawvideo": Set the input to raw video frames.
102-
* "-pix_fmt rgba": Set the input pixel format as described above.
103-
* "-s 1280x720": Set the size of the input frames. The image size
104-
can be found by running toucan-render with the "-print_size" option.
105-
* "-r 24": Set the frame rate. The frame rate can be found by running
106-
toucan-render with the "-print_rate" option.
107-
* "-i pipe:": Read from standard input instead of a file.
108-
* "output.mov": The output movie file.
100+
* `-y`: Overwrite the output file if it already exists.
101+
* `-f rawvideo`: Set the input to raw video frames.
102+
* `-pix_fmt rgba`: Set the input pixel format as described above.
103+
* `-s 1280x720`: Set the size of the input frames. The image size
104+
can be found by running `toucan-render` with the `-print_size` option.
105+
* `-r 24`: Set the frame rate. The frame rate can be found by running
106+
`toucan-render` with the `-print_rate` option.
107+
* `-i pipe:`: Read from standard input instead of a file.
108+
* `output.mov`: The output movie file.
109109

110110
Building
111111
========

0 commit comments

Comments
 (0)