@@ -90,22 +90,22 @@ Example command line for piping images to FFmpeg:
90
90
toucan-render Transition.otio - -raw rgba | ffmpeg -y -f rawvideo -pix_fmt rgba -s 1280x720 -r 24 -i pipe: output.mov
91
91
```
92
92
* ` 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
96
96
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
99
99
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.
109
109
110
110
Building
111
111
========
0 commit comments