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/configuration.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2347,6 +2347,46 @@ editing the `conf` file in a text editor. Use the examples as reference.
2347
2347
</tr>
2348
2348
</table>
2349
2349
2350
+
### nvenc_split_encode
2351
+
2352
+
<table>
2353
+
<tr>
2354
+
<td>Description</td>
2355
+
<td colspan="2">
2356
+
Split the encoding of each video frame over multiple NVENC hardware units.
2357
+
Significantly reduces encoding latency with a marginal compression efficiency penalty.
2358
+
This option is ignored if your GPU has a singular NVENC unit.
2359
+
@note{This option only applies when using NVENC [encoder](#encoderhttpslocalhost47990configencoder) with HEVC or AV1.}
2360
+
@note{Applies to Windows only.}
2361
+
</td>
2362
+
</tr>
2363
+
<tr>
2364
+
<td>Default</td>
2365
+
<td colspan="2">@code{}
2366
+
driver_decides
2367
+
@endcode</td>
2368
+
</tr>
2369
+
<tr>
2370
+
<td>Example</td>
2371
+
<td colspan="2">@code{}
2372
+
nvenc_split_encode = driver_decides
2373
+
@endcode</td>
2374
+
</tr>
2375
+
<tr>
2376
+
<td rowspan="3">Choices</td>
2377
+
<td>disabled</td>
2378
+
<td>Disabled</td>
2379
+
</tr>
2380
+
<tr>
2381
+
<td>driver_decides</td>
2382
+
<td>The NVIDIA driver will automatically enable split frame encoding when the following conditions are met: 2+ NVENC units, resolution is at least 4K, and the preset is P1-P4.</td>
Copy file name to clipboardExpand all lines: src_assets/common/assets/web/public/assets/locale/en.json
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -301,6 +301,9 @@
301
301
"nvenc_realtime_hags_desc": "Currently NVIDIA drivers may freeze in encoder when HAGS is enabled, realtime priority is used and VRAM utilization is close to maximum. Disabling this option lowers the priority to high, sidestepping the freeze at the cost of reduced capture performance when the GPU is heavily loaded.",
302
302
"nvenc_spatial_aq": "Spatial AQ",
303
303
"nvenc_spatial_aq_desc": "Assign higher QP values to flat regions of the video. Recommended to enable when streaming at lower bitrates.",
304
+
"nvenc_split_encode": "Split frame encoding",
305
+
"nvenc_split_encode_desc": "Split the encoding of each video frame over multiple NVENC hardware units. Significantly reduces host processing latency with a marginal compression efficiency penalty. The default option enables SFE if the following conditions are met: there are 2+ NVENC units, the stream is 4K resolution or higher, and the preset is P1-P4. Set this to Enabled to use SFE at lower resolutions or higher presets.",
"nvenc_twopass_desc": "Adds preliminary encoding pass. This allows to detect more motion vectors, better distribute bitrate across the frame and more strictly adhere to bitrate limits. Disabling it is not recommended since this can lead to occasional bitrate overshoot and subsequent packet loss.",
306
309
"nvenc_twopass_disabled": "Disabled (fastest, not recommended)",
0 commit comments