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
By default, each Lambda function renders with concurrency 1 (one open browser tab). You may use the option to customize this value.
110
108
111
109
### `--quality`
112
110
113
111
[Value between 0 and 100 for JPEG rendering quality](/docs/config#setquality). Doesn't work when PNG frames are rendered.
114
112
115
-
### `--muted`
116
-
117
-
_available from v3.2.1_
113
+
### `--muted` <AvailableFromv="3.2.1" />
118
114
119
115
[Disables audio output.](/docs/config#setmuted) This option may only be used when rendering a video.
120
116
121
117
### `--codec`
122
118
123
119
[`h264` or `h265` or `png` or `vp8` or `mp3` or `aac` or `wav` or `prores`](/docs/config#setcodec). If you don't supply `--codec`, it will use `h264`.
124
120
125
-
### `--audio-codec`
126
-
127
-
_Available from v3.3.42_
121
+
### `--audio-codec` <AvailableFromv="3.3.42" />
128
122
129
123
[Set which codec the audio should have.](/docs/config#setaudiocodec) For defaults and possible values, refer to the [Encoding guide](/docs/encoding/#audio-codec).
130
124
131
-
### `--audio-bitrate`
132
-
133
-
_Available from v3.2.32_
125
+
### `--audio-bitrate` <AvailableFromv="3.2.32" />
134
126
135
127
Specify the target bitrate for the generated audio.
136
128
The syntax for FFMPEGs `-b:a` parameter should be used.
@@ -174,72 +166,52 @@ Specify a location for a dotenv file. Default `.env`.
174
166
175
167
[Render a subset of a video](/docs/config#setframerange). Example: `--frames=0-9` to select the first 10 frames. To render a still, use the [`still`](/docs/lambda/cli/still) command.
[Render only every nth frame.](/docs/config#seteverynthframe) This option may only be set when rendering GIFs. This allows you to lower the FPS of the GIF.
182
172
183
173
For example only every second frame, every third frame and so on. Only works for rendering GIFs. [See here for more details.](/docs/render-as-gif)
[Set the looping behavior.](/docs/config#setnumberofgifloops) This option may only be set when rendering GIFs. [See here for more details.](/docs/render-as-gif#changing-the-number-of-loops)
190
178
191
179
### `--out-name`
192
180
193
181
The file name of the media output as stored in the S3 bucket. By default, it is `out` plus the appropriate file extension, for example: `out.mp4`. Must match `/([0-9a-zA-Z-!_.*'()/]+)/g`.
194
182
195
-
### `--overwrite`
196
-
197
-
_available from v3.2.25_
183
+
### `--overwrite` <AvailableFromv="3.2.25" />
198
184
199
185
If a custom out name is specified and a file already exists at this key in the S3 bucket, decide whether that file will be deleted before the render begins. Default `false`.
200
186
201
187
An existing file at the output S3 key will conflict with the render and must be deleted beforehand. If this setting is `false` and a conflict occurs, an error will be thrown.
202
188
203
-
### `--webhook`
204
-
205
-
_available from v3.2.30_
189
+
### `--webhook` <AvailableFromv="3.2.30" />
206
190
207
191
Sets a webhook to be called when the render finishes or fails. [`renderMediaOnLambda() -> webhook.url`](/docs/lambda/rendermediaonlambda#webhook). To be used together with `--webhook-secret`.
Sets a webhook secret for the webhook (see above). [`renderMediaOnLambda() -> webhook.secret`](/docs/lambda/rendermediaonlambda#webhook). To be used together with `--webhook`.
Specify the name of the function which should be used to invoke and orchestrate the render. You only need to pass it if there are multiple functions with different configurations.
If specified, this function will be used for rendering the individual chunks. This is useful if you want to use a function with higher or lower power for rendering the chunks than the main orchestration function.
238
212
239
213
If you want to use this option, the function must be in the same region, the same account and have the same version as the main function.
Specify a specific bucket name to be used. [This is not recommended](/docs/lambda/multiple-buckets), instead let Remotion discover the right bucket automatically.
0 commit comments